diff --git a/.editorconfig b/.editorconfig index a5dfab07a503..1583c600aa56 100644 --- a/.editorconfig +++ b/.editorconfig @@ -129,7 +129,7 @@ csharp_indent_braces = false csharp_indent_switch_labels = true # Space preferences -csharp_space_after_cast = true +csharp_space_after_cast = false csharp_space_after_colon_in_inheritance_clause = true csharp_space_after_comma = true csharp_space_after_dot = false diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a397604185a2..88ad911c075f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -34,7 +34,7 @@ Make players aware of new features and changes that could affect how they play t --> diff --git a/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs b/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs index 9a20226fdf42..3ef69578a061 100644 --- a/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs +++ b/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs @@ -90,6 +90,8 @@ private void OnSearchTextChanged(LineEdit.LineEditEventArgs args) _searchText = args.Text; UpdateVisibleButtons(); + // Reset scroll bar so they can see the relevant results. + GhostScroll.SetScrollValue(Vector2.Zero); } } } diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs index 2c71fa8c40ef..ac51cdbac5e6 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs @@ -17,7 +17,6 @@ public sealed partial class VendingMachineMenu : FancyWindow { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; private readonly Dictionary _dummies = []; diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index 17ddba77ffc1..eafab84ed638 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.VendingMachines; using Robust.Client.UserInterface.Controls; using System.Linq; +using Robust.Client.UserInterface; namespace Content.Client.VendingMachines { @@ -28,15 +29,14 @@ protected override void Open() _cachedInventory = vendingMachineSys.GetAllInventory(Owner); - _menu = new VendingMachineMenu { Title = EntMan.GetComponent(Owner).EntityName }; + _menu = this.CreateWindow(); + _menu.OpenCenteredLeft(); + _menu.Title = EntMan.GetComponent(Owner).EntityName; - _menu.OnClose += Close; _menu.OnItemSelected += OnItemSelected; _menu.OnSearchChanged += OnSearchChanged; _menu.Populate(_cachedInventory, out _cachedFilteredIndex); - - _menu.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/VoiceMask/VoiceMaskBoundUserInterface.cs b/Content.Client/VoiceMask/VoiceMaskBoundUserInterface.cs index f700c6663b9a..891804674d3c 100644 --- a/Content.Client/VoiceMask/VoiceMaskBoundUserInterface.cs +++ b/Content.Client/VoiceMask/VoiceMaskBoundUserInterface.cs @@ -1,12 +1,13 @@ using Content.Shared.VoiceMask; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.VoiceMask; public sealed class VoiceMaskBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IPrototypeManager _protomanager = default!; [ViewVariables] private VoiceMaskNameChangeWindow? _window; @@ -19,12 +20,11 @@ protected override void Open() { base.Open(); - _window = new(_proto); + _window = this.CreateWindow(); + _window.ReloadVerbs(_protomanager); - _window.OpenCentered(); _window.OnNameChange += OnNameSelected; _window.OnVerbChange += verb => SendMessage(new VoiceMaskChangeVerbMessage(verb)); - _window.OnClose += Close; } private void OnNameSelected(string name) diff --git a/Content.Client/VoiceMask/VoiceMaskNameChangeWindow.xaml.cs b/Content.Client/VoiceMask/VoiceMaskNameChangeWindow.xaml.cs index 16a28f9d9b3e..0dc41f807ab1 100644 --- a/Content.Client/VoiceMask/VoiceMaskNameChangeWindow.xaml.cs +++ b/Content.Client/VoiceMask/VoiceMaskNameChangeWindow.xaml.cs @@ -17,7 +17,7 @@ public sealed partial class VoiceMaskNameChangeWindow : FancyWindow private string? _verb; - public VoiceMaskNameChangeWindow(IPrototypeManager proto) + public VoiceMaskNameChangeWindow() { RobustXamlLoader.Load(this); @@ -32,12 +32,10 @@ public VoiceMaskNameChangeWindow(IPrototypeManager proto) SpeechVerbSelector.SelectId(args.Id); }; - ReloadVerbs(proto); - AddVerbs(); } - private void ReloadVerbs(IPrototypeManager proto) + public void ReloadVerbs(IPrototypeManager proto) { foreach (var verb in proto.EnumeratePrototypes()) { diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index eba4f21acbc4..7604d5f8808b 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -220,7 +220,7 @@ private void ClientHeavyAttack(EntityUid user, EntityCoordinates coordinates, En return; } - var targetMap = coordinates.ToMap(EntityManager, TransformSystem); + var targetMap = TransformSystem.ToMapCoordinates(coordinates); if (targetMap.MapId != userXform.MapID) return; diff --git a/Content.Client/Weapons/Melee/UI/MeleeSpeechBoundUserInterface.cs b/Content.Client/Weapons/Melee/UI/MeleeSpeechBoundUserInterface.cs index f3e0c0a539ad..3f01808c422f 100644 --- a/Content.Client/Weapons/Melee/UI/MeleeSpeechBoundUserInterface.cs +++ b/Content.Client/Weapons/Melee/UI/MeleeSpeechBoundUserInterface.cs @@ -1,5 +1,6 @@ using Robust.Client.GameObjects; using Content.Shared.Speech.Components; +using Robust.Client.UserInterface; namespace Content.Client.Weapons.Melee.UI; @@ -19,17 +20,10 @@ protected override void Open() { base.Open(); - _window = new MeleeSpeechWindow(); - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.OnBattlecryEntered += OnBattlecryChanged; } - private void OnBattlecryChanged(string newBattlecry) { SendMessage(new MeleeSpeechBattlecryChangedMessage(newBattlecry)); diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index ac5914d47c03..1af471f28a3f 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -88,7 +88,9 @@ public override void Initialize() private void OnMuzzleFlash(MuzzleFlashEvent args) { - CreateEffect(GetEntity(args.Uid), args); + var gunUid = GetEntity(args.Uid); + + CreateEffect(gunUid, args, gunUid); } private void OnHitscan(HitscanEvent ev) @@ -176,7 +178,7 @@ public override void Update(float frameTime) } // Define target coordinates relative to gun entity, so that network latency on moving grids doesn't fuck up the target location. - var coordinates = EntityCoordinates.FromMap(entity, mousePos, TransformSystem, EntityManager); + var coordinates = TransformSystem.ToCoordinates(entity, mousePos); NetEntity? target = null; if (_state.CurrentState is GameplayStateBase screen) @@ -200,7 +202,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? // Rather than splitting client / server for every ammo provider it's easier // to just delete the spawned entities. This is for programmer sanity despite the wasted perf. // This also means any ammo specific stuff can be grabbed as necessary. - var direction = fromCoordinates.ToMapPos(EntityManager, TransformSystem) - toCoordinates.ToMapPos(EntityManager, TransformSystem); + var direction = TransformSystem.ToMapCoordinates(fromCoordinates).Position - TransformSystem.ToMapCoordinates(toCoordinates).Position; var worldAngle = direction.ToAngle().Opposite(); foreach (var (ent, shootable) in ammo) @@ -271,11 +273,19 @@ protected override void Popup(string message, EntityUid? uid, EntityUid? user) PopupSystem.PopupEntity(message, uid.Value, user.Value); } - protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, EntityUid? user = null) + protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, EntityUid? tracked = null) { if (!Timing.IsFirstTimePredicted) return; + // EntityUid check added to stop throwing exceptions due to https://github.com/space-wizards/space-station-14/issues/28252 + // TODO: Check to see why invalid entities are firing effects. + if (gunUid == EntityUid.Invalid) + { + Log.Debug($"Invalid Entity sent MuzzleFlashEvent (proto: {message.Prototype}, gun: {ToPrettyString(gunUid)})"); + return; + } + var gunXform = Transform(gunUid); var gridUid = gunXform.GridUid; EntityCoordinates coordinates; @@ -296,10 +306,10 @@ protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, var ent = Spawn(message.Prototype, coordinates); TransformSystem.SetWorldRotationNoLerp(ent, message.Angle); - if (user != null) + if (tracked != null) { var track = EnsureComp(ent); - track.User = user; + track.User = tracked; track.Offset = Vector2.UnitX / 2f; } @@ -375,6 +385,6 @@ protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, var uidPlayer = EnsureComp(gunUid); _animPlayer.Stop(gunUid, uidPlayer, "muzzle-flash-light"); - _animPlayer.Play((gunUid, uidPlayer), animTwo,"muzzle-flash-light"); + _animPlayer.Play((gunUid, uidPlayer), animTwo, "muzzle-flash-light"); } } diff --git a/Content.Client/Wires/UI/WiresBoundUserInterface.cs b/Content.Client/Wires/UI/WiresBoundUserInterface.cs index 5a8869a204ed..edf1a2d37704 100644 --- a/Content.Client/Wires/UI/WiresBoundUserInterface.cs +++ b/Content.Client/Wires/UI/WiresBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Wires; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Wires.UI { @@ -15,10 +16,8 @@ public WiresBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) protected override void Open() { base.Open(); - - _menu = new WiresMenu(this); - _menu.OnClose += Close; - _menu.OpenCenteredLeft(); + _menu = this.CreateWindow(); + _menu.OnAction += PerformAction; } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Wires/UI/WiresMenu.cs b/Content.Client/Wires/UI/WiresMenu.cs index 7bccc208616c..eccc548297cd 100644 --- a/Content.Client/Wires/UI/WiresMenu.cs +++ b/Content.Client/Wires/UI/WiresMenu.cs @@ -1,4 +1,3 @@ -using System; using System.Numerics; using Content.Client.Examine; using Content.Client.Resources; @@ -12,10 +11,6 @@ using Robust.Client.UserInterface.CustomControls; using Robust.Shared.Animations; using Robust.Shared.Input; -using Robust.Shared.IoC; -using Robust.Shared.Localization; -using Robust.Shared.Maths; -using Robust.Shared.Random; using static Robust.Client.UserInterface.Controls.BoxContainer; namespace Content.Client.Wires.UI @@ -24,8 +19,6 @@ public sealed class WiresMenu : BaseWindow { [Dependency] private readonly IResourceCache _resourceCache = default!; - public WiresBoundUserInterface Owner { get; } - private readonly Control _wiresHBox; private readonly Control _topContainer; private readonly Control _statusContainer; @@ -35,11 +28,12 @@ public sealed class WiresMenu : BaseWindow public TextureButton CloseButton { get; set; } - public WiresMenu(WiresBoundUserInterface owner) + public event Action? OnAction; + + public WiresMenu() { IoCManager.InjectDependencies(this); - Owner = owner; var rootContainer = new LayoutContainer {Name = "WireRoot"}; AddChild(rootContainer); @@ -257,12 +251,12 @@ public void Populate(WiresBoundUserInterfaceState state) control.WireClicked += () => { - Owner.PerformAction(wire.Id, wire.IsCut ? WiresAction.Mend : WiresAction.Cut); + OnAction?.Invoke(wire.Id, wire.IsCut ? WiresAction.Mend : WiresAction.Cut); }; control.ContactsClicked += () => { - Owner.PerformAction(wire.Id, WiresAction.Pulse); + OnAction?.Invoke(wire.Id, WiresAction.Pulse); }; } diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleBoundUserInterface.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleBoundUserInterface.cs index 2538caf6eb8d..c7a74815b6b8 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleBoundUserInterface.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Xenoarchaeology.Equipment; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Xenoarchaeology.Ui; @@ -18,10 +19,7 @@ protected override void Open() { base.Open(); - _consoleMenu = new AnalysisConsoleMenu(); - - _consoleMenu.OnClose += Close; - _consoleMenu.OpenCentered(); + _consoleMenu = this.CreateWindow(); _consoleMenu.OnServerSelectionButtonPressed += () => { diff --git a/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs new file mode 100644 index 000000000000..3a1ec7fd40eb --- /dev/null +++ b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs @@ -0,0 +1,53 @@ +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Atmos.Piping.EntitySystems; +using Robust.Shared.GameObjects; + +namespace Content.IntegrationTests.Tests.Atmos; + +[TestFixture] +public sealed class GridJoinTest +{ + private const string CanisterProtoId = "AirCanister"; + + [Test] + public async Task TestGridJoinAtmosphere() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var protoMan = server.ProtoMan; + var atmosSystem = entMan.System(); + var atmosDeviceSystem = entMan.System(); + var transformSystem = entMan.System(); + + var testMap = await pair.CreateTestMap(); + + await server.WaitPost(() => + { + // Spawn an atmos device on the grid + var canister = entMan.Spawn(CanisterProtoId); + transformSystem.SetCoordinates(canister, testMap.GridCoords); + var deviceComp = entMan.GetComponent(canister); + var canisterEnt = (canister, deviceComp); + + // Make sure the canister is tracked as an off-grid device + Assert.That(atmosDeviceSystem.IsJoinedOffGrid(canisterEnt)); + + // Add an atmosphere to the grid + entMan.AddComponent(testMap.Grid); + + // Force AtmosDeviceSystem to update off-grid devices + // This means the canister is now considered on-grid, + // but it's still tracked as off-grid! + Assert.DoesNotThrow(() => atmosDeviceSystem.Update(atmosSystem.AtmosTime)); + + // Make sure that the canister is now properly tracked as on-grid + Assert.That(atmosDeviceSystem.IsJoinedOffGrid(canisterEnt), Is.False); + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs index 7b3c9943029d..cc5d99e8b2f5 100644 --- a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs @@ -104,8 +104,6 @@ public async Task TryStopNukeOpsFromConstantlyFailing() // Maps now exist Assert.That(entMan.Count(), Is.GreaterThan(0)); Assert.That(entMan.Count(), Is.GreaterThan(0)); - Assert.That(entMan.Count(), Is.EqualTo(2)); // The main station & nukie station - Assert.That(entMan.Count(), Is.GreaterThan(3)); // Each station has at least 1 grid, plus some shuttles Assert.That(entMan.Count(), Is.EqualTo(1)); // And we now have nukie related components @@ -159,7 +157,6 @@ void CheckDummy(int i) { Assert.That(entMan.EntityExists(grid)); Assert.That(entMan.HasComponent(grid)); - Assert.That(entMan.HasComponent(grid)); } Assert.That(entMan.EntityExists(ruleComp.TargetStation)); @@ -180,12 +177,7 @@ void CheckDummy(int i) } } - Assert.That(entMan.EntityExists(nukieStationEnt)); - var nukieStation = entMan.GetComponent(nukieStationEnt!.Value); - - Assert.That(entMan.EntityExists(nukieStation.Station)); - Assert.That(nukieStation.Station, Is.Not.EqualTo(ruleComp.TargetStation)); - + Assert.That(!entMan.EntityExists(nukieStationEnt)); // its not supposed to be a station! Assert.That(server.MapMan.MapExists(gridsRule.Map)); var nukieMap = mapSys.GetMap(gridsRule.Map!.Value); @@ -195,7 +187,6 @@ void CheckDummy(int i) Assert.That(targetMap, Is.Not.EqualTo(nukieMap)); Assert.That(entMan.GetComponent(player).MapUid, Is.EqualTo(nukieMap)); - Assert.That(entMan.GetComponent(nukieStationEnt.Value).MapUid, Is.EqualTo(nukieMap)); Assert.That(entMan.GetComponent(nukieShuttlEnt).MapUid, Is.EqualTo(nukieMap)); // The maps are all map-initialized, including the player @@ -209,7 +200,6 @@ void CheckDummy(int i) Assert.That(LifeStage(player), Is.GreaterThan(EntityLifeStage.Initialized)); Assert.That(LifeStage(nukieMap), Is.GreaterThan(EntityLifeStage.Initialized)); Assert.That(LifeStage(targetMap), Is.GreaterThan(EntityLifeStage.Initialized)); - Assert.That(LifeStage(nukieStationEnt.Value), Is.GreaterThan(EntityLifeStage.Initialized)); Assert.That(LifeStage(nukieShuttlEnt), Is.GreaterThan(EntityLifeStage.Initialized)); Assert.That(LifeStage(ruleComp.TargetStation), Is.GreaterThan(EntityLifeStage.Initialized)); diff --git a/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs b/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs new file mode 100644 index 000000000000..31d33ba61746 --- /dev/null +++ b/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs @@ -0,0 +1,133 @@ +using System.Linq; +using Content.Server.Antag.Components; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.Roles; +using Content.Shared.GameTicking; +using Content.Shared.GameTicking.Components; +using Content.Shared.Mind; +using Content.Shared.NPC.Systems; +using Content.Shared.Objectives.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.GameRules; + +[TestFixture] +public sealed class TraitorRuleTest +{ + private const string TraitorGameRuleProtoId = "Traitor"; + private const string TraitorAntagRoleName = "Traitor"; + + [Test] + public async Task TestTraitorObjectives() + { + await using var pair = await PoolManager.GetServerClient(new PoolSettings() + { + Dirty = true, + DummyTicker = false, + Connected = true, + InLobby = true, + }); + var server = pair.Server; + var client = pair.Client; + var entMan = server.EntMan; + var protoMan = server.ProtoMan; + var compFact = server.ResolveDependency(); + var ticker = server.System(); + var mindSys = server.System(); + var roleSys = server.System(); + var factionSys = server.System(); + var traitorRuleSys = server.System(); + + // Look up the minimum player count and max total objective difficulty for the game rule + var minPlayers = 1; + var maxDifficulty = 0f; + await server.WaitAssertion(() => + { + Assert.That(protoMan.TryIndex(TraitorGameRuleProtoId, out var gameRuleEnt), + $"Failed to lookup traitor game rule entity prototype with ID \"{TraitorGameRuleProtoId}\"!"); + + Assert.That(gameRuleEnt.TryGetComponent(out var gameRule, compFact), + $"Game rule entity {TraitorGameRuleProtoId} does not have a GameRuleComponent!"); + + Assert.That(gameRuleEnt.TryGetComponent(out var randomObjectives, compFact), + $"Game rule entity {TraitorGameRuleProtoId} does not have an AntagRandomObjectivesComponent!"); + + minPlayers = gameRule.MinPlayers; + maxDifficulty = randomObjectives.MaxDifficulty; + }); + + // Initially in the lobby + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.PreRoundLobby)); + Assert.That(client.AttachedEntity, Is.Null); + Assert.That(ticker.PlayerGameStatuses[client.User!.Value], Is.EqualTo(PlayerGameStatus.NotReadyToPlay)); + + // Add enough dummy players for the game rule + var dummies = await pair.Server.AddDummySessions(minPlayers); + await pair.RunTicksSync(5); + + // Initially, the players have no attached entities + Assert.That(pair.Player?.AttachedEntity, Is.Null); + Assert.That(dummies.All(x => x.AttachedEntity == null)); + + // Opt-in the player for the traitor role + await pair.SetAntagPreference(TraitorAntagRoleName, true); + + // Add the game rule + var gameRuleEnt = ticker.AddGameRule(TraitorGameRuleProtoId); + Assert.That(entMan.TryGetComponent(gameRuleEnt, out var traitorRule)); + + // Ready up + ticker.ToggleReadyAll(true); + Assert.That(ticker.PlayerGameStatuses.Values.All(x => x == PlayerGameStatus.ReadyToPlay)); + + // Start the round + await server.WaitPost(() => + { + ticker.StartRound(); + // Force traitor mode to start (skip the delay) + ticker.StartGameRule(gameRuleEnt); + }); + await pair.RunTicksSync(10); + + // Game should have started + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.InRound)); + Assert.That(ticker.PlayerGameStatuses.Values.All(x => x == PlayerGameStatus.JoinedGame)); + Assert.That(client.EntMan.EntityExists(client.AttachedEntity)); + + // Check the player and dummies are spawned + var dummyEnts = dummies.Select(x => x.AttachedEntity ?? default).ToArray(); + var player = pair.Player!.AttachedEntity!.Value; + Assert.That(entMan.EntityExists(player)); + Assert.That(dummyEnts.All(entMan.EntityExists)); + + // Make sure the player is a traitor. + var mind = mindSys.GetMind(player)!.Value; + Assert.That(roleSys.MindIsAntagonist(mind)); + Assert.That(factionSys.IsMember(player, "Syndicate"), Is.True); + Assert.That(factionSys.IsMember(player, "NanoTrasen"), Is.False); + Assert.That(traitorRule.TotalTraitors, Is.EqualTo(1)); + Assert.That(traitorRule.TraitorMinds[0], Is.EqualTo(mind)); + + // Check total objective difficulty + Assert.That(entMan.TryGetComponent(mind, out var mindComp)); + var totalDifficulty = mindComp.Objectives.Sum(o => entMan.GetComponent(o).Difficulty); + Assert.That(totalDifficulty, Is.AtMost(maxDifficulty), + $"MaxDifficulty exceeded! Objectives: {string.Join(", ", mindComp.Objectives.Select(o => FormatObjective(o, entMan)))}"); + Assert.That(mindComp.Objectives, Is.Not.Empty, + $"No objectives assigned!"); + + + await pair.CleanReturnAsync(); + } + + private static string FormatObjective(Entity entity, IEntityManager entMan) + { + var meta = entMan.GetComponent(entity); + var objective = entMan.GetComponent(entity); + return $"{meta.EntityName} ({objective.Difficulty})"; + } +} diff --git a/Content.IntegrationTests/Tests/Hands/HandTests.cs b/Content.IntegrationTests/Tests/Hands/HandTests.cs index 9ecabbeebf69..5e96015feb7f 100644 --- a/Content.IntegrationTests/Tests/Hands/HandTests.cs +++ b/Content.IntegrationTests/Tests/Hands/HandTests.cs @@ -1,8 +1,10 @@ using System.Linq; +using Content.Server.Storage.EntitySystems; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Containers; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -11,6 +13,19 @@ namespace Content.IntegrationTests.Tests.Hands; [TestFixture] public sealed class HandTests { + [TestPrototypes] + private const string Prototypes = @" +- type: entity + id: TestPickUpThenDropInContainerTestBox + name: box + components: + - type: EntityStorage + - type: ContainerContainer + containers: + entity_storage: !type:Container +"; + + [Test] public async Task TestPickupDrop() { @@ -57,4 +72,69 @@ await server.WaitPost(() => await server.WaitPost(() => mapMan.DeleteMap(data.MapId)); await pair.CleanReturnAsync(); } + + [Test] + public async Task TestPickUpThenDropInContainer() + { + await using var pair = await PoolManager.GetServerClient(new PoolSettings + { + Connected = true, + DummyTicker = false + }); + var server = pair.Server; + var map = await pair.CreateTestMap(); + await pair.RunTicksSync(5); + + var entMan = server.ResolveDependency(); + var playerMan = server.ResolveDependency(); + var mapMan = server.ResolveDependency(); + var sys = entMan.System(); + var tSys = entMan.System(); + var containerSystem = server.System(); + + EntityUid item = default; + EntityUid box = default; + EntityUid player = default; + HandsComponent hands = default!; + + // spawn the elusive box and crowbar at the coordinates + await server.WaitPost(() => box = server.EntMan.SpawnEntity("TestPickUpThenDropInContainerTestBox", map.GridCoords)); + await server.WaitPost(() => item = server.EntMan.SpawnEntity("Crowbar", map.GridCoords)); + // place the player at the exact same coordinates and have them grab the crowbar + await server.WaitPost(() => + { + player = playerMan.Sessions.First().AttachedEntity!.Value; + tSys.PlaceNextTo(player, item); + hands = entMan.GetComponent(player); + sys.TryPickup(player, item, hands.ActiveHand!); + }); + await pair.RunTicksSync(5); + Assert.That(hands.ActiveHandEntity, Is.EqualTo(item)); + + // Open then close the box to place the player, who is holding the crowbar, inside of it + var storage = server.System(); + await server.WaitPost(() => + { + storage.OpenStorage(box); + storage.CloseStorage(box); + }); + await pair.RunTicksSync(5); + Assert.That(containerSystem.IsEntityInContainer(player), Is.True); + + // Dropping the item while the player is inside the box should cause the item + // to also be inside the same container the player is in now, + // with the item not being in the player's hands + await server.WaitPost(() => + { + sys.TryDrop(player, item, null!); + }); + await pair.RunTicksSync(5); + var xform = entMan.GetComponent(player); + var itemXform = entMan.GetComponent(item); + Assert.That(hands.ActiveHandEntity, Is.Not.EqualTo(item)); + Assert.That(containerSystem.IsInSameOrNoContainer((player, xform), (item, itemXform))); + + await server.WaitPost(() => mapMan.DeleteMap(map.MapId)); + await pair.CleanReturnAsync(); + } } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs index 053152dbe1be..194bc54fba6c 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs @@ -114,7 +114,7 @@ await Server.WaitPost(() => return await SpawnEntity((stack.StackTypeId, spec.Quantity), coords); Assert.That(spec.Quantity, Is.EqualTo(1), "SpawnEntity only supports returning a singular entity"); - await Server.WaitPost(() => uid = SEntMan.SpawnEntity(spec.Prototype, coords)); + await Server.WaitPost(() => uid = SEntMan.SpawnAtPosition(spec.Prototype, coords)); return uid; } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index a09126a7f7c9..0f2c314ed01e 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -91,7 +91,7 @@ protected async Task SpawnTarget(string prototype) Target = NetEntity.Invalid; await Server.WaitPost(() => { - Target = SEntMan.GetNetEntity(SEntMan.SpawnEntity(prototype, SEntMan.GetCoordinates(TargetCoords))); + Target = SEntMan.GetNetEntity(SEntMan.SpawnAtPosition(prototype, SEntMan.GetCoordinates(TargetCoords))); }); await RunTicks(5); @@ -171,7 +171,7 @@ await Server.WaitPost(() => // turn on welders if (enableToggleable && SEntMan.TryGetComponent(item, out itemToggle) && !itemToggle.Activated) { - Assert.That(ItemToggleSys.TryActivate(item, playerEnt, itemToggle: itemToggle)); + Assert.That(ItemToggleSys.TryActivate((item, itemToggle), user: playerEnt)); } }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 457d3e31920a..b3d684e01a05 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -104,7 +104,7 @@ public abstract partial class InteractionTest protected Content.Server.Construction.ConstructionSystem SConstruction = default!; protected SharedDoAfterSystem DoAfterSys = default!; protected ToolSystem ToolSys = default!; - protected SharedItemToggleSystem ItemToggleSys = default!; + protected ItemToggleSystem ItemToggleSys = default!; protected InteractionTestSystem STestSystem = default!; protected SharedTransformSystem Transform = default!; protected SharedMapSystem MapSystem = default!; @@ -165,7 +165,7 @@ public virtual async Task Setup() HandSys = SEntMan.System(); InteractSys = SEntMan.System(); ToolSys = SEntMan.System(); - ItemToggleSys = SEntMan.System(); + ItemToggleSys = SEntMan.System(); DoAfterSys = SEntMan.System(); Transform = SEntMan.System(); MapSystem = SEntMan.System(); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index cd14bfdc90d2..d1997c68baf3 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -30,8 +30,7 @@ public sealed class PostMapInitTest private static readonly string[] NoSpawnMaps = { "CentComm", - "Dart", - "NukieOutpost" + "Dart" }; private static readonly string[] Grids = @@ -54,7 +53,6 @@ public sealed class PostMapInitTest "Bagel", "Origin", "CentComm", - "NukieOutpost", "Box", "Europa", "Saltern", diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index dea8f9558abd..d195201c29cd 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -903,6 +903,9 @@ public enum ConnectionDenyReason : byte Panic = 3, /* * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + * + * If baby jail is removed, please reserve this value for as long as can reasonably be done to prevent causing ambiguity in connection denial reasons. + * Reservation by commenting out the value is likely sufficient for this purpose, but may impact projects which depend on SS14 like SS14.Admin. */ BabyJail = 4, } diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhostCommand.cs similarity index 97% rename from Content.Server/Administration/Commands/AGhost.cs rename to Content.Server/Administration/Commands/AGhostCommand.cs index 935114e7a683..b24dbbc018c5 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhostCommand.cs @@ -12,13 +12,12 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Admin)] -public sealed class AGhost : LocalizedCommands +public sealed class AGhostCommand : LocalizedCommands { [Dependency] private readonly IEntityManager _entities = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; public override string Command => "aghost"; - public override string Description => LocalizationManager.GetString("aghost-description"); public override string Help => "aghost"; public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs index eda915827394..bac2648307cc 100644 --- a/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs +++ b/Content.Server/Ame/EntitySystems/AmeControllerSystem.cs @@ -22,8 +22,6 @@ namespace Content.Server.Ame.EntitySystems; public sealed class AmeControllerSystem : EntitySystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; diff --git a/Content.Server/Anomaly/AnomalySystem.Scanner.cs b/Content.Server/Anomaly/AnomalySystem.Scanner.cs index 39c0d08b55e1..65d79de60c68 100644 --- a/Content.Server/Anomaly/AnomalySystem.Scanner.cs +++ b/Content.Server/Anomaly/AnomalySystem.Scanner.cs @@ -141,7 +141,7 @@ public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) var msg = new FormattedMessage(); if (component.ScannedAnomaly is not { } anomaly || !TryComp(anomaly, out var anomalyComp)) { - msg.AddMarkup(Loc.GetString("anomaly-scanner-no-anomaly")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-no-anomaly")); return msg; } @@ -149,14 +149,14 @@ public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) //Severity if (secret != null && secret.Secret.Contains(AnomalySecretData.Severity)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-severity-percentage-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-severity-percentage", ("percent", anomalyComp.Severity.ToString("P")))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage", ("percent", anomalyComp.Severity.ToString("P")))); msg.PushNewline(); //Stability if (secret != null && secret.Secret.Contains(AnomalySecretData.Stability)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-stability-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-stability-unknown")); else { string stateLoc; @@ -166,54 +166,54 @@ public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) stateLoc = Loc.GetString("anomaly-scanner-stability-high"); else stateLoc = Loc.GetString("anomaly-scanner-stability-medium"); - msg.AddMarkup(stateLoc); + msg.AddMarkupOrThrow(stateLoc); } msg.PushNewline(); //Point output if (secret != null && secret.Secret.Contains(AnomalySecretData.OutputPoint)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-point-output-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-point-output", ("point", GetAnomalyPointValue(anomaly, anomalyComp)))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output", ("point", GetAnomalyPointValue(anomaly, anomalyComp)))); msg.PushNewline(); msg.PushNewline(); //Particles title - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-readout")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-readout")); msg.PushNewline(); //Danger if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleDanger)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-danger-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-danger", ("type", GetParticleLocale(anomalyComp.SeverityParticleType)))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger", ("type", GetParticleLocale(anomalyComp.SeverityParticleType)))); msg.PushNewline(); //Unstable if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleUnstable)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-unstable-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-unstable", ("type", GetParticleLocale(anomalyComp.DestabilizingParticleType)))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable", ("type", GetParticleLocale(anomalyComp.DestabilizingParticleType)))); msg.PushNewline(); //Containment if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleContainment)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-containment-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-containment", ("type", GetParticleLocale(anomalyComp.WeakeningParticleType)))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment", ("type", GetParticleLocale(anomalyComp.WeakeningParticleType)))); msg.PushNewline(); //Transformation if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleTransformation)) - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-transformation-unknown")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation-unknown")); else - msg.AddMarkup(Loc.GetString("anomaly-scanner-particle-transformation", ("type", GetParticleLocale(anomalyComp.TransformationParticleType)))); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation", ("type", GetParticleLocale(anomalyComp.TransformationParticleType)))); //Behavior msg.PushNewline(); msg.PushNewline(); - msg.AddMarkup(Loc.GetString("anomaly-behavior-title")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-title")); msg.PushNewline(); if (secret != null && secret.Secret.Contains(AnomalySecretData.Behavior)) @@ -224,14 +224,14 @@ public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) { var behavior = _prototype.Index(anomalyComp.CurrentBehavior.Value); - msg.AddMarkup("- " + Loc.GetString(behavior.Description)); + msg.AddMarkupOrThrow("- " + Loc.GetString(behavior.Description)); msg.PushNewline(); var mod = Math.Floor((behavior.EarnPointModifier) * 100); - msg.AddMarkup("- " + Loc.GetString("anomaly-behavior-point", ("mod", mod))); + msg.AddMarkupOrThrow("- " + Loc.GetString("anomaly-behavior-point", ("mod", mod))); } else { - msg.AddMarkup(Loc.GetString("anomaly-behavior-balanced")); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-balanced")); } } diff --git a/Content.Server/Antag/AntagRandomObjectivesSystem.cs b/Content.Server/Antag/AntagRandomObjectivesSystem.cs index c935b8c06481..b60759a3d5cc 100644 --- a/Content.Server/Antag/AntagRandomObjectivesSystem.cs +++ b/Content.Server/Antag/AntagRandomObjectivesSystem.cs @@ -39,7 +39,8 @@ private void OnAntagSelected(Entity ent, ref Aft for (var pick = 0; pick < set.MaxPicks && ent.Comp.MaxDifficulty > difficulty; pick++) { - if (_objectives.GetRandomObjective(mindId, mind, set.Groups) is not {} objective) + var remainingDifficulty = ent.Comp.MaxDifficulty - difficulty; + if (_objectives.GetRandomObjective(mindId, mind, set.Groups, remainingDifficulty) is not { } objective) continue; _mind.AddObjective(mindId, mind, objective); diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index c2cdd4a10727..0f4490cd7eba 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -162,7 +162,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul if (component.LastPosition.HasValue) { // Check if position is out of range => don't update and disable - if (!component.LastPosition.Value.InRange(EntityManager, _transform, userPos, SharedInteractionSystem.InteractionRange)) + if (!_transform.InRange(component.LastPosition.Value, userPos, SharedInteractionSystem.InteractionRange)) { if (component.User is { } userId && component.Enabled) _popup.PopupEntity(Loc.GetString("gas-analyzer-shutoff"), userId, userId); diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index baad739804b8..2d703439c0f8 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -81,7 +81,7 @@ public void UpdateUserInterface(Entity ent, bool initialUpdate TankPressure = component.Air?.Pressure ?? 0, OutputPressure = initialUpdate ? component.OutputPressure : null, InternalsConnected = component.IsConnected, - CanConnectInternals = CanConnectToInternals(component) + CanConnectInternals = CanConnectToInternals(ent) }); } @@ -217,24 +217,24 @@ public GasMixture RemoveAirVolume(Entity gasTank, float volume return air; } - public bool CanConnectToInternals(GasTankComponent component) + public bool CanConnectToInternals(Entity ent) { - var internals = GetInternalsComponent(component, component.User); - return internals != null && internals.BreathTools.Count != 0 && !component.IsValveOpen; + TryGetInternalsComp(ent, out _, out var internalsComp, ent.Comp.User); + return internalsComp != null && internalsComp.BreathTools.Count != 0 && !ent.Comp.IsValveOpen; } public void ConnectToInternals(Entity ent) { var (owner, component) = ent; - if (component.IsConnected || !CanConnectToInternals(component)) + if (component.IsConnected || !CanConnectToInternals(ent)) return; - var internals = GetInternalsComponent(component); - if (internals == null) + TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, ent.Comp.User); + if (internalsUid == null || internalsComp == null) return; - if (_internals.TryConnectTank((internals.Owner, internals), owner)) - component.User = internals.Owner; + if (_internals.TryConnectTank((internalsUid.Value, internalsComp), owner)) + component.User = internalsUid.Value; _actions.SetToggled(component.ToggleActionEntity, component.IsConnected); @@ -243,7 +243,7 @@ public void ConnectToInternals(Entity ent) return; component.ConnectStream = _audioSys.Stop(component.ConnectStream); - component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, component.Owner)?.Entity; + component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, owner)?.Entity; UpdateUserInterface(ent); } @@ -251,29 +251,59 @@ public void ConnectToInternals(Entity ent) public void DisconnectFromInternals(Entity ent) { var (owner, component) = ent; + if (component.User == null) return; - var internals = GetInternalsComponent(component); + TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, component.User); component.User = null; _actions.SetToggled(component.ToggleActionEntity, false); - _internals.DisconnectTank(internals); + if (internalsUid != null && internalsComp != null) + _internals.DisconnectTank((internalsUid.Value, internalsComp)); component.DisconnectStream = _audioSys.Stop(component.DisconnectStream); - component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, component.Owner)?.Entity; + component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, owner)?.Entity; UpdateUserInterface(ent); } - private InternalsComponent? GetInternalsComponent(GasTankComponent component, EntityUid? owner = null) + /// + /// Tries to retrieve the internals component of either the gas tank's user, + /// or the gas tank's... containing container + /// + /// The user of the gas tank + /// True if internals comp isn't null, false if it is null + private bool TryGetInternalsComp(Entity ent, out EntityUid? internalsUid, out InternalsComponent? internalsComp, EntityUid? user = null) { - owner ??= component.User; - if (Deleted(component.Owner))return null; - if (owner != null) return CompOrNull(owner.Value); - return _containers.TryGetContainingContainer(component.Owner, out var container) - ? CompOrNull(container.Owner) - : null; + internalsUid = default; + internalsComp = default; + + // If the gas tank doesn't exist for whatever reason, don't even bother + if (TerminatingOrDeleted(ent.Owner)) + return false; + + user ??= ent.Comp.User; + // Check if the gas tank's user actually has the component that allows them to use a gas tank and mask + if (TryComp(user, out var userInternalsComp) && userInternalsComp != null) + { + internalsUid = user; + internalsComp = userInternalsComp; + return true; + } + + // Yeah I have no clue what this actually does, I appreciate the lack of comments on the original function + if (_containers.TryGetContainingContainer((ent.Owner, Transform(ent.Owner)), out var container) && container != null) + { + if (TryComp(container.Owner, out var containerInternalsComp) && containerInternalsComp != null) + { + internalsUid = container.Owner; + internalsComp = containerInternalsComp; + return true; + } + } + + return false; } public void AssumeAir(Entity ent, GasMixture giver) @@ -321,7 +351,7 @@ public void CheckStatus(Entity ent) if(environment != null) _atmosphereSystem.Merge(environment, component.Air); - _audioSys.PlayPvs(component.RuptureSound, Transform(component.Owner).Coordinates, AudioParams.Default.WithVariation(0.125f)); + _audioSys.PlayPvs(component.RuptureSound, Transform(owner).Coordinates, AudioParams.Default.WithVariation(0.125f)); QueueDel(owner); return; diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs index 3c73a8f64ee9..f932ef36208e 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs @@ -132,10 +132,19 @@ public override void Update(float frameTime) var ev = new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime, null, null); foreach (var device in _joinedDevices) { - DebugTools.Assert(!HasComp(Transform(device).GridUid)); + var deviceGrid = Transform(device).GridUid; + if (HasComp(deviceGrid)) + { + RejoinAtmosphere(device); + } RaiseLocalEvent(device, ref ev); device.Comp.LastProcess = time; } } + + public bool IsJoinedOffGrid(Entity device) + { + return _joinedDevices.Contains(device); + } } } diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index 2cb0ac1dd76e..76efe3290bf0 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -1,11 +1,11 @@ using Content.Server.Bible.Components; -using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; using Content.Server.Popups; using Content.Shared.ActionBlocker; using Content.Shared.Actions; using Content.Shared.Bible; using Content.Shared.Damage; +using Content.Shared.Ghost.Roles.Components; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Inventory; diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index d6ece39d590a..10ebd934aa46 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -102,7 +102,7 @@ public void ToggleInternals( { if (force) { - DisconnectTank(internals); + DisconnectTank((uid, internals)); return; } @@ -199,16 +199,13 @@ public void ConnectBreathTool(Entity ent, EntityUid toolEnti _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); } - public void DisconnectTank(InternalsComponent? component) + public void DisconnectTank(Entity ent) { - if (component is null) - return; - - if (TryComp(component.GasTankEntity, out GasTankComponent? tank)) - _gasTank.DisconnectFromInternals((component.GasTankEntity.Value, tank)); + if (TryComp(ent.Comp.GasTankEntity, out GasTankComponent? tank)) + _gasTank.DisconnectFromInternals((ent.Comp.GasTankEntity.Value, tank)); - component.GasTankEntity = null; - _alerts.ShowAlert(component.Owner, component.InternalsAlert, GetSeverity(component)); + ent.Comp.GasTankEntity = null; + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent.Comp)); } public bool TryConnectTank(Entity ent, EntityUid tankEntity) @@ -267,21 +264,21 @@ private short GetSeverity(InternalsComponent component) if (_inventory.TryGetSlotEntity(user, "back", out var backEntity, user.Comp2, user.Comp3) && TryComp(backEntity, out var backGasTank) && - _gasTank.CanConnectToInternals(backGasTank)) + _gasTank.CanConnectToInternals((backEntity.Value, backGasTank))) { return (backEntity.Value, backGasTank); } if (_inventory.TryGetSlotEntity(user, "suitstorage", out var entity, user.Comp2, user.Comp3) && TryComp(entity, out var gasTank) && - _gasTank.CanConnectToInternals(gasTank)) + _gasTank.CanConnectToInternals((entity.Value, gasTank))) { return (entity.Value, gasTank); } foreach (var item in _inventory.GetHandOrInventoryEntities((user.Owner, user.Comp1, user.Comp2))) { - if (TryComp(item, out gasTank) && _gasTank.CanConnectToInternals(gasTank)) + if (TryComp(item, out gasTank) && _gasTank.CanConnectToInternals((item, gasTank))) return (item, gasTank); } diff --git a/Content.Server/Botany/Components/SeedComponent.cs b/Content.Server/Botany/Components/SeedComponent.cs index f475ec3cfc44..ffa1b7ef4e98 100644 --- a/Content.Server/Botany/Components/SeedComponent.cs +++ b/Content.Server/Botany/Components/SeedComponent.cs @@ -24,7 +24,7 @@ public sealed partial class SeedComponent : SharedSeedComponent /// /// Name of a base seed prototype that is used if is null. /// - [DataField("seedId", customTypeSerializer:typeof(PrototypeIdSerializer))] + [DataField("seedId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? SeedId; } } diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index c7ce5d47efa4..474859823a39 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -2,10 +2,8 @@ using Robust.Shared.Random; using Content.Shared.Random; using Content.Shared.Random.Helpers; -using Content.Shared.Chemistry.Reagent; using System.Linq; using Content.Shared.Atmos; -using FastAccessors; namespace Content.Server.Botany; @@ -42,6 +40,7 @@ public void MutateSeed(ref SeedData seed, float severity) // Add up everything in the bits column and put the number here. const int totalbits = 275; + #pragma warning disable IDE0055 // disable formatting warnings because this looks more readable // Tolerances (55) MutateFloat(ref seed.NutrientConsumption , 0.05f, 1.2f, 5, totalbits, severity); MutateFloat(ref seed.WaterConsumption , 3f , 9f , 5, totalbits, severity); @@ -75,6 +74,7 @@ public void MutateSeed(ref SeedData seed, float severity) MutateBool(ref seed.TurnIntoKudzu , true , 10, totalbits, severity); MutateBool(ref seed.CanScream , true , 10, totalbits, severity); seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity); + #pragma warning restore IDE0055 // ConstantUpgade (10) MutateHarvestType(ref seed.HarvestRepeat, 10, totalbits, severity); @@ -261,7 +261,7 @@ private void MutateChemicals(ref Dictionary chemicals, { var pick = _randomChems.Pick(_robustRandom); string chemicalId = pick.reagent; - int amount = _robustRandom.Next(1, ((int)pick.quantity)); + int amount = _robustRandom.Next(1, (int)pick.quantity); SeedChemQuantity seedChemQuantity = new SeedChemQuantity(); if (chemicals.ContainsKey(chemicalId)) { @@ -274,7 +274,7 @@ private void MutateChemicals(ref Dictionary chemicals, seedChemQuantity.Max = 1 + amount; seedChemQuantity.Inherent = false; } - int potencyDivisor = (int) Math.Ceiling(100.0f / seedChemQuantity.Max); + int potencyDivisor = (int)Math.Ceiling(100.0f / seedChemQuantity.Max); seedChemQuantity.PotencyDivisor = potencyDivisor; chemicals[chemicalId] = seedChemQuantity; } diff --git a/Content.Server/Botany/Systems/SeedExtractorSystem.cs b/Content.Server/Botany/Systems/SeedExtractorSystem.cs index f1ae6c9f11ae..9a5e70762e78 100644 --- a/Content.Server/Botany/Systems/SeedExtractorSystem.cs +++ b/Content.Server/Botany/Systems/SeedExtractorSystem.cs @@ -29,12 +29,12 @@ private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor return; if (!_botanySystem.TryGetSeed(produce, out var seed) || seed.Seedless) { - _popupSystem.PopupCursor(Loc.GetString("seed-extractor-component-no-seeds",("name", args.Used)), + _popupSystem.PopupCursor(Loc.GetString("seed-extractor-component-no-seeds", ("name", args.Used)), args.User, PopupType.MediumCaution); return; } - _popupSystem.PopupCursor(Loc.GetString("seed-extractor-component-interact-message",("name", args.Used)), + _popupSystem.PopupCursor(Loc.GetString("seed-extractor-component-interact-message", ("name", args.Used)), args.User, PopupType.Medium); QueueDel(args.Used); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index a288d7b07d4a..dd408755e672 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -40,6 +40,7 @@ private void InitializeConsole() SubscribeLocalEvent(OnOrderUIOpened); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnOrderBalanceUpdated); Reset(); } @@ -315,6 +316,15 @@ private void OnOrderUIOpened(EntityUid uid, CargoOrderConsoleComponent component #endregion + + private void OnOrderBalanceUpdated(Entity ent, ref BankBalanceUpdatedEvent args) + { + if (!_uiSystem.IsUiOpen(ent.Owner, CargoConsoleUiKey.Orders)) + return; + + UpdateOrderState(ent, args.Station); + } + private void UpdateOrderState(EntityUid consoleUid, EntityUid? station) { if (station == null || diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index a93a7bdcc225..1b33404e3555 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -81,18 +81,18 @@ public override void Update(float frameTime) public void UpdateBankAccount(EntityUid uid, StationBankAccountComponent component, int balanceAdded) { component.Balance += balanceAdded; - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var oUid, out var _)) + var ev = new BankBalanceUpdatedEvent(uid, component.Balance); + while (query.MoveNext(out var client, out var comp, out var xform)) { - if (!_uiSystem.IsUiOpen(oUid, CargoConsoleUiKey.Orders)) - continue; - - var station = _station.GetOwningStation(oUid); + var station = _station.GetOwningStation(client, xform); if (station != uid) continue; - UpdateOrderState(oUid, station); + comp.Balance = component.Balance; + Dirty(client, comp); + RaiseLocalEvent(client, ref ev); } } } diff --git a/Content.Server/CharacterInfo/CharacterInfoSystem.cs b/Content.Server/CharacterInfo/CharacterInfoSystem.cs index df8718a022e3..3099b2f90fc9 100644 --- a/Content.Server/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Server/CharacterInfo/CharacterInfoSystem.cs @@ -36,14 +36,14 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe if (_minds.TryGetMind(entity, out var mindId, out var mind)) { // Get objectives - foreach (var objective in mind.AllObjectives) + foreach (var objective in mind.Objectives) { var info = _objectives.GetInfo(objective, mindId, mind); if (info == null) continue; // group objectives by their issuer - var issuer = Comp(objective).Issuer; + var issuer = Comp(objective).LocIssuer; if (!objectives.ContainsKey(issuer)) objectives[issuer] = new List(); objectives[issuer].Add(info.Value); diff --git a/Content.Server/Charges/Components/AutoRechargeComponent.cs b/Content.Server/Charges/Components/AutoRechargeComponent.cs index 9dcf555ea931..165b181dcbc4 100644 --- a/Content.Server/Charges/Components/AutoRechargeComponent.cs +++ b/Content.Server/Charges/Components/AutoRechargeComponent.cs @@ -7,6 +7,7 @@ namespace Content.Server.Charges.Components; /// Something with limited charges that can be recharged automatically. /// Requires LimitedChargesComponent to function. /// +// TODO: no reason this cant be predicted and server system deleted [RegisterComponent, AutoGenerateComponentPause] [Access(typeof(ChargesSystem))] public sealed partial class AutoRechargeComponent : Component diff --git a/Content.Server/Charges/Systems/ChargesSystem.cs b/Content.Server/Charges/Systems/ChargesSystem.cs index 03e192e680e8..974928ee4bbc 100644 --- a/Content.Server/Charges/Systems/ChargesSystem.cs +++ b/Content.Server/Charges/Systems/ChargesSystem.cs @@ -37,15 +37,17 @@ protected override void OnExamine(EntityUid uid, LimitedChargesComponent comp, E args.PushMarkup(Loc.GetString("limited-charges-recharging", ("seconds", timeRemaining))); } - public override void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + public override void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) { - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return; var startRecharge = comp.Charges == comp.MaxCharges; - base.UseCharge(uid, comp); - // start the recharge time after first use at full charge - if (startRecharge && TryComp(uid, out var recharge)) + base.AddCharges(uid, change, comp); + + // if a charge was just used from full, start the recharge timer + // TODO: probably make this an event instead of having le server system that just does this + if (change < 0 && startRecharge && TryComp(uid, out var recharge)) recharge.NextChargeTime = _timing.CurTime + recharge.RechargeDuration; } } diff --git a/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs index 0f0365e56ba6..cc46545237b0 100644 --- a/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs +++ b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs @@ -16,7 +16,7 @@ public override void Initialize() private void OnInit(EntityUid uid, AnnounceOnSpawnComponent comp, MapInitEvent args) { var message = Loc.GetString(comp.Message); - var sender = comp.Sender != null ? Loc.GetString(comp.Sender) : "Central Command"; + var sender = comp.Sender != null ? Loc.GetString(comp.Sender) : Loc.GetString("chat-manager-sender-announcement"); _chat.DispatchGlobalAnnouncement(message, sender, playSound: true, comp.Sound, comp.Color); } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 55beaf1f7f5c..88b306c6ade6 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -60,7 +60,6 @@ public sealed partial class ChatSystem : SharedChatSystem [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ReplacementAccentSystem _wordreplacement = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; [Dependency] private readonly ExamineSystemShared _examineSystem = default!; @@ -319,12 +318,14 @@ public void TrySendInGameOOCMessage( /// Optional color for the announcement message public void DispatchGlobalAnnouncement( string message, - string sender = "Central Command", + string? sender = null, bool playSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null ) { + sender ??= Loc.GetString("chat-manager-sender-announcement"); + var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) @@ -345,11 +346,13 @@ public void DispatchGlobalAnnouncement( public void DispatchStationAnnouncement( EntityUid source, string message, - string sender = "Central Command", + string? sender = null, bool playDefaultSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null) { + sender ??= Loc.GetString("chat-manager-sender-announcement"); + var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); var station = _stationSystem.GetOwningStation(source); diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index aac171371fb1..54c3fd576fe5 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -118,21 +118,25 @@ private void InjectDoAfter(Entity injector, EntityUid target, if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution)) return; - var actualDelay = MathHelper.Max(injector.Comp.Delay, TimeSpan.FromSeconds(1)); - float amountToInject; + var actualDelay = injector.Comp.Delay; + FixedPoint2 amountToInject; if (injector.Comp.ToggleState == InjectorToggleMode.Draw) { // additional delay is based on actual volume left to draw in syringe when smaller than transfer amount - amountToInject = Math.Min(injector.Comp.TransferAmount.Float(), (solution.MaxVolume - solution.Volume).Float()); + amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, (solution.MaxVolume - solution.Volume)); } else { // additional delay is based on actual volume left to inject in syringe when smaller than transfer amount - amountToInject = Math.Min(injector.Comp.TransferAmount.Float(), solution.Volume.Float()); + amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, solution.Volume); } // Injections take 0.5 seconds longer per 5u of possible space/content - actualDelay += TimeSpan.FromSeconds(amountToInject / 10); + // First 5u(MinimumTransferAmount) doesn't incur delay + actualDelay += injector.Comp.DelayPerVolume * FixedPoint2.Max(0, amountToInject - injector.Comp.MinimumTransferAmount).Double(); + + // Ensure that minimum delay before incapacitation checks is 1 seconds + actualDelay = MathHelper.Max(actualDelay, TimeSpan.FromSeconds(1)); var isTarget = user != target; diff --git a/Content.Server/Clock/ClockSystem.cs b/Content.Server/Clock/ClockSystem.cs new file mode 100644 index 000000000000..29400a59f7b7 --- /dev/null +++ b/Content.Server/Clock/ClockSystem.cs @@ -0,0 +1,42 @@ +using Content.Server.GameTicking.Events; +using Content.Shared.Clock; +using Content.Shared.Destructible; +using Robust.Server.GameStates; +using Robust.Shared.Random; + +namespace Content.Server.Clock; + +public sealed class ClockSystem : SharedClockSystem +{ + [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundStart); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnBreak); + } + + private void OnRoundStart(RoundStartingEvent ev) + { + var manager = Spawn(); + AddComp(manager); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.TimeOffset = TimeSpan.FromHours(_robustRandom.NextFloat(0, 24)); + _pvsOverride.AddGlobalOverride(ent); + Dirty(ent); + } + + private void OnBreak(Entity ent, ref BreakageEventArgs args) + { + ent.Comp.StuckTime = GetClockTime(ent); + Dirty(ent, ent.Comp); + } +} diff --git a/Content.Server/Cluwne/CluwneSystem.cs b/Content.Server/Cluwne/CluwneSystem.cs index 18d82659debe..f24f0143f316 100644 --- a/Content.Server/Cluwne/CluwneSystem.cs +++ b/Content.Server/Cluwne/CluwneSystem.cs @@ -29,7 +29,6 @@ public sealed class CluwneSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly AutoEmoteSystem _autoEmote = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly NameModifierSystem _nameMod = default!; public override void Initialize() diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index d7c3e4cf742f..1d675842c76e 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -303,7 +303,17 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame // Wait some time to lookup data var record = await _dbManager.GetPlayerRecordByUserId(userId); - var isAccountAgeInvalid = record == null || record.FirstSeenTime.CompareTo(DateTimeOffset.Now - TimeSpan.FromMinutes(maxAccountAgeMinutes)) <= 0; + // No player record = new account or the DB is having a skill issue + if (record == null) + return (false, ""); + + var isAccountAgeInvalid = record.FirstSeenTime.CompareTo(DateTimeOffset.Now - TimeSpan.FromMinutes(maxAccountAgeMinutes)) <= 0; + + if (isAccountAgeInvalid) + { + _sawmill.Debug($"Baby jail will deny {userId} for account age {record.FirstSeenTime}"); // Remove on or after 2024-09 + } + if (isAccountAgeInvalid && showReason) { var locAccountReason = reason != string.Empty @@ -318,7 +328,12 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame } var overallTime = ( await _db.GetPlayTimes(e.UserId)).Find(p => p.Tracker == PlayTimeTrackingShared.TrackerOverall); - var isTotalPlaytimeInvalid = overallTime == null || overallTime.TimeSpent.TotalMinutes >= maxPlaytimeMinutes; + var isTotalPlaytimeInvalid = overallTime != null && overallTime.TimeSpent.TotalMinutes >= maxPlaytimeMinutes; + + if (isTotalPlaytimeInvalid) + { + _sawmill.Debug($"Baby jail will deny {userId} for playtime {overallTime!.TimeSpent}"); // Remove on or after 2024-09 + } if (isTotalPlaytimeInvalid && showReason) { diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index ff4d1cabe98a..8a7b3df0b248 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -32,31 +32,25 @@ public override void Initialize() private void OnDoHit(EntityUid uid, DamageOtherOnHitComponent component, ThrowDoHitEvent args) { - if (!TerminatingOrDeleted(args.Target)) - { - var dmg = _damageable.TryChangeDamage(args.Target, component.Damage, component.IgnoreResistances, origin: args.Component.Thrower); + if (TerminatingOrDeleted(args.Target)) + return; - // 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)) - _adminLogger.Add(LogType.ThrowHit, $"{ToPrettyString(args.Target):target} received {dmg.GetTotal():damage} damage from collision"); + var dmg = _damageable.TryChangeDamage(args.Target, component.Damage, component.IgnoreResistances, origin: args.Component.Thrower); - if (dmg is { Empty: false }) - { - _color.RaiseEffect(Color.Red, new List() { args.Target }, Filter.Pvs(args.Target, entityManager: EntityManager)); - } + // 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)) + _adminLogger.Add(LogType.ThrowHit, $"{ToPrettyString(args.Target):target} received {dmg.GetTotal():damage} damage from collision"); - _guns.PlayImpactSound(args.Target, dmg, null, false); - if (TryComp(uid, out var body) && body.LinearVelocity.LengthSquared() > 0f) - { - var direction = body.LinearVelocity.Normalized(); - _sharedCameraRecoil.KickCamera(args.Target, direction); - } + if (dmg is { Empty: false }) + { + _color.RaiseEffect(Color.Red, new List() { args.Target }, Filter.Pvs(args.Target, entityManager: EntityManager)); } - // TODO: If more stuff touches this then handle it after. - if (TryComp(uid, out var physics)) + _guns.PlayImpactSound(args.Target, dmg, null, false); + if (TryComp(uid, out var body) && body.LinearVelocity.LengthSquared() > 0f) { - _thrownItem.LandComponent(args.Thrown, args.Component, physics, false); + var direction = body.LinearVelocity.Normalized(); + _sharedCameraRecoil.KickCamera(args.Target, direction); } } diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index 402d005dd475..59b58c69338b 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -423,11 +423,11 @@ private void OpenDeviceLinkUi(EntityUid configuratorUid, EntityUid? targetUid, E if (Delay(configurator)) return; - if (!targetUid.HasValue || !configurator.ActiveDeviceLink.HasValue || !TryComp(userUid, out ActorComponent? actor) || !AccessCheck(targetUid.Value, userUid, configurator)) + if (!targetUid.HasValue || !configurator.ActiveDeviceLink.HasValue || !AccessCheck(targetUid.Value, userUid, configurator)) return; - _uiSystem.OpenUi(configuratorUid, NetworkConfiguratorUiKey.Link, actor.PlayerSession); + _uiSystem.OpenUi(configuratorUid, NetworkConfiguratorUiKey.Link, userUid); configurator.DeviceLinkTarget = targetUid; diff --git a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs index e1fbdbf0894d..6249b9497d85 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs @@ -9,6 +9,7 @@ using Content.Shared.Interaction; using Robust.Server.GameObjects; using Robust.Shared.Player; +using Robust.Shared.Utility; namespace Content.Server.Disposal.Mailing; @@ -35,7 +36,7 @@ public override void Initialize() SubscribeLocalEvent(OnPacketReceived); SubscribeLocalEvent(OnBeforeFlush); SubscribeLocalEvent(OnConfigurationUpdated); - SubscribeLocalEvent(HandleActivate); + SubscribeLocalEvent(HandleActivate, before: new[] { typeof(DisposalUnitSystem) }); SubscribeLocalEvent(OnDisposalUnitUIStateChange); SubscribeLocalEvent(OnTargetSelected); } @@ -179,7 +180,7 @@ private void UpdateUserInterface(EntityUid uid, MailingUnitComponent component) if (component.DisposalUnitInterfaceState == null) return; - var state = new MailingUnitBoundUserInterfaceState(component.DisposalUnitInterfaceState, component.Target, component.TargetList, component.Tag); + var state = new MailingUnitBoundUserInterfaceState(component.DisposalUnitInterfaceState, component.Target, component.TargetList.ShallowClone(), component.Tag); _userInterfaceSystem.SetUiState(uid, MailingUnitUiKey.Key, state); } diff --git a/Content.Server/Doors/Systems/FirelockSystem.cs b/Content.Server/Doors/Systems/FirelockSystem.cs index 93ee18f68310..87e5887c422c 100644 --- a/Content.Server/Doors/Systems/FirelockSystem.cs +++ b/Content.Server/Doors/Systems/FirelockSystem.cs @@ -16,7 +16,6 @@ namespace Content.Server.Doors.Systems public sealed class FirelockSystem : SharedFirelockSystem { [Dependency] private readonly SharedDoorSystem _doorSystem = default!; - [Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!; [Dependency] private readonly AtmosphereSystem _atmosSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedMapSystem _mapping = default!; diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index 62d1f61a35b4..29875c60ca7a 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Zombies; @@ -24,10 +25,10 @@ public sealed partial class DragonSystem : EntitySystem [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; [Dependency] private readonly NpcFactionSystem _faction = default!; [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly RoleSystem _role = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; private EntityQuery _objQuery; @@ -92,7 +93,8 @@ public override void Update(float frameTime) } } - comp.RiftAccumulator += frameTime; + if (!_mobState.IsDead(uid)) + comp.RiftAccumulator += frameTime; // Delete it, naughty dragon! if (comp.RiftAccumulator >= comp.RiftMaxAccumulator) @@ -146,7 +148,7 @@ private void OnSpawnRift(EntityUid uid, DragonComponent component, DragonSpawnRi // cant stack rifts near eachother foreach (var (_, riftXform) in EntityQuery(true)) { - if (riftXform.Coordinates.InRange(EntityManager, _transform, xform.Coordinates, RiftRange)) + if (_transform.InRange(riftXform.Coordinates, xform.Coordinates, RiftRange)) { _popup.PopupEntity(Loc.GetString("carp-rift-proximity", ("proximity", RiftRange)), uid, uid); return; @@ -225,7 +227,7 @@ public void DeleteRifts(EntityUid uid, bool resetRole, DragonComponent? comp = n return; var mind = Comp(mindContainer.Mind.Value); - foreach (var objId in mind.AllObjectives) + foreach (var objId in mind.Objectives) { if (_objQuery.TryGetComponent(objId, out var obj)) { @@ -247,7 +249,7 @@ public void RiftCharged(EntityUid uid, DragonComponent? comp = null) return; var mind = Comp(mindContainer.Mind.Value); - foreach (var objId in mind.AllObjectives) + foreach (var objId in mind.Objectives) { if (_objQuery.TryGetComponent(objId, out var obj)) { diff --git a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs index 281bbc472117..8391e8faada5 100644 --- a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs +++ b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs @@ -65,8 +65,8 @@ bool IsTileClear() EntityManager.SpawnEntity(component.Prototype, args.ClickLocation.SnapToGrid(grid)); - if (component.RemoveOnInteract && stackComp == null && !((!EntityManager.EntityExists(uid) ? EntityLifeStage.Deleted : EntityManager.GetComponent(component.Owner).EntityLifeStage) >= EntityLifeStage.Deleted)) - EntityManager.DeleteEntity(uid); + if (component.RemoveOnInteract && stackComp == null) + TryQueueDel(uid); } } } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs index 29b81deb32c2..ea10b7c69b3b 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Explosion.Components; using Content.Server.Explosion.EntitySystems; using Robust.Shared.Physics.Dynamics; @@ -42,14 +42,15 @@ private void OnComponentRemove(EntityUid uid, TriggerOnTimedCollideComponent com private void UpdateTimedCollide(float frameTime) { - foreach (var (activeTrigger, triggerOnTimedCollide) in EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var triggerOnTimedCollide)) { foreach (var (collidingEntity, collidingTimer) in triggerOnTimedCollide.Colliding) { triggerOnTimedCollide.Colliding[collidingEntity] += frameTime; if (collidingTimer > triggerOnTimedCollide.Threshold) { - RaiseLocalEvent(activeTrigger.Owner, new TriggerEvent(activeTrigger.Owner, collidingEntity), true); + RaiseLocalEvent(uid, new TriggerEvent(uid, collidingEntity), true); triggerOnTimedCollide.Colliding[collidingEntity] -= triggerOnTimedCollide.Threshold; } } diff --git a/Content.Server/Extinguisher/FireExtinguisherComponent.cs b/Content.Server/Extinguisher/FireExtinguisherComponent.cs deleted file mode 100644 index 991fc76c62e3..000000000000 --- a/Content.Server/Extinguisher/FireExtinguisherComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Extinguisher; -using Robust.Shared.GameStates; - -namespace Content.Server.Extinguisher; - -[RegisterComponent] -[Access(typeof(FireExtinguisherSystem))] -public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent -{ -} diff --git a/Content.Server/Extinguisher/FireExtinguisherSystem.cs b/Content.Server/Extinguisher/FireExtinguisherSystem.cs deleted file mode 100644 index b33a1af157fd..000000000000 --- a/Content.Server/Extinguisher/FireExtinguisherSystem.cs +++ /dev/null @@ -1,139 +0,0 @@ -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Fluids.EntitySystems; -using Content.Server.Popups; -using Content.Shared.Chemistry.Components; -using Content.Shared.Extinguisher; -using Content.Shared.FixedPoint; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Verbs; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; - -namespace Content.Server.Extinguisher; - -public sealed class FireExtinguisherSystem : EntitySystem -{ - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnFireExtinguisherInit); - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnAfterInteract); - SubscribeLocalEvent>(OnGetInteractionVerbs); - SubscribeLocalEvent(OnSprayAttempt); - } - - private void OnFireExtinguisherInit(Entity entity, ref ComponentInit args) - { - if (entity.Comp.HasSafety) - { - UpdateAppearance((entity.Owner, entity.Comp)); - } - } - - private void OnUseInHand(Entity entity, ref UseInHandEvent args) - { - if (args.Handled) - return; - - ToggleSafety((entity.Owner, entity.Comp), args.User); - - args.Handled = true; - } - - private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Target == null || !args.CanReach) - { - return; - } - - if (args.Handled) - return; - - if (entity.Comp.HasSafety && entity.Comp.Safety) - { - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-safety-on-message"), entity.Owner, args.User); - return; - } - - if (args.Target is not { Valid: true } target || - !_solutionContainerSystem.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) || - !_solutionContainerSystem.TryGetRefillableSolution(entity.Owner, out var containerSoln, out var containerSolution)) - { - return; - } - - args.Handled = true; - - // TODO: why is this copy paste shit here just have fire extinguisher cancel transfer when safety is on - var transfer = containerSolution.AvailableVolume; - if (TryComp(entity.Owner, out var solTrans)) - { - transfer = solTrans.TransferAmount; - } - transfer = FixedPoint2.Min(transfer, targetSolution.Volume); - - if (transfer > 0) - { - var drained = _solutionContainerSystem.Drain(target, targetSoln.Value, transfer); - _solutionContainerSystem.TryAddSolution(containerSoln.Value, drained); - - _audio.PlayPvs(entity.Comp.RefillSound, entity.Owner); - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-after-interact-refilled-message", ("owner", entity.Owner)), - entity.Owner, args.Target.Value); - } - } - - private void OnGetInteractionVerbs(Entity entity, ref GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var user = args.User; - var verb = new InteractionVerb - { - Act = () => ToggleSafety((entity.Owner, entity.Comp), user), - Text = Loc.GetString("fire-extinguisher-component-verb-text"), - }; - - args.Verbs.Add(verb); - } - - private void OnSprayAttempt(Entity entity, ref SprayAttemptEvent args) - { - if (entity.Comp.HasSafety && entity.Comp.Safety) - { - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-safety-on-message"), entity, args.User); - args.Cancel(); - } - } - - private void UpdateAppearance(Entity entity) - { - if (!Resolve(entity, ref entity.Comp2, false)) - return; - - if (entity.Comp1.HasSafety) - { - _appearance.SetData(entity, FireExtinguisherVisuals.Safety, entity.Comp1.Safety, entity.Comp2); - } - } - - public void ToggleSafety(Entity extinguisher, EntityUid user) - { - if (!Resolve(extinguisher, ref extinguisher.Comp)) - return; - - extinguisher.Comp.Safety = !extinguisher.Comp.Safety; - _audio.PlayPvs(extinguisher.Comp.SafetySound, extinguisher, AudioParams.Default.WithVariation(0.125f).WithVolume(-4f)); - UpdateAppearance((extinguisher.Owner, extinguisher.Comp)); - } -} diff --git a/Content.Server/Fax/AdminUI/AdminFaxEui.cs b/Content.Server/Fax/AdminUI/AdminFaxEui.cs index 452fc593d957..fe6b03fab7ba 100644 --- a/Content.Server/Fax/AdminUI/AdminFaxEui.cs +++ b/Content.Server/Fax/AdminUI/AdminFaxEui.cs @@ -1,3 +1,4 @@ +using Content.Server.Construction.Conditions; using Content.Server.DeviceNetwork.Components; using Content.Server.EUI; using Content.Shared.Eui; @@ -56,7 +57,8 @@ public override void HandleMessage(EuiMessageBase msg) case AdminFaxEuiMsg.Send sendData: { var printout = new FaxPrintout(sendData.Content, sendData.Title, null, null, sendData.StampState, - new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } }); + new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } }, + locked: sendData.Locked); _faxSystem.Receive(_entityManager.GetEntity(sendData.Target), printout); break; } diff --git a/Content.Server/Fax/FaxConstants.cs b/Content.Server/Fax/FaxConstants.cs index 24ed7cbcf32f..4b0ff7853eb0 100644 --- a/Content.Server/Fax/FaxConstants.cs +++ b/Content.Server/Fax/FaxConstants.cs @@ -29,4 +29,5 @@ public static class FaxConstants public const string FaxPaperStampStateData = "fax_data_stamp_state"; public const string FaxPaperStampedByData = "fax_data_stamped_by"; public const string FaxSyndicateData = "fax_data_i_am_syndicate"; + public const string FaxPaperLockedData = "fax_data_locked"; } diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index 82acb3c60c36..2b059b4b802f 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -300,8 +300,9 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi args.Data.TryGetValue(FaxConstants.FaxPaperStampStateData, out string? stampState); args.Data.TryGetValue(FaxConstants.FaxPaperStampedByData, out List? stampedBy); args.Data.TryGetValue(FaxConstants.FaxPaperPrototypeData, out string? prototypeId); + args.Data.TryGetValue(FaxConstants.FaxPaperLockedData, out bool? locked); - var printout = new FaxPrintout(content, name, label, prototypeId, stampState, stampedBy); + var printout = new FaxPrintout(content, name, label, prototypeId, stampState, stampedBy, locked ?? false); Receive(uid, printout, args.SenderAddress); break; @@ -473,7 +474,8 @@ public void Copy(EntityUid uid, FaxMachineComponent? component, FaxCopyMessage a labelComponent?.CurrentLabel, metadata.EntityPrototype?.ID ?? DefaultPaperPrototypeId, paper.StampState, - paper.StampedBy); + paper.StampedBy, + paper.EditingDisabled); component.PrintingQueue.Enqueue(printout); component.SendTimeoutRemaining += component.SendTimeout; @@ -522,6 +524,7 @@ public void Send(EntityUid uid, FaxMachineComponent? component, FaxSendMessage a { FaxConstants.FaxPaperNameData, nameMod?.BaseName ?? metadata.EntityName }, { FaxConstants.FaxPaperLabelData, labelComponent?.CurrentLabel }, { FaxConstants.FaxPaperContentData, paper.Content }, + { FaxConstants.FaxPaperLockedData, paper.EditingDisabled }, }; if (metadata.EntityPrototype != null) @@ -598,6 +601,8 @@ private void SpawnPaperFromQueue(EntityUid uid, FaxMachineComponent? component = _paperSystem.TryStamp(printed, stamp, printout.StampState); } } + + paper.EditingDisabled = printout.Locked; } _metaData.SetEntityName(printed, printout.Name); diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index 5499070738f6..215ed7c33ff5 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -1,11 +1,11 @@ using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Containers.EntitySystems; using Content.Server.Chemistry.EntitySystems; -using Content.Server.Extinguisher; using Content.Server.Fluids.Components; using Content.Server.Gravity; using Content.Server.Popups; using Content.Shared.FixedPoint; +using Content.Shared.Fluids; using Content.Shared.Interaction; using Content.Shared.Timing; using Content.Shared.Vapor; @@ -34,7 +34,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAfterInteract, after: new[] { typeof(FireExtinguisherSystem) }); + SubscribeLocalEvent(OnAfterInteract); } private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) @@ -48,7 +48,7 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve return; var ev = new SprayAttemptEvent(args.User); - RaiseLocalEvent(entity, ev); + RaiseLocalEvent(entity, ref ev); if (ev.Cancelled) return; @@ -148,13 +148,3 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve _useDelay.TryResetDelay((entity, useDelay)); } } - -public sealed class SprayAttemptEvent : CancellableEntityEventArgs -{ - public EntityUid User; - - public SprayAttemptEvent(EntityUid user) - { - User = user; - } -} diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 6e297789528d..5a2b375dd68c 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -226,7 +226,7 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma return false; } - if (HasComp(playerEntity)) + if (TryComp(playerEntity, out var comp) && !comp.CanGhostInteract) return false; if (mind.VisitingEntity != default) diff --git a/Content.Server/GameTicking/GameTicker.GameRule.cs b/Content.Server/GameTicking/GameTicker.GameRule.cs index 2a33d01bd09e..c10f3023471e 100644 --- a/Content.Server/GameTicking/GameTicker.GameRule.cs +++ b/Content.Server/GameTicking/GameTicker.GameRule.cs @@ -324,6 +324,13 @@ private void AddGameRuleCommand(IConsoleShell shell, string argstr, string[] arg foreach (var rule in args) { + if (!_prototypeManager.HasIndex(rule)) + { + shell.WriteError($"Invalid game rule {rule} was skipped."); + + continue; + } + if (shell.Player != null) { _adminLogger.Add(LogType.EventStarted, $"{shell.Player} tried to add game rule [{rule}] via command"); diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index c957e0eb96f4..ca087c46ed41 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -171,7 +171,7 @@ public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMa var gridIds = _map.LoadMap(targetMapId, ev.GameMap.MapPath.ToString(), ev.Options); - _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), $"station map - {map.MapName}"); + _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), map.MapName); var gridUids = gridIds.ToList(); RaiseLocalEvent(new PostGameMapLoad(map, targetMapId, gridUids, stationName)); diff --git a/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs deleted file mode 100644 index fa352eb320bd..000000000000 --- a/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Ninja.Systems; -using Content.Shared.Communications; -using Content.Shared.Random; -using Robust.Shared.Audio; -using Robust.Shared.Prototypes; - -namespace Content.Server.GameTicking.Rules.Components; - -/// -/// Stores some configuration used by the ninja system. -/// Objectives and roundend summary are handled by . -/// -[RegisterComponent, Access(typeof(SpaceNinjaSystem))] -public sealed partial class NinjaRuleComponent : Component -{ - /// - /// List of threats that can be called in. Copied onto when gloves are enabled. - /// - [DataField(required: true)] - public ProtoId Threats = string.Empty; - - /// - /// Sound played when making the player a ninja via antag control or ghost role - /// - [DataField] - public SoundSpecifier? GreetingSound = new SoundPathSpecifier("/Audio/Misc/ninja_greeting.ogg"); -} diff --git a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs index 3594242bcdee..d2686ecdcdd4 100644 --- a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs @@ -13,7 +13,6 @@ public sealed class LoadMapRuleSystem : GameRuleSystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly MapSystem _map = default!; [Dependency] private readonly MapLoaderSystem _mapLoader = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly GridPreloaderSystem _gridPreloader = default!; diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 2a67e62e3fb1..5f49557bed85 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -483,7 +483,7 @@ private void OnAfterAntagEntSelected(Entity ent, ref After if (!Resolve(ent, ref ent.Comp, false)) return null; - return ent.Comp.MapGrids.Where(e => HasComp(e) && !HasComp(e)).FirstOrNull(); + return ent.Comp.MapGrids.Where(e => !HasComp(e)).FirstOrNull(); } /// diff --git a/Content.Server/GameTicking/Rules/SecretRuleSystem.cs b/Content.Server/GameTicking/Rules/SecretRuleSystem.cs index 8608f250d486..e82cecde3683 100644 --- a/Content.Server/GameTicking/Rules/SecretRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/SecretRuleSystem.cs @@ -21,7 +21,6 @@ public sealed class SecretRuleSystem : GameRuleSystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IComponentFactory _compFact = default!; private string _ruleCompName = default!; diff --git a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs index faec4a9e9ca2..074b4c0df7a0 100644 --- a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs @@ -12,10 +12,8 @@ namespace Content.Server.GameTicking.Rules; public sealed class ThiefRuleSystem : GameRuleSystem { - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!; - [Dependency] private readonly ObjectivesSystem _objectives = default!; public override void Initialize() { diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 17442da85770..a96020d0e3a7 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -29,7 +29,6 @@ public sealed class TraitorRuleSystem : GameRuleSystem [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly SharedRoleSystem _roleSystem = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; - [Dependency] private readonly ObjectivesSystem _objectives = default!; public override void Initialize() { diff --git a/Content.Server/Geras/GerasComponent.cs b/Content.Server/Geras/GerasComponent.cs index eaf792502f4f..df1fccd71852 100644 --- a/Content.Server/Geras/GerasComponent.cs +++ b/Content.Server/Geras/GerasComponent.cs @@ -12,7 +12,7 @@ public sealed partial class GerasComponent : Component { [DataField] public ProtoId GerasPolymorphId = "SlimeMorphGeras"; - [DataField] public ProtoId GerasAction = "ActionMorphGeras"; + [DataField] public EntProtoId GerasAction = "ActionMorphGeras"; [DataField] public EntityUid? GerasActionEntity; } diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index b6627f11540f..8b8aa7b8c8fc 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -3,7 +3,6 @@ using Content.Server.EUI; using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; -using Content.Server.Ghost.Roles.Raffles; using Content.Shared.Ghost.Roles.Raffles; using Content.Server.Ghost.Roles.UI; using Content.Server.Mind.Commands; @@ -31,6 +30,7 @@ using Content.Server.Popups; using Content.Shared.Verbs; using Robust.Shared.Collections; +using Content.Shared.Ghost.Roles.Components; namespace Content.Server.Ghost.Roles { @@ -80,6 +80,7 @@ public override void Initialize() SubscribeLocalEvent(OnSpawnerTakeRole); SubscribeLocalEvent(OnTakeoverTakeRole); SubscribeLocalEvent>(OnVerb); + SubscribeLocalEvent(OnGhostRoleRadioMessage); _playerManager.PlayerStatusChanged += PlayerStatusChanged; } @@ -786,6 +787,21 @@ public void SetMode(EntityUid uid, GhostRolePrototype prototype, string verbText _popupSystem.PopupEntity(msg, uid, userUid.Value); } } + + public void OnGhostRoleRadioMessage(Entity entity, ref GhostRoleRadioMessage args) + { + if (!_prototype.TryIndex(args.ProtoId, out var ghostRoleProto)) + return; + + // if the prototype chosen isn't actually part of the selectable options, ignore it + foreach (var selectableProto in entity.Comp.SelectablePrototypes) + { + if (selectableProto == ghostRoleProto.EntityPrototype.Id) + return; + } + + SetMode(entity.Owner, ghostRoleProto, ghostRoleProto.Name, entity.Comp); + } } [AnyCommand] diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index 203882ed9ef0..ae4d0ca2b8ca 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -325,7 +325,7 @@ private void CheckGuardianMove( if (!guardianComponent.GuardianLoose) return; - if (!guardianXform.Coordinates.InRange(EntityManager, _transform, hostXform.Coordinates, guardianComponent.DistanceAllowed)) + if (!_transform.InRange(guardianXform.Coordinates, hostXform.Coordinates, guardianComponent.DistanceAllowed)) RetractGuardian(hostUid, hostComponent, guardianUid, guardianComponent); } diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index e2bb991318ff..12c2a396dedc 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -170,7 +170,7 @@ private void HandlePullStopped(EntityUid uid, HandsComponent component, PullStop private bool HandleThrowItem(ICommonSession? playerSession, EntityCoordinates coordinates, EntityUid entity) { - if (playerSession?.AttachedEntity is not {Valid: true} player || !Exists(player)) + if (playerSession?.AttachedEntity is not {Valid: true} player || !Exists(player) || !coordinates.IsValid(EntityManager)) return false; return ThrowHeldItem(player, coordinates); diff --git a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs index ee542572d7e0..4603f45ed81c 100644 --- a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs +++ b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs @@ -95,7 +95,7 @@ private void BuildIndex() foreach (var proto in _prototype.EnumeratePrototypes()) { - if (proto.Abstract || proto.NoSpawn || proto.Components.ContainsKey(mapGridCompName) || !proto.Components.ContainsKey(physicsCompName)) + if (proto.Abstract || proto.HideSpawnMenu || proto.Components.ContainsKey(mapGridCompName) || !proto.Components.ContainsKey(physicsCompName)) continue; _possibleGiftsUnsafe.Add(proto.ID); diff --git a/Content.Server/IconSmoothing/RandomIconSmoothSystem.cs b/Content.Server/IconSmoothing/RandomIconSmoothSystem.cs new file mode 100644 index 000000000000..4ddfb17ac842 --- /dev/null +++ b/Content.Server/IconSmoothing/RandomIconSmoothSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.IconSmoothing; +using Robust.Shared.Random; + +namespace Content.Server.IconSmoothing; + +public sealed partial class RandomIconSmoothSystem : SharedRandomIconSmoothSystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (ent.Comp.RandomStates.Count == 0) + return; + + var state = _random.Pick(ent.Comp.RandomStates); + _appearance.SetData(ent, RandomIconSmoothState.State, state); + } +} diff --git a/Content.Server/Instruments/InstrumentSystem.cs b/Content.Server/Instruments/InstrumentSystem.cs index 582bf7fa67b1..f74dd7fb131d 100644 --- a/Content.Server/Instruments/InstrumentSystem.cs +++ b/Content.Server/Instruments/InstrumentSystem.cs @@ -30,7 +30,6 @@ public sealed partial class InstrumentSystem : SharedInstrumentSystem [Dependency] private readonly UserInterfaceSystem _bui = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly InteractionSystem _interactions = default!; [Dependency] private readonly ExamineSystemShared _examineSystem = default!; private const float MaxInstrumentBandRange = 10f; @@ -402,7 +401,8 @@ public override void Update(float frameTime) var trans = transformQuery.GetComponent(uid); var masterTrans = transformQuery.GetComponent(master); - if (!masterTrans.Coordinates.InRange(EntityManager, _transform, trans.Coordinates, 10f)) + if (!_transform.InRange(masterTrans.Coordinates, trans.Coordinates, 10f) +) { Clean(uid, instrument); } diff --git a/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs b/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs deleted file mode 100644 index 30fa84ed90b0..000000000000 --- a/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Content.Server.Item; - -/// -/// Handles whether this item applies a disarm malus when active. -/// -[RegisterComponent] -public sealed partial class ItemToggleDisarmMalusComponent : Component -{ - /// - /// Item has this modifier to the chance to disarm when activated. - /// If null, the value will be inferred from the current malus just before the malus is first deactivated. - /// - [ViewVariables(VVAccess.ReadOnly), DataField] - public float? ActivatedDisarmMalus = null; - - /// - /// Item has this modifier to the chance to disarm when deactivated. If none is mentioned, it uses the item's default disarm modifier. - /// If null, the value will be inferred from the current malus just before the malus is first activated. - /// - [ViewVariables(VVAccess.ReadOnly), DataField] - public float? DeactivatedDisarmMalus = null; -} diff --git a/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs b/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs deleted file mode 100644 index 227491b16c2e..000000000000 --- a/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.Item; - -/// -/// Handles whether this item is sharp when toggled on. -/// -[RegisterComponent] -public sealed partial class ItemToggleSharpComponent : Component -{ -} diff --git a/Content.Server/Item/ItemToggle/ItemToggleSystem.cs b/Content.Server/Item/ItemToggle/ItemToggleSystem.cs deleted file mode 100644 index f98415eb08fb..000000000000 --- a/Content.Server/Item/ItemToggle/ItemToggleSystem.cs +++ /dev/null @@ -1,44 +0,0 @@ -using Content.Server.CombatMode.Disarm; -using Content.Server.Kitchen.Components; -using Content.Shared.Item.ItemToggle; -using Content.Shared.Item.ItemToggle.Components; - -namespace Content.Server.Item; - -public sealed class ItemToggleSystem : SharedItemToggleSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(ToggleSharp); - SubscribeLocalEvent(ToggleMalus); - } - - private void ToggleSharp(Entity ent, ref ItemToggledEvent args) - { - // TODO generalize this into a "ToggleComponentComponent", though probably with a better name - if (args.Activated) - EnsureComp(ent); - else - RemCompDeferred(ent); - } - - private void ToggleMalus(Entity ent, ref ItemToggledEvent args) - { - if (!TryComp(ent, out var malus)) - return; - - if (args.Activated) - { - ent.Comp.DeactivatedDisarmMalus ??= malus.Malus; - if (ent.Comp.ActivatedDisarmMalus is {} activatedMalus) - malus.Malus = activatedMalus; - return; - } - - ent.Comp.ActivatedDisarmMalus ??= malus.Malus; - if (ent.Comp.DeactivatedDisarmMalus is {} deactivatedMalus) - malus.Malus = deactivatedMalus; - } -} diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 1d26f68cae89..5337d80fd17b 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -79,6 +79,9 @@ public sealed partial class MicrowaveComponent : Component public Container Storage = default!; + [DataField] + public string ContainerId = "microwave_entity_container"; + [DataField, ViewVariables(VVAccess.ReadWrite)] public int Capacity = 10; diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index eefa539149b0..98c875e77352 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -79,6 +79,7 @@ public override void Initialize() SubscribeLocalEvent(OnContentUpdate); SubscribeLocalEvent(OnContentUpdate); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(AnchorableSystem) }); + SubscribeLocalEvent(OnInsertAttempt); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnAnchorChanged); @@ -251,7 +252,7 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype private void OnInit(Entity ent, ref ComponentInit args) { // this really does have to be in ComponentInit - ent.Comp.Storage = _container.EnsureContainer(ent, "microwave_entity_container"); + ent.Comp.Storage = _container.EnsureContainer(ent, ent.Comp.ContainerId); } private void OnMapInit(Entity ent, ref MapInitEvent args) @@ -309,6 +310,35 @@ private void OnContentUpdate(EntityUid uid, MicrowaveComponent component, Contai UpdateUserInterfaceState(uid, component); } + private void OnInsertAttempt(Entity ent, ref ContainerIsInsertingAttemptEvent args) + { + if (args.Container.ID != ent.Comp.ContainerId) + return; + + if (ent.Comp.Broken) + { + args.Cancel(); + return; + } + + if (TryComp(args.EntityUid, out var item)) + { + if (_item.GetSizePrototype(item.Size) > _item.GetSizePrototype(ent.Comp.MaxItemSize)) + { + args.Cancel(); + return; + } + } + else + { + args.Cancel(); + return; + } + + if (ent.Comp.Storage.Count >= ent.Comp.Capacity) + args.Cancel(); + } + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { if (args.Handled) diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index f2c4c7dcc59e..156088ea072e 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -70,7 +70,7 @@ private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component args.PushMarkup( Loc.GetString("emergency-light-component-on-examine-alert", ("color", color.ToHex()), - ("level", name))); + ("level", Loc.GetString($"alert-level-{name.ToString().ToLower()}")))); } } @@ -234,6 +234,6 @@ private void TurnOn(Entity entity, Color color) _pointLight.SetColor(entity.Owner, color); _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); - _ambient.SetAmbience(entity.Owner, true); + _ambient.SetAmbience(entity.Owner, true); } } diff --git a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs index 6380b71c8a0b..de40e98e1822 100644 --- a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs +++ b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs @@ -6,6 +6,9 @@ namespace Content.Server.Medical.Components; /// /// After scanning, retrieves the target Uid to use with its related UI. /// +/// +/// Requires ItemToggleComponent. +/// [RegisterComponent, AutoGenerateComponentPause] [Access(typeof(HealthAnalyzerSystem), typeof(CryoPodSystem))] public sealed partial class HealthAnalyzerComponent : Component diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs index 864ce2c55ec8..d7b8cc67a50e 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.Medical.SuitSensors; diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 4373532f0186..b6b50d4215f5 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Interaction; using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Medical; using Content.Shared.Mind; using Content.Shared.Mobs; @@ -37,6 +38,7 @@ public sealed class DefibrillatorSystem : EntitySystem [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly ElectrocutionSystem _electrocution = default!; [Dependency] private readonly EuiManager _euiManager = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly RottingSystem _rotting = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; @@ -44,36 +46,15 @@ public sealed class DefibrillatorSystem : EntitySystem [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly UseDelaySystem _useDelay = default!; [Dependency] private readonly SharedMindSystem _mind = default!; /// public override void Initialize() { - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); } - private void OnUseInHand(EntityUid uid, DefibrillatorComponent component, UseInHandEvent args) - { - if (args.Handled || !TryComp(uid, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((uid, useDelay))) - return; - - if (!TryToggle(uid, component, args.User)) - return; - - args.Handled = true; - _useDelay.TryResetDelay((uid, useDelay)); - } - - private void OnPowerCellSlotEmpty(EntityUid uid, DefibrillatorComponent component, ref PowerCellSlotEmptyEvent args) - { - if (!TerminatingOrDeleted(uid)) - TryDisable(uid, component); - } - private void OnAfterInteract(EntityUid uid, DefibrillatorComponent component, AfterInteractEvent args) { if (args.Handled || args.Target is not { } target) @@ -96,54 +77,12 @@ private void OnDoAfter(EntityUid uid, DefibrillatorComponent component, Defibril Zap(uid, target, args.User, component); } - public bool TryToggle(EntityUid uid, DefibrillatorComponent? component = null, EntityUid? user = null) - { - if (!Resolve(uid, ref component)) - return false; - - return component.Enabled - ? TryDisable(uid, component) - : TryEnable(uid, component, user); - } - - public bool TryEnable(EntityUid uid, DefibrillatorComponent? component = null, EntityUid? user = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (component.Enabled) - return false; - - if (!_powerCell.HasActivatableCharge(uid)) - return false; - - component.Enabled = true; - _appearance.SetData(uid, ToggleVisuals.Toggled, true); - _audio.PlayPvs(component.PowerOnSound, uid); - return true; - } - - public bool TryDisable(EntityUid uid, DefibrillatorComponent? component = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (!component.Enabled) - return false; - - component.Enabled = false; - _appearance.SetData(uid, ToggleVisuals.Toggled, false); - - _audio.PlayPvs(component.PowerOffSound, uid); - return true; - } - public bool CanZap(EntityUid uid, EntityUid target, EntityUid? user = null, DefibrillatorComponent? component = null) { if (!Resolve(uid, ref component)) return false; - if (!component.Enabled) + if (!_toggle.IsActivated(uid)) { if (user != null) _popup.PopupEntity(Loc.GetString("defibrillator-not-on"), uid, user.Value); @@ -257,7 +196,7 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo // if we don't have enough power left for another shot, turn it off if (!_powerCell.HasActivatableCharge(uid)) - TryDisable(uid, component); + _toggle.TryDeactivate(uid); // TODO clean up this clown show above var ev = new TargetDefibrillatedEvent(user, (uid, component)); diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index ed33e60dac48..52d6a3fafa76 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -10,12 +10,14 @@ using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Medical; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; using Content.Shared.Stacks; using Robust.Shared.Audio.Systems; using Robust.Shared.Random; @@ -188,6 +190,12 @@ targetDamage.DamageContainerID is not null && var isNotSelf = user != target; + if (isNotSelf) + { + var msg = Loc.GetString("medical-item-popup-target", ("user", Identity.Entity(user, EntityManager)), ("item", uid)); + _popupSystem.PopupEntity(msg, target, target, PopupType.Medium); + } + var delay = isNotSelf ? component.Delay : component.Delay * GetScaledHealingPenalty(user, component); diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 7282ea197c98..98f4f00d8999 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -5,10 +5,14 @@ using Content.Server.Temperature.Components; using Content.Shared.Damage; using Content.Shared.DoAfter; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.MedicalScanner; using Content.Shared.Mobs.Components; +using Content.Shared.Popups; using Content.Shared.PowerCell; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; @@ -24,16 +28,18 @@ public sealed class HealthAnalyzerSystem : EntitySystem [Dependency] private readonly PowerCellSystem _cell = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; public override void Initialize() { SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnInsertedIntoContainer); - SubscribeLocalEvent(OnPowerCellSlotEmpty); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnDropped); } @@ -59,7 +65,7 @@ public override void Update(float frameTime) //Get distance between health analyzer and the scanned entity var patientCoordinates = Transform(patient).Coordinates; - if (!patientCoordinates.InRange(EntityManager, _transformSystem, transform.Coordinates, component.MaxScanRange)) + if (!_transformSystem.InRange(patientCoordinates, transform.Coordinates, component.MaxScanRange)) { //Range too far, disable updates StopAnalyzingEntity((uid, component), patient); @@ -85,6 +91,9 @@ private void OnAfterInteract(Entity uid, ref AfterInter NeedHand = true, BreakOnMove = true }); + + var msg = Loc.GetString("health-analyzer-popup-scan-target", ("user", Identity.Entity(args.User, EntityManager))); + _popupSystem.PopupEntity(msg, args.Target.Value, args.Target.Value, PopupType.Medium); } private void OnDoAfter(Entity uid, ref HealthAnalyzerDoAfterEvent args) @@ -105,16 +114,16 @@ private void OnDoAfter(Entity uid, ref HealthAnalyzerDo private void OnInsertedIntoContainer(Entity uid, ref EntGotInsertedIntoContainerMessage args) { if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + _toggle.TryDeactivate(uid.Owner); } /// - /// Disable continuous updates once battery is dead + /// Disable continuous updates once turned off /// - private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + if (!args.Activated && ent.Comp.ScannedEntity is { } patient) + StopAnalyzingEntity(ent, patient); } /// @@ -123,7 +132,7 @@ private void OnPowerCellSlotEmpty(Entity uid, ref Power private void OnDropped(Entity uid, ref DroppedEvent args) { if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + _toggle.TryDeactivate(uid.Owner); } private void OpenUserInterface(EntityUid user, EntityUid analyzer) @@ -144,7 +153,7 @@ private void BeginAnalyzingEntity(Entity healthAnalyzer //Link the health analyzer to the scanned entity healthAnalyzer.Comp.ScannedEntity = target; - _cell.SetPowerCellDrawEnabled(healthAnalyzer, true); + _toggle.TryActivate(healthAnalyzer.Owner); UpdateScannedUser(healthAnalyzer, target, true); } @@ -159,7 +168,7 @@ private void StopAnalyzingEntity(Entity healthAnalyzer, //Unlink the analyzer healthAnalyzer.Comp.ScannedEntity = null; - _cell.SetPowerCellDrawEnabled(target, false); + _toggle.TryDeactivate(healthAnalyzer.Owner); UpdateScannedUser(healthAnalyzer, target, false); } diff --git a/Content.Server/Movement/Systems/PullController.cs b/Content.Server/Movement/Systems/PullController.cs index 340dc5654e86..4bd4b603714f 100644 --- a/Content.Server/Movement/Systems/PullController.cs +++ b/Content.Server/Movement/Systems/PullController.cs @@ -58,6 +58,7 @@ public sealed class PullController : VirtualController [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// /// If distance between puller and pulled entity lower that this threshold, @@ -133,8 +134,8 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate var range = 2f; var fromUserCoords = coords.WithEntityId(player, EntityManager); var userCoords = new EntityCoordinates(player, Vector2.Zero); - - if (!coords.InRange(EntityManager, TransformSystem, userCoords, range)) + + if (!_transformSystem.InRange(coords, userCoords, range)) { var direction = fromUserCoords.Position - userCoords.Position; diff --git a/Content.Server/NPC/HTN/HTNPlanJob.cs b/Content.Server/NPC/HTN/HTNPlanJob.cs index d6d10ad311f7..8158303524a6 100644 --- a/Content.Server/NPC/HTN/HTNPlanJob.cs +++ b/Content.Server/NPC/HTN/HTNPlanJob.cs @@ -160,9 +160,9 @@ private bool TryFindSatisfiedMethod(HTNCompoundTask compoundId, Queue t { var compound = _protoManager.Index(compoundId.Task); - for (var i = mtrIndex; i < compound.Branches.Count; i++) + for (; mtrIndex < compound.Branches.Count; mtrIndex++) { - var branch = compound.Branches[i]; + var branch = compound.Branches[mtrIndex]; var isValid = true; foreach (var con in branch.Preconditions) diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs index 3485bd2a18c3..452bf327f253 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs @@ -8,12 +8,19 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class CoordinatesInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } + public override bool IsMet(NPCBlackboard blackboard) { if (!blackboard.TryGetValue(NPCBlackboard.OwnerCoordinates, out var coordinates, _entManager)) @@ -22,6 +29,6 @@ public override bool IsMet(NPCBlackboard blackboard) if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) return false; - return coordinates.InRange(_entManager, _entManager.System(), target, blackboard.GetValueOrDefault(RangeKey, _entManager)); + return _transformSystem.InRange(coordinates, target, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs index 9d000ca2eb84..901831679e8a 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs @@ -8,12 +8,19 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class CoordinatesNotInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } + public override bool IsMet(NPCBlackboard blackboard) { if (!blackboard.TryGetValue(NPCBlackboard.OwnerCoordinates, out var coordinates, _entManager)) @@ -22,7 +29,7 @@ public override bool IsMet(NPCBlackboard blackboard) if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) return false; - return !coordinates.InRange(_entManager, _entManager.System(), target, blackboard.GetValueOrDefault(RangeKey, _entManager)); + return !_transformSystem.InRange(coordinates, target, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs index aaccb426d714..921b5ffa2263 100644 --- a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs @@ -8,11 +8,17 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class TargetInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } public override bool IsMet(NPCBlackboard blackboard) { @@ -23,6 +29,7 @@ public override bool IsMet(NPCBlackboard blackboard) !_entManager.TryGetComponent(target, out var targetXform)) return false; - return coordinates.InRange(_entManager, _entManager.System(), targetXform.Coordinates, blackboard.GetValueOrDefault(RangeKey, _entManager)); + var transformSystem = _entManager.System; + return _transformSystem.InRange(coordinates, targetXform.Coordinates, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs index 32be027ec43f..5a02b86201be 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs @@ -89,7 +89,8 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi HTNOperatorStatus status; if (_entManager.TryGetComponent(owner, out var combat) && - blackboard.TryGetValue(TargetKey, out var target, _entManager)) + blackboard.TryGetValue(TargetKey, out var target, _entManager) && + target != EntityUid.Invalid) { combat.Target = target; diff --git a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs index d4e8a277ea69..cc9c6df83f37 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs @@ -1,6 +1,16 @@ +using Content.Shared.Mobs; + namespace Content.Server.NPC.Queries.Considerations; +/// +/// Goes linearly from 1f to 0f, with 0 damage returning 1f and damage returning 0f +/// public sealed partial class TargetHealthCon : UtilityConsideration { + /// + /// Which MobState the consideration returns 0f at, defaults to choosing earliest incapacitating MobState + /// + [DataField("targetState")] + public MobState TargetState = MobState.Invalid; } diff --git a/Content.Server/NPC/Queries/Queries/RemoveAnchored.cs b/Content.Server/NPC/Queries/Queries/RemoveAnchored.cs new file mode 100644 index 000000000000..ef9fa2057f6e --- /dev/null +++ b/Content.Server/NPC/Queries/Queries/RemoveAnchored.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.NPC.Queries.Queries; + +/// +/// Remove anchored entities from the query +/// +public sealed partial class RemoveAnchoredFilter : UtilityQueryFilter +{ + +} diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs index 10ec54c89544..d7196ea73c71 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs @@ -1,7 +1,6 @@ using Content.Server.NPC.Components; using Content.Shared.CombatMode; using Content.Shared.Interaction; -using Content.Shared.Physics; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Map; @@ -134,7 +133,7 @@ private void UpdateRanged(float frameTime) { comp.LOSAccumulator += UnoccludedCooldown; // For consistency with NPC steering. - comp.TargetInLOS = _interaction.InRangeUnobstructed(uid, Transform(comp.Target).Coordinates, distance + 0.1f); + comp.TargetInLOS = _interaction.InRangeUnobstructed(uid, comp.Target, distance + 0.1f); } if (!comp.TargetInLOS) diff --git a/Content.Server/NPC/Systems/NPCJukeSystem.cs b/Content.Server/NPC/Systems/NPCJukeSystem.cs index da9fa1f7615f..94a30feb0cb2 100644 --- a/Content.Server/NPC/Systems/NPCJukeSystem.cs +++ b/Content.Server/NPC/Systems/NPCJukeSystem.cs @@ -143,6 +143,9 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt if (!_melee.TryGetWeapon(uid, out var weaponUid, out var weapon)) return; + if (!HasComp(melee.Target)) + return; + var cdRemaining = weapon.NextAttack - _timing.CurTime; var attackCooldown = TimeSpan.FromSeconds(1f / _melee.GetAttackRate(weaponUid, uid, weapon)); diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index ca74d7133574..5e1823227a89 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -7,10 +7,13 @@ using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Storage.Components; +using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Fluids.Components; using Content.Shared.Hands.Components; using Content.Shared.Inventory; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.Components; @@ -48,6 +51,7 @@ public sealed class NPCUtilitySystem : EntitySystem [Dependency] private readonly WeldableSystem _weldable = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly MobThresholdSystem _thresholdSystem = default!; private EntityQuery _puddleQuery; private EntityQuery _xformQuery; @@ -293,8 +297,14 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon return (float) ev.Count / ev.Capacity; } - case TargetHealthCon: + case TargetHealthCon con: { + if (!TryComp(targetUid, out DamageableComponent? damage)) + return 0f; + if (con.TargetState != MobState.Invalid && _thresholdSystem.TryGetPercentageForState(targetUid, con.TargetState, damage.TotalDamage, out var percentage)) + return Math.Clamp((float)(1 - percentage), 0f, 1f); + if (_thresholdSystem.TryGetIncapPercentage(targetUid, damage.TotalDamage, out var incapPercentage)) + return Math.Clamp((float)(1 - incapPercentage), 0f, 1f); return 0f; } case TargetInLOSCon: @@ -489,6 +499,26 @@ private void Filter(NPCBlackboard blackboard, HashSet entities, Utili break; } + case RemoveAnchoredFilter: + { + _entityList.Clear(); + + foreach (var ent in entities) + { + if (!TryComp(ent, out TransformComponent? xform)) + continue; + + if (xform.Anchored) + _entityList.Add(ent); + } + + foreach (var ent in _entityList) + { + entities.Remove(ent); + } + + break; + } case PuddleFilter: { _entityList.Clear(); diff --git a/Content.Server/Ninja/Events/BatteryChangedEvent.cs b/Content.Server/Ninja/Events/BatteryChangedEvent.cs index 45bfedfee765..1848e8818687 100644 --- a/Content.Server/Ninja/Events/BatteryChangedEvent.cs +++ b/Content.Server/Ninja/Events/BatteryChangedEvent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Ninja.Events; /// -/// Raised on the ninja when the suit has its powercell changed. +/// Raised on the ninja and suit when the suit has its powercell changed. /// [ByRefEvent] public record struct NinjaBatteryChangedEvent(EntityUid Battery, EntityUid BatteryHolder); diff --git a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs index 59dec556fa0b..4baf0913cecd 100644 --- a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs +++ b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs @@ -33,16 +33,17 @@ public override void Initialize() /// Start do after for draining a power source. /// Can't predict PNBC existing so only done on server. /// - private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { + var (uid, comp) = ent; var target = args.Target; - if (args.Handled || comp.BatteryUid == null || !HasComp(target)) + if (args.Handled || comp.BatteryUid is not {} battery || !HasComp(target)) return; // handles even if battery is full so you can actually see the poup args.Handled = true; - if (_battery.IsFull(comp.BatteryUid.Value)) + if (_battery.IsFull(battery)) { _popup.PopupEntity(Loc.GetString("battery-drainer-full"), uid, uid, PopupType.Medium); return; @@ -59,23 +60,24 @@ private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, B _doAfter.TryStartDoAfter(doAfterArgs); } - private void OnBatteryChanged(EntityUid uid, BatteryDrainerComponent comp, ref NinjaBatteryChangedEvent args) + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) { - SetBattery(uid, args.Battery, comp); + SetBattery((ent, ent.Comp), args.Battery); } /// - protected override void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + protected override void OnDoAfterAttempt(Entity ent, ref DoAfterAttemptEvent args) { - base.OnDoAfterAttempt(uid, comp, args); + base.OnDoAfterAttempt(ent, ref args); - if (comp.BatteryUid == null || _battery.IsFull(comp.BatteryUid.Value)) + if (ent.Comp.BatteryUid is not {} battery || _battery.IsFull(battery)) args.Cancel(); } /// - protected override bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + protected override bool TryDrainPower(Entity ent, EntityUid target) { + var (uid, comp) = ent; if (comp.BatteryUid == null || !TryComp(comp.BatteryUid.Value, out var battery)) return false; @@ -98,6 +100,7 @@ protected override bool TryDrainPower(EntityUid uid, BatteryDrainerComponent com var output = input * comp.DrainEfficiency; _battery.SetCharge(comp.BatteryUid.Value, battery.CurrentCharge + output, battery); + // TODO: create effect message or something Spawn("EffectSparks", Transform(target).Coordinates); _audio.PlayPvs(comp.SparkSound, target); _popup.PopupEntity(Loc.GetString("battery-drainer-success", ("battery", target)), uid, uid); diff --git a/Content.Server/Ninja/Systems/ItemCreatorSystem.cs b/Content.Server/Ninja/Systems/ItemCreatorSystem.cs new file mode 100644 index 000000000000..d7a7be995db2 --- /dev/null +++ b/Content.Server/Ninja/Systems/ItemCreatorSystem.cs @@ -0,0 +1,57 @@ +using Content.Server.Ninja.Events; +using Content.Server.Power.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; + +namespace Content.Server.Ninja.Systems; + +public sealed class ItemCreatorSystem : SharedItemCreatorSystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCreateItem); + SubscribeLocalEvent(OnBatteryChanged); + } + + private void OnCreateItem(Entity ent, ref CreateItemEvent args) + { + var (uid, comp) = ent; + if (comp.Battery is not {} battery) + return; + + args.Handled = true; + + var user = args.Performer; + if (!_battery.TryUseCharge(battery, comp.Charge)) + { + _popup.PopupEntity(Loc.GetString(comp.NoPowerPopup), user, user); + return; + } + + var ev = new CreateItemAttemptEvent(user); + RaiseLocalEvent(uid, ref ev); + if (ev.Cancelled) + return; + + // try to put throwing star in hand, otherwise it goes on the ground + var star = Spawn(comp.SpawnedPrototype, Transform(user).Coordinates); + _hands.TryPickupAnyHand(user, star); + } + + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) + { + if (ent.Comp.Battery == args.Battery) + return; + + ent.Comp.Battery = args.Battery; + Dirty(ent, ent.Comp); + } +} diff --git a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs index ac76ae6b7711..3aaf7c5d58e7 100644 --- a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs @@ -1,13 +1,8 @@ -using Content.Server.Communications; -using Content.Server.Mind; using Content.Server.Ninja.Events; -using Content.Server.Objectives.Systems; -using Content.Shared.Communications; -using Content.Shared.CriminalRecords.Components; +using Content.Shared.Mind; +using Content.Shared.Objectives.Systems; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; -using Content.Shared.Research.Components; -using Content.Shared.Toggleable; namespace Content.Server.Ninja.Systems; @@ -16,89 +11,44 @@ namespace Content.Server.Ninja.Systems; /// public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem { - [Dependency] private readonly EmagProviderSystem _emagProvider = default!; - [Dependency] private readonly CodeConditionSystem _codeCondition = default!; - [Dependency] private readonly CommsHackerSystem _commsHacker = default!; - [Dependency] private readonly SharedStunProviderSystem _stunProvider = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; - public override void Initialize() + protected override void EnableGloves(Entity ent, Entity user) { - base.Initialize(); + base.EnableGloves(ent, user); - SubscribeLocalEvent(OnToggleAction); - } - - /// - /// Toggle gloves, if the user is a ninja wearing a ninja suit. - /// - private void OnToggleAction(EntityUid uid, NinjaGlovesComponent comp, ToggleActionEvent args) - { - if (args.Handled) + // can't use abilities if suit is not equipped, this is checked elsewhere but just making sure to satisfy nullability + if (user.Comp.Suit is not {} suit) return; - args.Handled = true; - - var user = args.Performer; - // need to wear suit to enable gloves - if (!TryComp(user, out var ninja) - || ninja.Suit == null - || !HasComp(ninja.Suit.Value)) - { - Popup.PopupEntity(Loc.GetString("ninja-gloves-not-wearing-suit"), user, user); + if (!_mind.TryGetMind(user, out var mindId, out var mind)) return; - } - - // show its state to the user - var enabling = comp.User == null; - Appearance.SetData(uid, ToggleVisuals.Toggled, enabling); - var message = Loc.GetString(enabling ? "ninja-gloves-on" : "ninja-gloves-off"); - Popup.PopupEntity(message, user, user); - if (enabling) + foreach (var ability in ent.Comp.Abilities) { - EnableGloves(uid, comp, user, ninja); + // non-objective abilities are added in shared already + if (ability.Objective is not {} objId) + continue; + + // prevent doing an objective multiple times by toggling gloves after doing them + // if it's not tied to an objective always add them anyway + if (!_mind.TryFindObjective((mindId, mind), objId, out var obj)) + { + Log.Error($"Ninja glove ability of {ent} referenced missing objective {ability.Objective} of {_mind.MindOwnerLoggingString(mind)}"); + continue; + } + + if (!_objectives.IsCompleted(obj.Value, (mindId, mind))) + EntityManager.AddComponents(user, ability.Components); } - else - { - DisableGloves(uid, comp); - } - } - private void EnableGloves(EntityUid uid, NinjaGlovesComponent comp, EntityUid user, SpaceNinjaComponent ninja) - { - // can't use abilities if suit is not equipped, this is checked elsewhere but just making sure to satisfy nullability - if (ninja.Suit == null) - return; - - comp.User = user; - Dirty(uid, comp); - _ninja.AssignGloves(user, uid, ninja); - - var drainer = EnsureComp(user); - var stun = EnsureComp(user); - _stunProvider.SetNoPowerPopup(user, "ninja-no-power", stun); + // let abilities that use battery power work if (_ninja.GetNinjaBattery(user, out var battery, out var _)) { - var ev = new NinjaBatteryChangedEvent(battery.Value, ninja.Suit.Value); + var ev = new NinjaBatteryChangedEvent(battery.Value, suit); RaiseLocalEvent(user, ref ev); } - - var emag = EnsureComp(user); - _emagProvider.SetWhitelist(user, comp.DoorjackWhitelist, emag); - - EnsureComp(user); - // prevent calling in multiple threats by toggling gloves after - if (!_codeCondition.IsCompleted(user, ninja.TerrorObjective)) - { - var hacker = EnsureComp(user); - var rule = _ninja.NinjaRule(user); - if (rule != null) - _commsHacker.SetThreats(user, rule.Threats, hacker); - } - if (!_codeCondition.IsCompleted(user, ninja.MassArrestObjective)) - { - EnsureComp(user); - } } } diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 04095b549c6b..63054eaad50e 100644 --- a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Ninja.Events; using Content.Server.Power.Components; using Content.Server.PowerCell; -using Content.Shared.Clothing.EntitySystems; using Content.Shared.Hands.EntitySystems; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; @@ -29,15 +28,13 @@ public override void Initialize() SubscribeLocalEvent(OnSuitInsertAttempt); SubscribeLocalEvent(OnEmpAttempt); - SubscribeLocalEvent(OnAttemptStealth); - SubscribeLocalEvent(OnCreateThrowingStar); SubscribeLocalEvent(OnRecallKatana); SubscribeLocalEvent(OnEmp); } - protected override void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + protected override void NinjaEquipped(Entity ent, Entity user) { - base.NinjaEquippedSuit(uid, comp, user, ninja); + base.NinjaEquipped(ent, user); _ninja.SetSuitPowerAlert(user); } @@ -57,16 +54,15 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) - { args.Cancel(); - } // tell ninja abilities that use battery to update it so they don't use charge from the old one var user = Transform(uid).ParentUid; - if (!HasComp(user)) + if (!_ninja.IsNinja(user)) return; var ev = new NinjaBatteryChangedEvent(args.EntityUid, uid); + RaiseLocalEvent(uid, ref ev); RaiseLocalEvent(user, ref ev); } @@ -77,64 +73,22 @@ private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEven args.Cancel(); } - protected override void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + protected override void UserUnequippedSuit(Entity ent, Entity user) { - base.UserUnequippedSuit(uid, comp, user); + base.UserUnequippedSuit(ent, user); // remove power indicator _ninja.SetSuitPowerAlert(user); } - private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args) + private void OnRecallKatana(Entity ent, ref RecallKatanaEvent args) { - var user = args.User; - // need 1 second of charge to turn on stealth - var chargeNeeded = SuitWattage(uid, comp); - // being attacked while cloaked gives no power message since it overloads the power supply or something - if (!_ninja.GetNinjaBattery(user, out _, out var battery) || battery.CurrentCharge < chargeNeeded) - { - Popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); - args.Cancel(); - return; - } - - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); - args.Cancel(); - return; - } - - StealthClothing.SetEnabled(uid, user, true); - } - - private void OnCreateThrowingStar(EntityUid uid, NinjaSuitComponent comp, CreateThrowingStarEvent args) - { - args.Handled = true; + var (uid, comp) = ent; var user = args.Performer; - if (!_ninja.TryUseCharge(user, comp.ThrowingStarCharge)) - { - Popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + if (!_ninja.NinjaQuery.TryComp(user, out var ninja) || ninja.Katana == null) return; - } - - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); - return; - } - - // try to put throwing star in hand, otherwise it goes on the ground - var star = Spawn(comp.ThrowingStarPrototype, Transform(user).Coordinates); - _hands.TryPickupAnyHand(user, star); - } - private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatanaEvent args) - { args.Handled = true; - var user = args.Performer; - if (!TryComp(user, out var ninja) || ninja.Katana == null) - return; var katana = ninja.Katana.Value; var coords = _transform.GetWorldPosition(katana); @@ -146,11 +100,8 @@ private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatana return; } - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + if (CheckDisabled(ent, user)) return; - } // TODO: teleporting into belt slot var message = _hands.TryPickupAnyHand(user, katana) @@ -159,9 +110,11 @@ private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatana Popup.PopupEntity(Loc.GetString(message), user, user); } - private void OnEmp(EntityUid uid, NinjaSuitComponent comp, NinjaEmpEvent args) + private void OnEmp(Entity ent, ref NinjaEmpEvent args) { + var (uid, comp) = ent; args.Handled = true; + var user = args.Performer; if (!_ninja.TryUseCharge(user, comp.EmpCharge)) { @@ -169,13 +122,9 @@ private void OnEmp(EntityUid uid, NinjaSuitComponent comp, NinjaEmpEvent args) return; } - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + if (CheckDisabled(ent, user)) return; - } - // I don't think this affects the suit battery, but if it ever does in the future add a blacklist for it var coords = _transform.GetMapCoordinates(user); _emp.EmpPulse(coords, comp.EmpRange, comp.EmpConsumption, comp.EmpDuration); } diff --git a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs index 0c1e88653fa4..1ece045774c6 100644 --- a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs +++ b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Chat.Managers; using Content.Server.CriminalRecords.Systems; using Content.Server.GameTicking.Rules.Components; -using Content.Server.GenericAntag; using Content.Server.Objectives.Components; using Content.Server.Objectives.Systems; using Content.Server.Power.Components; @@ -11,7 +10,6 @@ using Content.Server.Research.Systems; using Content.Server.Roles; using Content.Shared.Alert; -using Content.Shared.Clothing.EntitySystems; using Content.Shared.Doors.Components; using Content.Shared.IdentityManagement; using Content.Shared.Mind; @@ -26,11 +24,6 @@ namespace Content.Server.Ninja.Systems; -// TODO: when syndiborgs are a thing have a borg converter with 6 second doafter -// engi -> saboteur -// medi -> idk reskin it -// other -> assault - /// /// Main ninja system that handles ninja setup, provides helper methods for the rest of the code to use. /// @@ -39,18 +32,13 @@ public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly CodeConditionSystem _codeCondition = default!; - [Dependency] private readonly IChatManager _chatMan = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; - [Dependency] private readonly RoleSystem _role = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly StealthClothingSystem _stealthClothing = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnNinjaCreated); SubscribeLocalEvent(OnDoorjack); SubscribeLocalEvent(OnResearchStolen); SubscribeLocalEvent(OnThreatCalledIn); @@ -62,7 +50,7 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var ninja)) { - UpdateNinja(uid, ninja, frameTime); + SetSuitPowerAlert((uid, ninja)); } } @@ -80,31 +68,13 @@ private int Download(EntityUid uid, List ids) return newCount - oldCount; } - /// - /// Returns a ninja's gamerule config data. - /// If the gamerule was not started then it will be started automatically. - /// - public NinjaRuleComponent? NinjaRule(EntityUid uid, GenericAntagComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return null; - - // mind not added yet so no rule - if (comp.RuleEntity == null) - return null; - - return CompOrNull(comp.RuleEntity); - } - // TODO: can probably copy paste borg code here /// /// Update the alert for the ninja's suit power indicator. /// - public void SetSuitPowerAlert(EntityUid uid, SpaceNinjaComponent? comp = null) + public void SetSuitPowerAlert(Entity ent) { - if (!Resolve(uid, ref comp, false)) - return; - + var (uid, comp) = ent; if (comp.Deleted || comp.Suit == null) { _alerts.ClearAlert(uid, comp.SuitPowerAlert); @@ -145,53 +115,6 @@ public override bool TryUseCharge(EntityUid user, float charge) return GetNinjaBattery(user, out var uid, out var battery) && _battery.TryUseCharge(uid.Value, charge, battery); } - /// - /// Set up everything for ninja to work and send the greeting message/sound. - /// Objectives are added by . - /// - private void OnNinjaCreated(EntityUid uid, SpaceNinjaComponent comp, ref GenericAntagCreatedEvent args) - { - var mindId = args.MindId; - var mind = args.Mind; - - if (mind.Session == null) - return; - - var config = NinjaRule(uid); - if (config == null) - return; - - var role = new NinjaRoleComponent - { - PrototypeId = "SpaceNinja" - }; - _role.MindAddRole(mindId, role, mind); - _role.MindPlaySound(mindId, config.GreetingSound, mind); - - var session = mind.Session; - _audio.PlayGlobal(config.GreetingSound, Filter.Empty().AddPlayer(session), false, AudioParams.Default); - _chatMan.DispatchServerMessage(session, Loc.GetString("ninja-role-greeting")); - } - - // TODO: PowerCellDraw, modify when cloak enabled - /// - /// Handle constant power drains from passive usage and cloak. - /// - private void UpdateNinja(EntityUid uid, SpaceNinjaComponent ninja, float frameTime) - { - if (ninja.Suit == null) - return; - - float wattage = Suit.SuitWattage(ninja.Suit.Value); - - SetSuitPowerAlert(uid, ninja); - if (!TryUseCharge(uid, wattage * frameTime)) - { - // ran out of power, uncloak ninja - _stealthClothing.SetEnabled(ninja.Suit.Value, uid, false); - } - } - /// /// Increment greentext when emagging a door. /// diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index 64c958d6f1ab..c262651f27ae 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Sticky.Events; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -14,7 +15,7 @@ namespace Content.Server.Ninja.Systems; /// /// Prevents planting a spider charge outside of its location and handles greentext. /// -public sealed class SpiderChargeSystem : EntitySystem +public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; diff --git a/Content.Server/Ninja/Systems/StunProviderSystem.cs b/Content.Server/Ninja/Systems/StunProviderSystem.cs index 1768606ad20f..822486cff52f 100644 --- a/Content.Server/Ninja/Systems/StunProviderSystem.cs +++ b/Content.Server/Ninja/Systems/StunProviderSystem.cs @@ -6,10 +6,11 @@ using Content.Shared.Ninja.Systems; using Content.Shared.Popups; using Content.Shared.Stunnable; -using Robust.Shared.Prototypes; +using Content.Shared.Timing; +using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; -using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; namespace Content.Server.Ninja.Systems; @@ -20,12 +21,12 @@ public sealed class StunProviderSystem : SharedStunProviderSystem { [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() { @@ -38,16 +39,18 @@ public override void Initialize() /// /// Stun clicked mobs on the whitelist, if there is enough power. /// - private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { // TODO: generic check + var (uid, comp) = ent; if (args.Handled || comp.BatteryUid == null || !_gloves.AbilityCheck(uid, args, out var target)) return; - if (target == uid || _whitelistSystem.IsWhitelistFail(comp.Whitelist, target)) + if (target == uid || _whitelist.IsWhitelistFail(comp.Whitelist, target)) return; - if (_timing.CurTime < comp.NextStun) + var useDelay = EnsureComp(uid); + if (_useDelay.IsDelayed((uid, useDelay), id: comp.DelayId)) return; // take charge from battery @@ -63,13 +66,14 @@ private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, Bef _stun.TryParalyze(target, comp.StunTime, refresh: false); // short cooldown to prevent instant stunlocking - comp.NextStun = _timing.CurTime + comp.Cooldown; + _useDelay.SetLength((uid, useDelay), comp.Cooldown, id: comp.DelayId); + _useDelay.TryResetDelay((uid, useDelay), id: comp.DelayId); args.Handled = true; } - private void OnBatteryChanged(EntityUid uid, StunProviderComponent comp, ref NinjaBatteryChangedEvent args) + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) { - SetBattery(uid, args.Battery, comp); + SetBattery((ent, ent.Comp), args.Battery); } } diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index b8e334fb0daf..36c4ef4b5510 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.DoAfter; using Content.Shared.EntityEffects; using Content.Shared.FixedPoint; +using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; @@ -48,6 +49,7 @@ public sealed class DrinkSystem : SharedDrinkSystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly StomachSystem _stomach = default!; @@ -156,6 +158,9 @@ public void UpdateAppearance(EntityUid uid, DrinkComponent component) _appearance.SetData(uid, FoodVisuals.Visual, drainAvailable.Float(), appearance); } + /// + /// Tries to feed the drink item to the target entity + /// private bool TryDrink(EntityUid user, EntityUid target, DrinkComponent drink, EntityUid item) { if (!HasComp(target)) @@ -206,13 +211,14 @@ private bool TryDrink(EntityUid user, EntityUid target, DrinkComponent drink, En target: target, used: item) { + BreakOnHandChange = false, BreakOnMove = forceDrink, BreakOnDamage = true, MovementThreshold = 0.01f, DistanceThreshold = 1.0f, - // Mice and the like can eat without hands. - // TODO maybe set this based on some CanEatWithoutHands event or component? - NeedHand = forceDrink, + // do-after will stop if item is dropped when trying to feed someone else + // or if the item started out in the user's own hands + NeedHand = forceDrink || _hands.IsHolding(user, item), }; _doAfter.TryStartDoAfter(doAfterEventArgs); diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 1862b4e19f14..4d670a3eb77d 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Body.Components; using Content.Shared.Body.Organ; using Content.Shared.Chemistry; -using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; @@ -31,6 +30,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; using System.Linq; +using Content.Shared.Containers.ItemSlots; using Robust.Server.GameObjects; using Content.Shared.Whitelist; @@ -99,6 +99,9 @@ private void OnFeedFood(Entity entity, ref AfterInteractEvent arg args.Handled = result.Handled; } + /// + /// Tries to feed the food item to the target entity + /// public (bool Success, bool Handled) TryFeed(EntityUid user, EntityUid target, EntityUid food, FoodComponent foodComp) { //Suppresses eating yourself and alive mobs @@ -135,6 +138,16 @@ private void OnFeedFood(Entity entity, ref AfterInteractEvent arg return (false, true); } + // Checks for used item slots + if (TryComp(food, out var itemSlots)) + { + if (itemSlots.Slots.Any(slot => slot.Value.HasItem)) + { + _popup.PopupEntity(Loc.GetString("food-has-used-storage", ("food", food)), user, user); + return (false, true); + } + } + var flavors = _flavorProfile.GetLocalizedFlavorsMessage(food, user, foodSolution); if (GetUsesRemaining(food, foodComp) <= 0) @@ -185,13 +198,14 @@ private void OnFeedFood(Entity entity, ref AfterInteractEvent arg target: target, used: food) { + BreakOnHandChange = false, BreakOnMove = forceFeed, BreakOnDamage = true, MovementThreshold = 0.01f, DistanceThreshold = MaxFeedDistance, - // Mice and the like can eat without hands. - // TODO maybe set this based on some CanEatWithoutHands event or component? - NeedHand = forceFeed, + // do-after will stop if item is dropped when trying to feed someone else + // or if the item started out in the user's own hands + NeedHand = forceFeed || _hands.IsHolding(user, food), }; _doAfter.TryStartDoAfter(doAfterArgs); diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index f5d434090e74..ac3df5868fe8 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -17,7 +17,6 @@ public sealed class SliceableFoodSystem : EntitySystem { [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly TransformSystem _xformSystem = default!; public override void Initialize() diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs index 3950c73eb43e..26d86acd5450 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs @@ -42,7 +42,7 @@ private void OnPipeInteractUsingEvent(Entity entity, ref I if (!isHotEvent.IsHot) return; - if (TryTransferReagents(entity.Comp, smokable)) + if (TryTransferReagents(entity, (entity.Owner, smokable))) SetSmokableState(entity, SmokableState.Lit, smokable); args.Handled = true; } @@ -62,7 +62,7 @@ public void OnPipeAfterInteract(Entity entity, ref AfterIn if (!isHotEvent.IsHot) return; - if (TryTransferReagents(entity.Comp, smokable)) + if (TryTransferReagents(entity, (entity.Owner, smokable))) SetSmokableState(entity, SmokableState.Lit, smokable); args.Handled = true; } @@ -74,15 +74,15 @@ private void OnPipeSolutionEmptyEvent(Entity entity, ref S } // Convert smokable item into reagents to be smoked - private bool TryTransferReagents(SmokingPipeComponent component, SmokableComponent smokable) + private bool TryTransferReagents(Entity entity, Entity smokable) { - if (component.BowlSlot.Item == null) + if (entity.Comp.BowlSlot.Item == null) return false; - EntityUid contents = component.BowlSlot.Item.Value; + EntityUid contents = entity.Comp.BowlSlot.Item.Value; if (!TryComp(contents, out var reagents) || - !_solutionContainerSystem.TryGetSolution(smokable.Owner, smokable.Solution, out var pipeSolution, out _)) + !_solutionContainerSystem.TryGetSolution(smokable.Owner, smokable.Comp.Solution, out var pipeSolution, out _)) return false; foreach (var (_, soln) in _solutionContainerSystem.EnumerateSolutions((contents, reagents))) @@ -93,7 +93,7 @@ private bool TryTransferReagents(SmokingPipeComponent component, SmokableCompone EntityManager.DeleteEntity(contents); - _itemSlotsSystem.SetLock(component.Owner, component.BowlSlot, true); //no inserting more until current runs out + _itemSlotsSystem.SetLock(entity.Owner, entity.Comp.BowlSlot, true); //no inserting more until current runs out return true; } diff --git a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs index 43087214a453..d40288183fcb 100644 --- a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs @@ -31,24 +31,24 @@ public override void Initialize() /// /// Clicked with utensil /// - private void OnAfterInteract(EntityUid uid, UtensilComponent component, AfterInteractEvent ev) + private void OnAfterInteract(Entity entity, ref AfterInteractEvent ev) { if (ev.Handled || ev.Target == null || !ev.CanReach) return; - var result = TryUseUtensil(ev.User, ev.Target.Value, component); + var result = TryUseUtensil(ev.User, ev.Target.Value, entity); ev.Handled = result.Handled; } - public (bool Success, bool Handled) TryUseUtensil(EntityUid user, EntityUid target, UtensilComponent component) + public (bool Success, bool Handled) TryUseUtensil(EntityUid user, EntityUid target, Entity utensil) { if (!EntityManager.TryGetComponent(target, out FoodComponent? food)) return (false, true); //Prevents food usage with a wrong utensil - if ((food.Utensil & component.Types) == 0) + if ((food.Utensil & utensil.Comp.Types) == 0) { - _popupSystem.PopupEntity(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", component.Owner)), user, user); + _popupSystem.PopupEntity(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", utensil.Owner)), user, user); return (false, true); } diff --git a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs index 97fc943269a4..88dcdcedf65a 100644 --- a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs +++ b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs @@ -33,7 +33,7 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) } shell.WriteLine($"Objectives for player {player.UserId}:"); - var objectives = mind.AllObjectives.ToList(); + var objectives = mind.Objectives.ToList(); if (objectives.Count == 0) { shell.WriteLine("None."); diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs index 18077b413ad5..382cb1ab4419 100644 --- a/Content.Server/Objectives/ObjectivesSystem.cs +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -12,6 +12,7 @@ using System.Linq; using System.Text; using Robust.Server.Player; +using Robust.Shared.Utility; namespace Content.Server.Objectives; @@ -128,12 +129,12 @@ private void AddSummary(StringBuilder result, string agent, List<(EntityUid, str var agentSummary = new StringBuilder(); agentSummary.AppendLine(Loc.GetString("objectives-with-objectives", ("custody", custody), ("title", title), ("agent", agent))); - foreach (var objectiveGroup in objectives.GroupBy(o => Comp(o).Issuer)) + foreach (var objectiveGroup in objectives.GroupBy(o => Comp(o).LocIssuer)) { //TO DO: //check for the right group here. Getting the target issuer is easy: objectiveGroup.Key //It should be compared to the type of the group's issuer. - agentSummary.AppendLine(Loc.GetString($"objective-issuer-{objectiveGroup.Key}")); + agentSummary.AppendLine(objectiveGroup.Key); foreach (var objective in objectiveGroup) { @@ -180,33 +181,32 @@ private void AddSummary(StringBuilder result, string agent, List<(EntityUid, str } } - public EntityUid? GetRandomObjective(EntityUid mindId, MindComponent mind, string objectiveGroupProto) + public EntityUid? GetRandomObjective(EntityUid mindId, MindComponent mind, ProtoId objectiveGroupProto, float maxDifficulty) { - if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groups)) + if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groupsProto)) { Log.Error($"Tried to get a random objective, but can't index WeightedRandomPrototype {objectiveGroupProto}"); return null; } - // TODO replace whatever the fuck this is with a proper objective selection system - // yeah the old 'preventing infinite loops' thing wasn't super elegant either and it mislead people on what exactly it did - var tries = 0; - while (tries < 20) - { - var groupName = groups.Pick(_random); + // Make a copy of the weights so we don't trash the prototype by removing entries + var groups = groupsProto.Weights.ShallowClone(); + while (_random.TryPickAndTake(groups, out var groupName)) + { if (!_prototypeManager.TryIndex(groupName, out var group)) { Log.Error($"Couldn't index objective group prototype {groupName}"); return null; } - var proto = group.Pick(_random); - var objective = TryCreateObjective(mindId, mind, proto); - if (objective != null) - return objective; - - tries++; + var objectives = group.Weights.ShallowClone(); + while (_random.TryPickAndTake(objectives, out var objectiveProto)) + { + if (TryCreateObjective((mindId, mind), objectiveProto, out var objective) + && Comp(objective.Value).Difficulty <= maxDifficulty) + return objective; + } } return null; diff --git a/Content.Server/Objectives/Systems/CodeConditionSystem.cs b/Content.Server/Objectives/Systems/CodeConditionSystem.cs index 7ba312f4bb9e..fbc58dafe821 100644 --- a/Content.Server/Objectives/Systems/CodeConditionSystem.cs +++ b/Content.Server/Objectives/Systems/CodeConditionSystem.cs @@ -35,20 +35,6 @@ public bool IsCompleted(Entity ent) return ent.Comp.Completed; } - /// - /// Returns true if a mob's objective with a certain prototype is completed. - /// - public bool IsCompleted(Entity mob, string prototype) - { - if (_mind.GetMind(mob, mob.Comp) is not {} mindId) - return false; - - if (!_mind.TryFindObjective(mindId, prototype, out var obj)) - return false; - - return IsCompleted(obj.Value); - } - /// /// Sets an objective's completed field. /// diff --git a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs index e4455c038136..e0a56149b3e2 100644 --- a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs +++ b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs @@ -59,7 +59,7 @@ private void OnTraitorAssigned(EntityUid uid, RandomTraitorProgressComponent com if (!TryComp(traitor, out var mind)) continue; - foreach (var objective in mind.AllObjectives) + foreach (var objective in mind.Objectives) { if (HasComp(objective)) removeList.Add(traitor); @@ -88,7 +88,7 @@ private float GetProgress(EntityUid target) if (TryComp(target, out var mind)) { - foreach (var objective in mind.AllObjectives) + foreach (var objective in mind.Objectives) { // this has the potential to loop forever, anything setting target has to check that there is no HelpProgressCondition. var info = _objectives.GetInfo(objective, target, mind); diff --git a/Content.Server/Objectives/Systems/ObjectiveBlacklistRequirementSystem.cs b/Content.Server/Objectives/Systems/ObjectiveBlacklistRequirementSystem.cs index 8fe7e7e20315..0671c6b67e49 100644 --- a/Content.Server/Objectives/Systems/ObjectiveBlacklistRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/ObjectiveBlacklistRequirementSystem.cs @@ -23,7 +23,7 @@ private void OnCheck(EntityUid uid, ObjectiveBlacklistRequirementComponent comp, if (args.Cancelled) return; - foreach (var objective in args.Mind.AllObjectives) + foreach (var objective in args.Mind.Objectives) { if (_whitelistSystem.IsBlacklistPass(comp.Blacklist, objective)) { diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index 0fe6f0947c87..42a296ab925c 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Mobs.Components; using Content.Shared.Movement.Pulling.Components; +using Content.Shared.Stacks; namespace Content.Server.Objectives.Systems; @@ -105,7 +106,7 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) if (pulledEntity != null) { // check if this is the item - if (CheckStealTarget(pulledEntity.Value, condition)) count++; + count += CheckStealTarget(pulledEntity.Value, condition); //we don't check the inventories of sentient entity if (!HasComp(pulledEntity)) @@ -126,7 +127,7 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) foreach (var entity in container.ContainedEntities) { // check if this is the item - if (CheckStealTarget(entity, condition)) count++; //To Do: add support for stackable items + count += CheckStealTarget(entity, condition); // if it is a container check its contents if (_containerQuery.TryGetComponent(entity, out var containerManager)) @@ -140,14 +141,14 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) return result; } - private bool CheckStealTarget(EntityUid entity, StealConditionComponent condition) + private int CheckStealTarget(EntityUid entity, StealConditionComponent condition) { // check if this is the target if (!TryComp(entity, out var target)) - return false; + return 0; if (target.StealGroup != condition.StealGroup) - return false; + return 0; // check if needed target alive if (condition.CheckAlive) @@ -155,9 +156,10 @@ private bool CheckStealTarget(EntityUid entity, StealConditionComponent conditio if (TryComp(entity, out var state)) { if (!_mobState.IsAlive(entity, state)) - return false; + return 0; } } - return true; + + return TryComp(entity, out var stack) ? stack.Count : 1; } } diff --git a/Content.Server/Paper/PaperComponent.cs b/Content.Server/Paper/PaperComponent.cs index 6c379eea2bc5..7b04a77d579f 100644 --- a/Content.Server/Paper/PaperComponent.cs +++ b/Content.Server/Paper/PaperComponent.cs @@ -1,5 +1,4 @@ using Content.Shared.Paper; -using Robust.Shared.GameStates; namespace Content.Server.Paper; @@ -21,4 +20,7 @@ public sealed partial class PaperComponent : SharedPaperComponent /// [DataField("stampState")] public string? StampState { get; set; } + + [DataField] + public bool EditingDisabled = false; } diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 4a7828c78c8f..3935df83701e 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -102,6 +102,14 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs var editable = paperComp.StampedBy.Count == 0 || _tagSystem.HasTag(args.Used, "WriteIgnoreStamps"); if (_tagSystem.HasTag(args.Used, "Write") && editable) { + if (paperComp.EditingDisabled) + { + var paperEditingDisabledMessage = Loc.GetString("paper-tamper-proof-modified-message"); + _popupSystem.PopupEntity(paperEditingDisabledMessage, uid, args.User); + + args.Handled = true; + return; + } var writeEvent = new PaperWriteEvent(uid, args.User); RaiseLocalEvent(args.Used, ref writeEvent); diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index 7e854e8bbfb7..d3919347f769 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -126,20 +126,18 @@ private void OnBiomeMapInit(EntityUid uid, BiomeComponent component, MapInitEven var xform = Transform(uid); var mapId = xform.MapID; - if (mapId != MapId.Nullspace && TryComp(uid, out MapGridComponent? mapGrid)) + if (mapId != MapId.Nullspace && HasComp(uid)) { var setTiles = new List<(Vector2i Index, Tile tile)>(); - foreach (var grid in _mapManager.GetAllMapGrids(mapId)) + foreach (var grid in _mapManager.GetAllGrids(mapId)) { - var gridUid = grid.Owner; - - if (!_fixturesQuery.TryGetComponent(gridUid, out var fixtures)) + if (!_fixturesQuery.TryGetComponent(grid.Owner, out var fixtures)) continue; // Don't want shuttles flying around now do we. - _shuttles.Disable(gridUid); - var pTransform = _physics.GetPhysicsTransform(gridUid); + _shuttles.Disable(grid.Owner); + var pTransform = _physics.GetPhysicsTransform(grid.Owner); foreach (var fixture in fixtures.Fixtures.Values) { diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs index 05ab81c0f59d..7697644a3bce 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorEmitterComponent.cs @@ -1,13 +1,12 @@ -using Content.Shared.Singularity.Components; +using Robust.Shared.Prototypes; namespace Content.Server.ParticleAccelerator.Components; [RegisterComponent] public sealed partial class ParticleAcceleratorEmitterComponent : Component { - [DataField("emittedPrototype")] - [ViewVariables(VVAccess.ReadWrite)] - public string EmittedPrototype = "ParticlesProjectile"; + [DataField] + public EntProtoId EmittedPrototype = "ParticlesProjectile"; [DataField("emitterType")] [ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index 80f398c0a79e..4d39a5ce305c 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -101,6 +101,7 @@ public void SwitchOff(EntityUid uid, EntityUid? user = null, ParticleAccelerator _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} has turned {ToPrettyString(uid)} off"); comp.Enabled = false; + SetStrength(uid, ParticleAcceleratorPowerState.Standby, user, comp); UpdatePowerDraw(uid, comp); PowerOff(uid, comp); UpdateUI(uid, comp); @@ -174,12 +175,14 @@ or ParticleAcceleratorPowerState.Level1 var pos = Transform(uid); if (_timing.CurTime > comp.EffectCooldown) { - _chat.SendAdminAlert(player, Loc.GetString("particle-accelerator-admin-power-strength-warning", + _chat.SendAdminAlert(player, + Loc.GetString("particle-accelerator-admin-power-strength-warning", ("machine", ToPrettyString(uid)), - ("powerState", strength), + ("powerState", GetPANumericalLevel(strength)), ("coordinates", pos.Coordinates))); _audio.PlayGlobal("/Audio/Misc/adminlarm.ogg", - Filter.Empty().AddPlayers(_adminManager.ActiveAdmins), false, + Filter.Empty().AddPlayers(_adminManager.ActiveAdmins), + false, AudioParams.Default.WithVolume(-8f)); comp.EffectCooldown = _timing.CurTime + comp.CooldownDuration; } @@ -230,7 +233,7 @@ private void UpdatePowerDraw(EntityUid uid, ParticleAcceleratorControlBoxCompone powerConsumer.DrawRate = powerDraw; } - private void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? comp = null) + public void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -247,7 +250,9 @@ private void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? com receive = powerConsumer.ReceivedPower; } - _uiSystem.SetUiState(uid, ParticleAcceleratorControlBoxUiKey.Key, new ParticleAcceleratorUIState( + _uiSystem.SetUiState(uid, + ParticleAcceleratorControlBoxUiKey.Key, + new ParticleAcceleratorUIState( comp.Assembled, comp.Enabled, comp.SelectedStrength, @@ -396,4 +401,16 @@ private void OnUIRescanMessage(EntityUid uid, ParticleAcceleratorControlBoxCompo UpdateUI(uid, comp); } + + public static int GetPANumericalLevel(ParticleAcceleratorPowerState state) + { + return state switch + { + ParticleAcceleratorPowerState.Level0 => 1, + ParticleAcceleratorPowerState.Level1 => 2, + ParticleAcceleratorPowerState.Level2 => 3, + ParticleAcceleratorPowerState.Level3 => 4, + _ => 0 + }; + } } diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs index 99bb0d5cbdaf..829de0af4707 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs @@ -1,10 +1,8 @@ using System.Diagnostics.CodeAnalysis; -using System.Numerics; using Content.Server.ParticleAccelerator.Components; using JetBrains.Annotations; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Events; -using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.EntitySystems; @@ -26,8 +24,6 @@ public void RescanParts(EntityUid uid, EntityUid? user = null, ParticleAccelerat if (controller.CurrentlyRescanning) return; - SwitchOff(uid, user, controller); - var partQuery = GetEntityQuery(); foreach (var part in AllParts(uid, controller)) { @@ -45,19 +41,25 @@ public void RescanParts(EntityUid uid, EntityUid? user = null, ParticleAccelerat var xformQuery = GetEntityQuery(); if (!xformQuery.TryGetComponent(uid, out var xform) || !xform.Anchored) + { + SwitchOff(uid, user, controller); return; + } var gridUid = xform.GridUid; if (gridUid == null || gridUid != xform.ParentUid || !TryComp(gridUid, out var grid)) + { + SwitchOff(uid, user, controller); return; + } // Find fuel chamber first by scanning cardinals. var fuelQuery = GetEntityQuery(); foreach (var adjacent in _mapSystem.GetCardinalNeighborCells(gridUid.Value, grid, xform.Coordinates)) { if (fuelQuery.HasComponent(adjacent) - && partQuery.TryGetComponent(adjacent, out var partState) - && partState.Master == null) + && partQuery.TryGetComponent(adjacent, out var partState) + && partState.Master == null) { controller.FuelChamber = adjacent; break; @@ -66,7 +68,7 @@ public void RescanParts(EntityUid uid, EntityUid? user = null, ParticleAccelerat if (controller.FuelChamber == null) { - UpdateUI(uid, controller); + SwitchOff(uid, user, controller); return; } @@ -93,19 +95,19 @@ public void RescanParts(EntityUid uid, EntityUid? user = null, ParticleAccelerat var positionForeEmitter = positionFuelChamber + offsetVect * 2; var positionStarboardEmitter = positionFuelChamber + offsetVect * 2 - orthoOffsetVect; - ScanPart(gridUid!.Value, positionEndCap, rotation, out controller.EndCap, out var _, grid); - ScanPart(gridUid!.Value, positionPowerBox, rotation, out controller.PowerBox, out var _, grid); + ScanPart(gridUid.Value, positionEndCap, rotation, out controller.EndCap, out _, grid); + ScanPart(gridUid.Value, positionPowerBox, rotation, out controller.PowerBox, out _, grid); - if (!ScanPart(gridUid!.Value, positionPortEmitter, rotation, out controller.PortEmitter, out var portEmitter, grid) - || portEmitter!.Type != ParticleAcceleratorEmitterType.Port) + if (!ScanPart(gridUid.Value, positionPortEmitter, rotation, out controller.PortEmitter, out var portEmitter, grid) + || portEmitter.Type != ParticleAcceleratorEmitterType.Port) controller.PortEmitter = null; - if (!ScanPart(gridUid!.Value, positionForeEmitter, rotation, out controller.ForeEmitter, out var foreEmitter, grid) - || foreEmitter!.Type != ParticleAcceleratorEmitterType.Fore) + if (!ScanPart(gridUid.Value, positionForeEmitter, rotation, out controller.ForeEmitter, out var foreEmitter, grid) + || foreEmitter.Type != ParticleAcceleratorEmitterType.Fore) controller.ForeEmitter = null; - if (!ScanPart(gridUid!.Value, positionStarboardEmitter, rotation, out controller.StarboardEmitter, out var starboardEmitter, grid) - || starboardEmitter!.Type != ParticleAcceleratorEmitterType.Starboard) + if (!ScanPart(gridUid.Value, positionStarboardEmitter, rotation, out controller.StarboardEmitter, out var starboardEmitter, grid) + || starboardEmitter.Type != ParticleAcceleratorEmitterType.Starboard) controller.StarboardEmitter = null; controller.Assembled = @@ -157,19 +159,19 @@ private bool ScanPart(EntityUid uid, Vector2i coordinates, Angle? rotation, [ private void OnComponentShutdown(EntityUid uid, ParticleAcceleratorPartComponent comp, ComponentShutdown args) { - if (EntityManager.EntityExists(comp.Master)) + if (Exists(comp.Master)) RescanParts(comp.Master!.Value); } private void BodyTypeChanged(EntityUid uid, ParticleAcceleratorPartComponent comp, ref PhysicsBodyTypeChangedEvent args) { - if (EntityManager.EntityExists(comp.Master)) + if (Exists(comp.Master)) RescanParts(comp.Master!.Value); } private void OnMoveEvent(EntityUid uid, ParticleAcceleratorPartComponent comp, ref MoveEvent args) { - if (EntityManager.EntityExists(comp.Master)) + if (Exists(comp.Master)) RescanParts(comp.Master!.Value); } } diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs index 4e70854d6b4d..688571d9f5a9 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorInterfaceWireAction.cs @@ -1,4 +1,5 @@ using Content.Server.ParticleAccelerator.Components; +using Content.Server.ParticleAccelerator.EntitySystems; using Content.Server.Wires; using Content.Shared.Singularity.Components; using Content.Shared.Wires; @@ -19,12 +20,16 @@ public sealed partial class ParticleAcceleratorKeyboardWireAction : ComponentWir public override bool Cut(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { controller.InterfaceDisabled = true; + var paSystem = EntityManager.System(); + paSystem.UpdateUI(wire.Owner, controller); return true; } public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { controller.InterfaceDisabled = false; + var paSystem = EntityManager.System(); + paSystem.UpdateUI(wire.Owner, controller); return true; } diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs index 0645944a2ac0..33c8761a832a 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs @@ -5,7 +5,6 @@ using Content.Shared.Popups; using Content.Shared.Singularity.Components; using Content.Shared.Wires; -using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.Wires; @@ -35,6 +34,8 @@ public sealed partial class ParticleAcceleratorLimiterWireAction : ComponentWire public override bool Cut(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { controller.MaxStrength = ParticleAcceleratorPowerState.Level3; + var paSystem = EntityManager.System(); + paSystem.UpdateUI(wire.Owner, controller); return true; } @@ -49,12 +50,14 @@ public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlB // Since that blocks SetStrength(). var paSystem = EntityManager.System(); paSystem.SetStrength(wire.Owner, controller.MaxStrength, user, controller); + paSystem.UpdateUI(wire.Owner, controller); return true; } public override void Pulse(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { - EntityManager.System().PopupEntity( + EntityManager.System() + .PopupEntity( Loc.GetString("particle-accelerator-control-box-component-wires-update-limiter-on-pulse"), user, PopupType.SmallCaution diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs index 1650960bd313..15a425f4c267 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs @@ -21,12 +21,16 @@ public sealed partial class ParticleAcceleratorStrengthWireAction : ComponentWir public override bool Cut(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { controller.StrengthLocked = true; + var paSystem = EntityManager.System(); + paSystem.UpdateUI(wire.Owner, controller); return true; } public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { controller.StrengthLocked = false; + var paSystem = EntityManager.System(); + paSystem.UpdateUI(wire.Owner, controller); return true; } diff --git a/Content.Server/Physics/Components/ChasingWalkComponent.cs b/Content.Server/Physics/Components/ChasingWalkComponent.cs index 222c9d64db8d..819fd8093992 100644 --- a/Content.Server/Physics/Components/ChasingWalkComponent.cs +++ b/Content.Server/Physics/Components/ChasingWalkComponent.cs @@ -65,7 +65,7 @@ public sealed partial class ChasingWalkComponent : Component /// The component that the entity is chasing /// [DataField(required: true)] - public ComponentRegistry ChasingComponent = default!; + public ComponentRegistry ChasingComponent = []; /// /// The maximum radius in which the entity chooses the target component to follow diff --git a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs index 618dd4156fc0..fa55ce024e44 100644 --- a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs +++ b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs @@ -61,6 +61,9 @@ public override void UpdateBeforeSolve(bool prediction, float frameTime) private void ChangeTarget(EntityUid uid, ChasingWalkComponent component) { + if (component.ChasingComponent.Count <= 0) + return; + //We find our coordinates and calculate the radius of the target search. var xform = Transform(uid); var range = component.MaxChaseRadius; diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 09956e313f34..ea6f0ad3f455 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -35,7 +35,6 @@ public sealed class PlayTimeTrackingSystem : EntitySystem [Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly SharedRoleSystem _role = default!; public override void Initialize() { diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index 9dc3b5e1e67e..f2f60f3063ec 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -101,7 +101,7 @@ public bool InRange(EntityUid pointer, EntityCoordinates coordinates) { if (HasComp(pointer)) { - return Transform(pointer).Coordinates.InRange(EntityManager, _transform, coordinates, 15); + return _transform.InRange(Transform(pointer).Coordinates, coordinates, 15); } else { @@ -145,17 +145,14 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coordsPointed, E _popup.PopupEntity(Loc.GetString("pointing-system-try-point-cannot-reach"), player, player); return false; } - - var mapCoordsPointed = coordsPointed.ToMap(EntityManager, _transform); + var mapCoordsPointed = _transform.ToMapCoordinates(coordsPointed); _rotateToFaceSystem.TryFaceCoordinates(player, mapCoordsPointed.Position); var arrow = EntityManager.SpawnEntity("PointingArrow", coordsPointed); if (TryComp(arrow, out var pointing)) { - if (TryComp(player, out TransformComponent? xformPlayer)) - pointing.StartPosition = EntityCoordinates.FromMap(arrow, xformPlayer.Coordinates.ToMap(EntityManager, _transform), _transform).Position; - + pointing.StartPosition = _transform.ToCoordinates((arrow, Transform(arrow)), _transform.ToMapCoordinates(Transform(player).Coordinates)).Position; pointing.EndTime = _gameTiming.CurTime + PointDuration; Dirty(arrow, pointing); diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index 6c35ba20083c..a7098649ceff 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -22,7 +22,6 @@ public sealed class PowerNetSystem : EntitySystem [Dependency] private readonly PowerNetConnectorSystem _powerNetConnector = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IParallelManager _parMan = default!; - [Dependency] private readonly PowerReceiverSystem _powerReceiver = default!; private readonly PowerState _powerState = new(); private readonly HashSet _powerNetReconnectQueue = new(); diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index 51520f046446..191d3fc4bdb9 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -21,7 +21,6 @@ public sealed class PowerReceiverSystem : SharedPowerReceiverSystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly AudioSystem _audio = default!; private EntityQuery _recQuery; private EntityQuery _provQuery; diff --git a/Content.Server/Power/EntitySystems/StaticPowerSystem.cs b/Content.Server/Power/EntitySystems/StaticPowerSystem.cs index 9e11d9311af3..61a23e501df9 100644 --- a/Content.Server/Power/EntitySystems/StaticPowerSystem.cs +++ b/Content.Server/Power/EntitySystems/StaticPowerSystem.cs @@ -9,7 +9,7 @@ public static class StaticPowerSystem public static bool IsPowered(this EntitySystem system, EntityUid uid, IEntityManager entManager, ApcPowerReceiverComponent? receiver = null) { if (receiver == null && !entManager.TryGetComponent(uid, out receiver)) - return false; + return true; return receiver.Powered; } diff --git a/Content.Server/PowerCell/PowerCellSystem.Draw.cs b/Content.Server/PowerCell/PowerCellSystem.Draw.cs index 4155a4f6becf..9ebd677f4733 100644 --- a/Content.Server/PowerCell/PowerCellSystem.Draw.cs +++ b/Content.Server/PowerCell/PowerCellSystem.Draw.cs @@ -1,4 +1,5 @@ using Content.Server.Power.Components; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -10,22 +11,20 @@ public sealed partial class PowerCellSystem * Handles PowerCellDraw */ - private static readonly TimeSpan Delay = TimeSpan.FromSeconds(1); - public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out var slot)) + while (query.MoveNext(out var uid, out var comp, out var slot, out var toggle)) { - if (!comp.Drawing) + if (!comp.Enabled || !toggle.Activated) continue; if (Timing.CurTime < comp.NextUpdateTime) continue; - comp.NextUpdateTime += Delay; + comp.NextUpdateTime += comp.Delay; if (!TryGetBatteryFromSlot(uid, out var batteryEnt, out var battery, slot)) continue; @@ -33,7 +32,8 @@ public override void Update(float frameTime) if (_battery.TryUseCharge(batteryEnt.Value, comp.DrawRate, battery)) continue; - comp.Drawing = false; + Toggle.TryDeactivate((uid, toggle)); + var ev = new PowerCellSlotEmptyEvent(); RaiseLocalEvent(uid, ref ev); } @@ -42,26 +42,9 @@ public override void Update(float frameTime) private void OnDrawChargeChanged(EntityUid uid, PowerCellDrawComponent component, ref ChargeChangedEvent args) { // Update the bools for client prediction. - bool canDraw; - bool canUse; - - if (component.UseRate > 0f) - { - canUse = args.Charge > component.UseRate; - } - else - { - canUse = true; - } + var canUse = component.UseRate <= 0f || args.Charge > component.UseRate; - if (component.DrawRate > 0f) - { - canDraw = args.Charge > 0f; - } - else - { - canDraw = true; - } + var canDraw = component.DrawRate <= 0f || args.Charge > 0f; if (canUse != component.CanUse || canDraw != component.CanDraw) { @@ -76,6 +59,9 @@ private void OnDrawCellChanged(EntityUid uid, PowerCellDrawComponent component, var canDraw = !args.Ejected && HasCharge(uid, float.MinValue); var canUse = !args.Ejected && HasActivatableCharge(uid, component); + if (!canDraw) + Toggle.TryDeactivate(uid); + if (canUse != component.CanUse || canDraw != component.CanDraw) { component.CanDraw = canDraw; diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index f45a01b2e1b0..0d2d9012bc79 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -39,8 +39,8 @@ public override void Initialize() SubscribeLocalEvent(OnDrawChargeChanged); SubscribeLocalEvent(OnDrawCellChanged); - // funny SubscribeLocalEvent(OnCellSlotExamined); + // funny SubscribeLocalEvent(OnSlotMicrowaved); } diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index 8a1606c48891..20d64acff15e 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -118,7 +118,7 @@ public void SpawnRoom( // go BRRNNTTT on existing stuff if (clearExisting) { - var gridBounds = new Box2(Vector2.Transform(Vector2.Zero, roomTransform), Vector2.Transform(room.Size, roomTransform)); + 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); diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index b73e843fffdb..9a7abb7e334e 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -33,7 +33,6 @@ public sealed partial class DungeonSystem : SharedDungeonSystem [Dependency] private readonly AnchorableSystem _anchorable = default!; [Dependency] private readonly DecalSystem _decals = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly SharedMapSystem _maps = default!; diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index 3fe4baca8b63..5e85fdb573ab 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -8,6 +8,7 @@ using Content.Shared.Salvage.Magnet; using Robust.Server.Maps; using Robust.Shared.Map; +using Robust.Shared.Map.Components; namespace Content.Server.Salvage; @@ -253,7 +254,8 @@ private async Task TakeMagnetOffer(Entity data, int var seed = data.Comp.Offered[index]; var offering = GetSalvageOffering(seed); - var salvMap = _mapManager.CreateMap(); + var salvMap = _mapSystem.CreateMap(); + var salvMapXform = Transform(salvMap); // Set values while awaiting asteroid dungeon if relevant so we can't double-take offers. data.Comp.ActiveSeed = seed; @@ -264,8 +266,8 @@ private async Task TakeMagnetOffer(Entity data, int switch (offering) { case AsteroidOffering asteroid: - var grid = _mapManager.CreateGrid(salvMap); - await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid, Vector2i.Zero, seed); + var grid = _mapManager.CreateGridEntity(salvMap); + await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid.Comp, Vector2i.Zero, seed); break; case SalvageOffering wreck: var salvageProto = wreck.SalvageMap; @@ -275,10 +277,10 @@ private async Task TakeMagnetOffer(Entity data, int Offset = new Vector2(0, 0) }; - if (!_map.TryLoad(salvMap, salvageProto.MapPath.ToString(), out var roots, opts)) + if (!_map.TryLoad(salvMapXform.MapID, salvageProto.MapPath.ToString(), out _, opts)) { Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated"); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); return; } @@ -288,15 +290,14 @@ private async Task TakeMagnetOffer(Entity data, int } Box2? bounds = null; - var mapXform = _xformQuery.GetComponent(_mapManager.GetMapEntityId(salvMap)); - if (mapXform.ChildCount == 0) + if (salvMapXform.ChildCount == 0) { Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-spawn-no-debris-available"); return; } - var mapChildren = mapXform.ChildEnumerator; + var mapChildren = salvMapXform.ChildEnumerator; while (mapChildren.MoveNext(out var mapChild)) { @@ -340,19 +341,25 @@ private async Task TakeMagnetOffer(Entity data, int if (!TryGetSalvagePlacementLocation(mapId, attachedBounds, bounds!.Value, worldAngle, out var spawnLocation, out var spawnAngle)) { Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-spawn-no-debris-available"); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); return; } + // I have no idea if we want to return on failure or not + // but I assume trying to set the parent with a null value wouldn't have worked out anyways + if (!_mapSystem.TryGetMap(spawnLocation.MapId, out var spawnUid)) + return; + data.Comp.ActiveEntities = null; - mapChildren = mapXform.ChildEnumerator; + mapChildren = salvMapXform.ChildEnumerator; // It worked, move it into position and cleanup values. while (mapChildren.MoveNext(out var mapChild)) { var salvXForm = _xformQuery.GetComponent(mapChild); var localPos = salvXForm.LocalPosition; - _transform.SetParent(mapChild, salvXForm, _mapManager.GetMapEntityId(spawnLocation.MapId)); + + _transform.SetParent(mapChild, salvXForm, spawnUid.Value); _transform.SetWorldPositionRotation(mapChild, spawnLocation.Position + localPos, spawnAngle, salvXForm); data.Comp.ActiveEntities ??= new List(); @@ -371,7 +378,7 @@ private async Task TakeMagnetOffer(Entity data, int } Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-arrived", ("timeLeft", data.Comp.ActiveTime.TotalSeconds)); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); data.Comp.Announced = false; diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 161b79108446..23a575413ed5 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -9,6 +9,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Salvage.Expeditions; using Content.Shared.Shuttles.Components; +using Content.Shared.Localizations; using Robust.Shared.Map.Components; using Robust.Shared.Player; @@ -103,8 +104,10 @@ private void OnFTLCompleted(ref FTLCompletedEvent args) Announce(args.MapUid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", (component.EndTime - _timing.CurTime).Minutes))); + var directionLocalization = ContentLocalizationManager.FormatDirection(component.DungeonLocation.GetDir()).ToLower(); + if (component.DungeonLocation != Vector2.Zero) - Announce(args.MapUid, Loc.GetString("salvage-expedition-announcement-dungeon", ("direction", component.DungeonLocation.GetDir()))); + Announce(args.MapUid, Loc.GetString("salvage-expedition-announcement-dungeon", ("direction", directionLocalization))); component.Stage = ExpeditionStage.Running; Dirty(args.MapUid, component); diff --git a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs index d5dca64eaaca..1fc207058d8c 100644 --- a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs +++ b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs @@ -9,21 +9,19 @@ namespace Content.Server.Sandbox.Commands { [AnyCommand] - public sealed class ColorNetworkCommand : IConsoleCommand + public sealed class ColorNetworkCommand : LocalizedCommands { [Dependency] private readonly IEntityManager _entManager = default!; - public string Command => "colornetwork"; - public string Description => Loc.GetString("color-network-command-description"); - public string Help => Loc.GetString("color-network-command-help-text", ("command",Command)); + public override string Command => "colornetwork"; - public void Execute(IConsoleShell shell, string argStr, string[] args) + 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))) { - shell.WriteError("You are not currently able to use mapping commands."); + shell.WriteError(Loc.GetString("cmd-colornetwork-no-access")); } if (args.Length != 3) diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index e82235e44f5b..fd149630814c 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -18,6 +18,7 @@ using Robust.Shared.Physics.Systems; using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Shared.Localizations; namespace Content.Server.Shuttles.Systems; @@ -67,8 +68,9 @@ private void OnThrusterExamine(EntityUid uid, ThrusterComponent component, Exami EntityManager.TryGetComponent(uid, out TransformComponent? xform) && xform.Anchored) { + var nozzleLocalization = ContentLocalizationManager.FormatDirection(xform.LocalRotation.Opposite().ToWorldVec().GetDir()).ToLower(); var nozzleDir = Loc.GetString("thruster-comp-nozzle-direction", - ("direction", xform.LocalRotation.Opposite().ToWorldVec().GetDir().ToString().ToLowerInvariant())); + ("direction", nozzleLocalization)); args.PushMarkup(nozzleDir); diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index 746d75f0d856..f289752b7cff 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -29,7 +29,7 @@ private void OnModuleGotInserted(EntityUid uid, BorgModuleComponent component, E if (!TryComp(chassis, out var chassisComp) || args.Container != chassisComp.ModuleContainer || - !chassisComp.Activated) + !Toggle.IsActivated(chassis)) return; if (!_powerCell.HasDrawCharge(uid)) @@ -143,6 +143,7 @@ public void SelectModule(EntityUid chassis, var ev = new BorgModuleSelectedEvent(chassis); RaiseLocalEvent(moduleUid, ref ev); chassisComp.SelectedModule = moduleUid; + Dirty(chassis, chassisComp); } /// @@ -162,6 +163,7 @@ public void UnselectModule(EntityUid chassis, BorgChassisComponent? chassisComp var ev = new BorgModuleUnselectedEvent(chassis); RaiseLocalEvent(chassisComp.SelectedModule.Value, ref ev); chassisComp.SelectedModule = null; + Dirty(chassis, chassisComp); } private void OnItemModuleSelected(EntityUid uid, ItemBorgModuleComponent component, ref BorgModuleSelectedEvent args) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index c97ca9cbc0db..3f32afbffbde 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Database; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs; @@ -39,7 +40,6 @@ public sealed partial class BorgSystem : SharedBorgSystem [Dependency] private readonly IBanManager _banManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedAccessSystem _access = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; @@ -73,6 +73,7 @@ public override void Initialize() SubscribeLocalEvent(OnPowerCellChanged); SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnGetDeadIC); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnBrainMindAdded); SubscribeLocalEvent(OnBrainPointAttempt); @@ -173,11 +174,11 @@ private void OnMobStateChanged(EntityUid uid, BorgChassisComponent component, Mo if (args.NewMobState == MobState.Alive) { if (_mind.TryGetMind(uid, out _, out _)) - _powerCell.SetPowerCellDrawEnabled(uid, true); + _powerCell.SetDrawEnabled(uid, true); } else { - _powerCell.SetPowerCellDrawEnabled(uid, false); + _powerCell.SetDrawEnabled(uid, false); } } @@ -185,24 +186,10 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P { UpdateBatteryAlert((uid, component)); - if (!TryComp(uid, out var draw)) - return; - - // if we eject the battery or run out of charge, then disable - if (args.Ejected || !_powerCell.HasDrawCharge(uid)) - { - DisableBorgAbilities(uid, component); - return; - } - // if we aren't drawing and suddenly get enough power to draw again, reeanble. - if (_powerCell.HasDrawCharge(uid, draw)) + if (_powerCell.HasDrawCharge(uid)) { - // only reenable the powerdraw if a player has the role. - if (!draw.Drawing && _mind.TryGetMind(uid, out _, out _) && _mobState.IsAlive(uid)) - _powerCell.SetPowerCellDrawEnabled(uid, true); - - EnableBorgAbilities(uid, component); + Toggle.TryActivate(uid); } UpdateUI(uid, component); @@ -210,7 +197,7 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P private void OnPowerCellSlotEmpty(EntityUid uid, BorgChassisComponent component, ref PowerCellSlotEmptyEvent args) { - DisableBorgAbilities(uid, component); + Toggle.TryDeactivate(uid); UpdateUI(uid, component); } @@ -219,6 +206,23 @@ private void OnGetDeadIC(EntityUid uid, BorgChassisComponent component, ref GetC args.Dead = true; } + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var (uid, comp) = ent; + if (args.Activated) + InstallAllModules(uid, comp); + else + DisableAllModules(uid, comp); + + // only enable the powerdraw if there is a player in the chassis + var drawing = _mind.TryGetMind(uid, out _, out _) && _mobState.IsAlive(ent); + _powerCell.SetDrawEnabled(uid, drawing); + + UpdateUI(uid, comp); + + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + } + private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindAddedMessage args) { if (!Container.TryGetOuterContainer(uid, Transform(uid), out var container)) @@ -271,44 +275,14 @@ private void UpdateBatteryAlert(Entity ent, PowerCellSlotC _alerts.ShowAlert(ent, ent.Comp.BatteryAlert, chargePercent); } - /// - /// Activates the borg, enabling all of its modules. - /// - public void EnableBorgAbilities(EntityUid uid, BorgChassisComponent component, PowerCellDrawComponent? powerCell = null) - { - if (component.Activated) - return; - - component.Activated = true; - InstallAllModules(uid, component); - Dirty(uid, component); - _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); - } - - /// - /// Deactivates the borg, disabling all of its modules and decreasing its speed. - /// - public void DisableBorgAbilities(EntityUid uid, BorgChassisComponent component) - { - if (!component.Activated) - return; - - component.Activated = false; - DisableAllModules(uid, component); - Dirty(uid, component); - _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); - } - /// /// Activates a borg when a player occupies it /// public void BorgActivate(EntityUid uid, BorgChassisComponent component) { Popup.PopupEntity(Loc.GetString("borg-mind-added", ("name", Identity.Name(uid, EntityManager))), uid); - _powerCell.SetPowerCellDrawEnabled(uid, true); - _access.SetAccessEnabled(uid, true); + Toggle.TryActivate(uid); _appearance.SetData(uid, BorgVisuals.HasPlayer, true); - Dirty(uid, component); } /// @@ -317,10 +291,8 @@ public void BorgActivate(EntityUid uid, BorgChassisComponent component) public void BorgDeactivate(EntityUid uid, BorgChassisComponent component) { Popup.PopupEntity(Loc.GetString("borg-mind-removed", ("name", Identity.Name(uid, EntityManager))), uid); - _powerCell.SetPowerCellDrawEnabled(uid, false); - _access.SetAccessEnabled(uid, false); + Toggle.TryDeactivate(uid); _appearance.SetData(uid, BorgVisuals.HasPlayer, false); - Dirty(uid, component); } /// diff --git a/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs b/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs index cac3debe8196..2b3d5aa3d491 100644 --- a/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs @@ -8,7 +8,7 @@ public sealed class OwOAccentSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; private static readonly IReadOnlyList Faces = new List{ - " (・`ω´・)", " ;;w;;", " owo", " UwU", " >w<", " ^w^" + " (•`ω´•)", " ;;w;;", " owo", " UwU", " >w<", " ^w^" }.AsReadOnly(); private static readonly IReadOnlyDictionary SpecialWords = new Dictionary() diff --git a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs index e145e233e9e0..8a918bd2fd04 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs @@ -17,7 +17,6 @@ public sealed partial class StationJobsSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IBanManager _banManager = default!; - [Dependency] private readonly PlayTimeTrackingSystem _playTime = default!; private Dictionary> _jobsByWeight = default!; private List _orderedWeights = default!; diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 84e44b6469cd..5930eef39bda 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -27,10 +27,8 @@ namespace Content.Server.Station.Systems; [PublicAPI] public sealed class StationSystem : EntitySystem { - [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; diff --git a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs deleted file mode 100644 index 99b893cad512..000000000000 --- a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Server.StationEvents.Events; - -namespace Content.Server.StationEvents.Components; - -/// -/// This is used to keep track of hallucinated entities to remove effects when event ends -/// -[RegisterComponent, Access(typeof(MassHallucinationsRule))] -public sealed partial class MassHallucinationsComponent : Component -{ -} diff --git a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs index 63a1f8725137..a5268f97a62f 100644 --- a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs +++ b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs @@ -1,5 +1,6 @@ using Content.Server.StationEvents.Events; using Robust.Shared.Audio; +using Robust.Shared.Collections; namespace Content.Server.StationEvents.Components; @@ -23,4 +24,7 @@ public sealed partial class MassHallucinationsRuleComponent : Component [DataField("sounds", required: true)] public SoundSpecifier Sounds = default!; + + [DataField, ViewVariables(VVAccess.ReadOnly)] + public List AffectedEntities = new(); } diff --git a/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs deleted file mode 100644 index d758247eca20..000000000000 --- a/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Server.StationEvents.Events; - -namespace Content.Server.StationEvents.Components; - -/// -/// Configuration component for the Space Ninja antag. -/// -[RegisterComponent, Access(typeof(NinjaSpawnRule))] -public sealed partial class NinjaSpawnRuleComponent : Component -{ - /// - /// Distance that the ninja spawns from the station's half AABB radius - /// - [DataField("spawnDistance")] - public float SpawnDistance = 20f; -} diff --git a/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs new file mode 100644 index 000000000000..a0168077fd67 --- /dev/null +++ b/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs @@ -0,0 +1,25 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.StationEvents.Components; + +/// +/// Component for spawning antags in space around a station. +/// Requires AntagSelectionComponent. +/// +[RegisterComponent, Access(typeof(SpaceSpawnRule))] +public sealed partial class SpaceSpawnRuleComponent : Component +{ + /// + /// Distance that the entity spawns from the station's half AABB radius + /// + [DataField] + public float SpawnDistance = 20f; + + /// + /// Location that was picked. + /// + [DataField] + public MapCoordinates? Coords; +} diff --git a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs index bfb7699e9d6e..b03231b5bcd7 100644 --- a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs +++ b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs @@ -2,9 +2,11 @@ using Content.Server.StationEvents.Components; using Content.Server.Traits.Assorted; using Content.Shared.GameTicking.Components; +using Content.Shared.Humanoid; using Content.Shared.Mind.Components; using Content.Shared.Traits.Assorted; + namespace Content.Server.StationEvents.Events; public sealed class MassHallucinationsRule : StationEventSystem @@ -14,16 +16,17 @@ public sealed class MassHallucinationsRule : StationEventSystem(); - while (query.MoveNext(out var ent, out _)) + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out _, out _)) { - if (!HasComp(ent)) + if (!EnsureComp(ent, out var paracusia)) { - EnsureComp(ent); - var paracusia = EnsureComp(ent); _paracusia.SetSounds(ent, component.Sounds, paracusia); _paracusia.SetTime(ent, component.MinTimeBetweenIncidents, component.MaxTimeBetweenIncidents, paracusia); _paracusia.SetDistance(ent, component.MaxSoundDistance); + + component.AffectedEntities.Add(ent); } } } @@ -31,10 +34,12 @@ protected override void Started(EntityUid uid, MassHallucinationsRuleComponent c protected override void Ended(EntityUid uid, MassHallucinationsRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) { base.Ended(uid, component, gameRule, args); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var ent, out _)) + + foreach (var ent in component.AffectedEntities) { RemComp(ent); } + + component.AffectedEntities.Clear(); } } diff --git a/Content.Server/StationEvents/Events/NinjaSpawnRule.cs b/Content.Server/StationEvents/Events/SpaceSpawnRule.cs similarity index 53% rename from Content.Server/StationEvents/Events/NinjaSpawnRule.cs rename to Content.Server/StationEvents/Events/SpaceSpawnRule.cs index 9cbc193ce61f..6fccaaa5cfcb 100644 --- a/Content.Server/StationEvents/Events/NinjaSpawnRule.cs +++ b/Content.Server/StationEvents/Events/SpaceSpawnRule.cs @@ -1,5 +1,5 @@ +using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Ninja.Systems; using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Shared.GameTicking.Components; @@ -9,18 +9,28 @@ namespace Content.Server.StationEvents.Events; /// -/// Event for spawning a Space Ninja mid-game. +/// Station event component for spawning this rules antags in space around a station. /// -public sealed class NinjaSpawnRule : StationEventSystem +public sealed class SpaceSpawnRule : StationEventSystem { [Dependency] private readonly SharedTransformSystem _transform = default!; - protected override void Started(EntityUid uid, NinjaSpawnRuleComponent comp, GameRuleComponent gameRule, GameRuleStartedEvent args) + public override void Initialize() { - base.Started(uid, comp, gameRule, args); + base.Initialize(); + + SubscribeLocalEvent(OnSelectLocation); + } + + protected override void Added(EntityUid uid, SpaceSpawnRuleComponent comp, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, comp, gameRule, args); if (!TryGetRandomStation(out var station)) + { + ForceEndSelf(uid, gameRule); return; + } var stationData = Comp(station.Value); @@ -28,22 +38,28 @@ protected override void Started(EntityUid uid, NinjaSpawnRuleComponent comp, Gam var gridUid = StationSystem.GetLargestGrid(stationData); if (gridUid == null || !TryComp(gridUid, out var grid)) { - Sawmill.Warning("Chosen station has no grids, cannot spawn space ninja!"); + Sawmill.Warning("Chosen station has no grids, cannot pick location for {ToPrettyString(uid):rule}"); + ForceEndSelf(uid, gameRule); return; } - // figure out its AABB size and use that as a guide to how far ninja should be + // figure out its AABB size and use that as a guide to how far the spawner should be var size = grid.LocalAABB.Size.Length() / 2; var distance = size + comp.SpawnDistance; var angle = RobustRandom.NextAngle(); // position relative to station center var location = angle.ToVec() * distance; - // create the spawner, the ninja will appear when a ghost has picked the role + // create the spawner! var xform = Transform(gridUid.Value); var position = _transform.GetWorldPosition(xform) + location; - var coords = new MapCoordinates(position, xform.MapID); - Sawmill.Info($"Creating ninja spawnpoint at {coords}"); - Spawn("SpawnPointGhostSpaceNinja", coords); + comp.Coords = new MapCoordinates(position, xform.MapID); + Sawmill.Info($"Picked location {comp.Coords} for {ToPrettyString(uid):rule}"); + } + + private void OnSelectLocation(Entity ent, ref AntagSelectLocationEvent args) + { + if (ent.Comp.Coords is {} coords) + args.Coordinates.Add(coords); } } diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index c1782efabaf1..97dd2c7e7359 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -19,7 +19,7 @@ public sealed class StunbatonSystem : SharedStunbatonSystem [Dependency] private readonly RiggableSystem _riggableSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; + [Dependency] private readonly ItemToggleSystem _itemToggle = default!; public override void Initialize() { diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index f41512b6ac2d..3bd540a3049a 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -11,7 +11,6 @@ namespace Content.Server.Traits; public sealed class TraitSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly ISerializationManager _serializationManager = default!; [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs index 45c6a3d9d557..a8460a8c6600 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs @@ -4,7 +4,7 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; -using Robust.Shared.Audio; +using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.Balloon; @@ -23,6 +23,7 @@ public sealed class BalloonPopperSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnThrowHit); } private void OnMeleeHit(EntityUid uid, BalloonPopperComponent component, MeleeHitEvent args) @@ -40,6 +41,15 @@ private void OnMeleeHit(EntityUid uid, BalloonPopperComponent component, MeleeHi } } + private void OnThrowHit(EntityUid uid, BalloonPopperComponent component, ThrowDoHitEvent args) + { + foreach (var held in _hands.EnumerateHeld(args.Target)) + { + if (_tag.HasTag(held, component.BalloonTag)) + PopBallooon(uid, held, component); + } + } + /// /// Pops a target balloon, making a popup and playing a sound. /// diff --git a/Content.Server/Weapons/Misc/TetherGunSystem.cs b/Content.Server/Weapons/Misc/TetherGunSystem.cs index f6aafe376d6f..2bf53d46f4bd 100644 --- a/Content.Server/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Server/Weapons/Misc/TetherGunSystem.cs @@ -1,4 +1,5 @@ using Content.Server.PowerCell; +using Content.Shared.Item.ItemToggle; using Content.Shared.PowerCell; using Content.Shared.Weapons.Misc; using Robust.Shared.Physics.Components; @@ -8,6 +9,7 @@ namespace Content.Server.Weapons.Misc; public sealed class TetherGunSystem : SharedTetherGunSystem { [Dependency] private readonly PowerCellSystem _cell = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; public override void Initialize() { @@ -36,12 +38,12 @@ protected override void StartTether(EntityUid gunUid, BaseForceGunComponent comp PhysicsComponent? targetPhysics = null, TransformComponent? targetXform = null) { base.StartTether(gunUid, component, target, user, targetPhysics, targetXform); - _cell.SetPowerCellDrawEnabled(gunUid, true); + _toggle.TryActivate(gunUid); } protected override void StopTether(EntityUid gunUid, BaseForceGunComponent component, bool land = true, bool transfer = false) { base.StopTether(gunUid, component, land, transfer); - _cell.SetPowerCellDrawEnabled(gunUid, false); + _toggle.TryDeactivate(gunUid); } } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 7f7c7ba85574..29f91988182f 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -24,6 +24,7 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Robust.Shared.Containers; namespace Content.Server.Weapons.Ranged.Systems; @@ -38,6 +39,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly StunSystem _stun = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; private const float DamagePitchVariation = 0.05f; public const float GunClumsyChance = 0.5f; @@ -204,17 +206,21 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? var result = rayCastResults[0]; - // Checks if the laser should pass over unless targeted by its user - foreach (var collide in rayCastResults) + // Check if laser is shot from in a container + if (!_container.IsEntityOrParentInContainer(lastUser)) { - if (collide.HitEntity != gun.Target && - CompOrNull(collide.HitEntity)?.Active == true) + // Checks if the laser should pass over unless targeted by its user + foreach (var collide in rayCastResults) { - continue; + if (collide.HitEntity != gun.Target && + CompOrNull(collide.HitEntity)?.Active == true) + { + continue; + } + + result = collide; + break; } - - result = collide; - break; } var hit = result.HitEntity; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs index c6f56a275082..a585a9ef4525 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Salvage; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; using Content.Shared.Clothing; +using Content.Shared.Item.ItemToggle.Components; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems; @@ -29,11 +30,11 @@ public override void Update(float frameTime) _toActivate.Clear(); - //assume that there's more instruments than artifacts - var query = EntityQueryEnumerator(); - while (query.MoveNext(out _, out var magboot, out var magXform)) + //assume that there's more magboots than artifacts + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out var magboot, out var magXform, out var toggle)) { - if (!magboot.On) + if (!toggle.Activated) continue; var artiQuery = EntityQueryEnumerator(); diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index a8952009e66e..74adea6cd697 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -9,7 +9,6 @@ using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.NPC; -using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; using Content.Server.Roles; @@ -24,10 +23,8 @@ using Content.Shared.Interaction.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Systems; -using Content.Shared.NPC.Components; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; @@ -38,6 +35,7 @@ using Content.Shared.Prying.Components; using Content.Shared.Traits.Assorted; using Robust.Shared.Audio.Systems; +using Content.Shared.Ghost.Roles.Components; namespace Content.Server.Zombies { diff --git a/Content.Shared/Access/Components/AccessToggleComponent.cs b/Content.Shared/Access/Components/AccessToggleComponent.cs new file mode 100644 index 000000000000..60a606ac7eae --- /dev/null +++ b/Content.Shared/Access/Components/AccessToggleComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Access.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Access.Components; + +/// +/// Toggles an access provider with ItemToggle. +/// Requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(AccessToggleSystem))] +public sealed partial class AccessToggleComponent : Component; diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 5d1932a959c5..2e0737c6ab20 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -155,7 +155,12 @@ public bool IsAllowed( return IsAllowedInternal(access, stationKeys, reader); if (!_containerSystem.TryGetContainer(target, reader.ContainerAccessProvider, out var container)) - return Paused(target); // when mapping, containers with electronics arent spawned + return false; + + // If entity is paused then always allow it at this point. + // Door electronics is kind of a mess but yeah, it should only be an unpaused ent interacting with it + if (Paused(target)) + return true; foreach (var entity in container.ContainedEntities) { diff --git a/Content.Shared/Access/Systems/AccessToggleSystem.cs b/Content.Shared/Access/Systems/AccessToggleSystem.cs new file mode 100644 index 000000000000..564aca068121 --- /dev/null +++ b/Content.Shared/Access/Systems/AccessToggleSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Access.Components; +using Content.Shared.Item.ItemToggle.Components; + +namespace Content.Shared.Access.Systems; + +public sealed class AccessToggleSystem : EntitySystem +{ + [Dependency] private readonly SharedAccessSystem _access = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + _access.SetAccessEnabled(ent, args.Activated); + } +} diff --git a/Content.Shared/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs index 333272e27acd..13359adcba2d 100644 --- a/Content.Shared/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -27,7 +27,8 @@ private void OnGetExamineVerbs(EntityUid uid, IdExaminableComponent component, G { Act = () => { - var markup = FormattedMessage.FromMarkup(info); + var markup = FormattedMessage.FromMarkupOrThrow(info); + _examineSystem.SendExamineTooltip(args.User, uid, markup, false, false); }, Text = Loc.GetString("id-examinable-component-verb-text"), diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index 005c7dc78ec7..afa1e19eaded 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -120,7 +120,13 @@ public bool CanThrow(EntityUid user, EntityUid itemUid) var ev = new ThrowAttemptEvent(user, itemUid); RaiseLocalEvent(user, ev); - return !ev.Cancelled; + if (ev.Cancelled) + return false; + + var itemEv = new ThrowItemAttemptEvent(user); + RaiseLocalEvent(itemUid, ref itemEv); + + return !itemEv.Cancelled; } public bool CanSpeak(EntityUid uid) diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index 1c5a3ba0d934..1a83cf38e513 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -261,7 +261,7 @@ public void RemoveAction(EntityUid actionId, BaseActionComponent? action = null) if (action.Container == null) return; - _transform.DetachParentToNull(actionId, Transform(actionId)); + _transform.DetachEntity(actionId, Transform(actionId)); // Container removal events should have removed the action from the action container. // However, just in case the container was already deleted we will still manually clear the container field diff --git a/Content.Shared/Actions/EntityTargetActionComponent.cs b/Content.Shared/Actions/EntityTargetActionComponent.cs index 9024f42e0e77..7217794b23b9 100644 --- a/Content.Shared/Actions/EntityTargetActionComponent.cs +++ b/Content.Shared/Actions/EntityTargetActionComponent.cs @@ -4,6 +4,9 @@ namespace Content.Shared.Actions; +/// +/// Used on action entities to define an action that triggers when targeting an entity. +/// [RegisterComponent, NetworkedComponent] public sealed partial class EntityTargetActionComponent : BaseTargetActionComponent { @@ -16,8 +19,15 @@ public sealed partial class EntityTargetActionComponent : BaseTargetActionCompon [NonSerialized] public EntityTargetActionEvent? Event; + /// + /// Determines which entities are valid targets for this action. + /// + /// No whitelist check when null. [DataField("whitelist")] public EntityWhitelist? Whitelist; + /// + /// Whether this action considers the user as a valid target entity when using this action. + /// [DataField("canTargetSelf")] public bool CanTargetSelf = true; } diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 0e302f1e0288..0033078b1b76 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -25,7 +25,6 @@ public abstract class SharedActionsSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly RotateToFaceSystem _rotateToFaceSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; @@ -238,7 +237,7 @@ private void OnRejuventate(EntityUid uid, ActionsComponent component, Rejuvenate } #region ComponentStateManagement - protected virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) + public virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) { // See client-side code. } @@ -427,7 +426,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg } var entityCoordinatesTarget = GetCoordinates(netCoordinatesTarget); - _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.ToMapPos(EntityManager, _transformSystem)); + _rotateToFaceSystem.TryFaceCoordinates(user, _transformSystem.ToMapCoordinates(entityCoordinatesTarget).Position); if (!ValidateWorldTarget(user, entityCoordinatesTarget, (actionEnt, worldAction))) return; @@ -533,7 +532,7 @@ private bool ValidateWorldTargetBase(EntityUid user, EntityCoordinates coords, W if (action.Range <= 0) return true; - return coords.InRange(EntityManager, _transformSystem, Transform(user).Coordinates, action.Range); + return _transformSystem.InRange(coords, Transform(user).Coordinates, action.Range); } return _interactionSystem.InRangeUnobstructed(user, coords, range: action.Range); diff --git a/Content.Shared/Actions/WorldTargetActionComponent.cs b/Content.Shared/Actions/WorldTargetActionComponent.cs index 4974b4478dbf..8066a6403492 100644 --- a/Content.Shared/Actions/WorldTargetActionComponent.cs +++ b/Content.Shared/Actions/WorldTargetActionComponent.cs @@ -3,6 +3,9 @@ namespace Content.Shared.Actions; +/// +/// Used on action entities to define an action that triggers when targeting an entity coordinate. +/// [RegisterComponent, NetworkedComponent] public sealed partial class WorldTargetActionComponent : BaseTargetActionComponent { diff --git a/Content.Shared/Audio/AmbientMusicPrototype.cs b/Content.Shared/Audio/AmbientMusicPrototype.cs index 54f70f57280f..219c41527d1f 100644 --- a/Content.Shared/Audio/AmbientMusicPrototype.cs +++ b/Content.Shared/Audio/AmbientMusicPrototype.cs @@ -1,4 +1,5 @@ using Content.Shared.Random; +using Content.Shared.Random.Rules; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index 581924c053be..648d1b40103d 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -34,8 +34,8 @@ public sealed partial class SleepingSystem : EntitySystem [Dependency] private readonly SharedEmitSoundSystem _emitSound = default!; [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; - public static readonly ProtoId SleepActionId = "ActionSleep"; - public static readonly ProtoId WakeActionId = "ActionWake"; + public static readonly EntProtoId SleepActionId = "ActionSleep"; + public static readonly EntProtoId WakeActionId = "ActionWake"; public override void Initialize() { diff --git a/Content.Shared/Beeper/Components/BeeperComponent.cs b/Content.Shared/Beeper/Components/BeeperComponent.cs index 54d242709c4d..f6efbb10f3e7 100644 --- a/Content.Shared/Beeper/Components/BeeperComponent.cs +++ b/Content.Shared/Beeper/Components/BeeperComponent.cs @@ -10,15 +10,12 @@ namespace Content.Shared.Beeper.Components; /// This is used for an item that beeps based on /// proximity to a specified component. /// +/// +/// Requires ItemToggleComponent to control it. +/// [RegisterComponent, NetworkedComponent, Access(typeof(BeeperSystem)), AutoGenerateComponentState] public sealed partial class BeeperComponent : Component { - /// - /// Whether or not it's on. - /// - [DataField, AutoNetworkedField] - public bool Enabled = true; - /// /// How much to scale the interval by (< 0 = min, > 1 = max) /// @@ -56,7 +53,7 @@ public sealed partial class BeeperComponent : Component /// Is the beep muted /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool IsMuted = false; + public bool IsMuted; /// /// The sound played when the locator beeps. diff --git a/Content.Shared/Beeper/Systems/BeeperSystem.cs b/Content.Shared/Beeper/Systems/BeeperSystem.cs index c51eef4da9d3..a52e19f75525 100644 --- a/Content.Shared/Beeper/Systems/BeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/BeeperSystem.cs @@ -1,5 +1,7 @@ using Content.Shared.Beeper.Components; using Content.Shared.FixedPoint; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Timing; @@ -11,34 +13,20 @@ namespace Content.Shared.Beeper.Systems; public sealed class BeeperSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly INetManager _net = default!; - - public override void Initialize() - { - } + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Update(float frameTime) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var beeper)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var beeper, out var toggle)) { - if (!beeper.Enabled) - continue; - RunUpdate_Internal(uid, beeper); + if (toggle.Activated) + RunUpdate_Internal(uid, beeper); } } - public void SetEnable(EntityUid owner, bool isEnabled, BeeperComponent? beeper = null) - { - if (!Resolve(owner, ref beeper) || beeper.Enabled == isEnabled) - return; - beeper.Enabled = isEnabled; - - RunUpdate_Internal(owner, beeper); - Dirty(owner, beeper); - } - public void SetIntervalScaling(EntityUid owner, BeeperComponent beeper, FixedPoint2 newScaling) { newScaling = FixedPoint2.Clamp(newScaling, 0, 1); @@ -70,6 +58,7 @@ public void SetMute(EntityUid owner, bool isMuted, BeeperComponent? comp = null) if (!Resolve(owner, ref comp)) return; comp.IsMuted = isMuted; + Dirty(owner, comp); } private void UpdateBeepInterval(EntityUid owner, BeeperComponent beeper) @@ -91,19 +80,17 @@ public void ForceUpdate(EntityUid owner, BeeperComponent? beeper = null) private void RunUpdate_Internal(EntityUid owner, BeeperComponent beeper) { - if (!beeper.Enabled) - { + if (!_toggle.IsActivated(owner)) return; - } + UpdateBeepInterval(owner, beeper); if (beeper.NextBeep >= _timing.CurTime) return; + var beepEvent = new BeepPlayedEvent(beeper.IsMuted); RaiseLocalEvent(owner, ref beepEvent); if (!beeper.IsMuted && _net.IsServer) - { _audio.PlayPvs(beeper.BeepSound, owner); - } beeper.LastBeepTime = _timing.CurTime; } } diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index bd857d4c29b0..9830e165e56f 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -1,7 +1,6 @@ using Content.Shared.Beeper.Components; -using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Pinpointer; -using Content.Shared.PowerCell; using Content.Shared.ProximityDetection; using Content.Shared.ProximityDetection.Components; using Content.Shared.ProximityDetection.Systems; @@ -9,20 +8,15 @@ namespace Content.Shared.Beeper.Systems; /// -/// This handles logic for implementing proximity beeper as a handheld tool /> +/// This handles controlling a beeper from proximity detector events. /// public sealed class ProximityBeeperSystem : EntitySystem { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; - [Dependency] private readonly ProximityDetectionSystem _proximity = default!; [Dependency] private readonly BeeperSystem _beeper = default!; /// public override void Initialize() { - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnNewProximityTarget); SubscribeLocalEvent(OnProximityTargetUpdate); } @@ -33,82 +27,16 @@ private void OnProximityTargetUpdate(EntityUid owner, ProximityBeeperComponent p return; if (args.Target == null) { - _beeper.SetEnable(owner, false, beeper); + _beeper.SetMute(owner, true, beeper); return; } - _beeper.SetIntervalScaling(owner,args.Distance/args.Detector.Range, beeper); - _beeper.SetEnable(owner, true, beeper); - } - - private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) - { - _beeper.SetEnable(owner, args.Target != null); - } - private void OnUseInHand(EntityUid uid, ProximityBeeperComponent proxBeeper, UseInHandEvent args) - { - if (args.Handled) - return; - args.Handled = TryToggle(uid, proxBeeper, user: args.User); + _beeper.SetIntervalScaling(owner, args.Distance / args.Detector.Range, beeper); + _beeper.SetMute(owner, false, beeper); } - private void OnPowerCellSlotEmpty(EntityUid uid, ProximityBeeperComponent beeper, ref PowerCellSlotEmptyEvent args) - { - if (_proximity.GetEnable(uid)) - TryDisable(uid); - } - public bool TryEnable(EntityUid owner, BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, - PowerCellDrawComponent? draw = null,EntityUid? user = null) - { - if (!Resolve(owner, ref beeper, ref detector)) - return false; - if (Resolve(owner, ref draw, false) && !_powerCell.HasActivatableCharge(owner, battery: draw, user: user)) - return false; - Enable(owner, beeper, detector, draw); - return true; - } - private void Enable(EntityUid owner, BeeperComponent beeper, - ProximityDetectorComponent detector, PowerCellDrawComponent? draw) - { - _proximity.SetEnable(owner, true, detector); - _appearance.SetData(owner, ProximityBeeperVisuals.Enabled, true); - _powerCell.SetPowerCellDrawEnabled(owner, true, draw); - } - - - /// - /// Disables the proximity beeper - /// - public bool TryDisable(EntityUid owner,BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, PowerCellDrawComponent? draw = null) - { - if (!Resolve(owner, ref beeper, ref detector)) - return false; - - if (!detector.Enabled) - return false; - Disable(owner, beeper, detector, draw); - return true; - } - private void Disable(EntityUid owner, BeeperComponent beeper, - ProximityDetectorComponent detector, PowerCellDrawComponent? draw) - { - _proximity.SetEnable(owner, false, detector); - _appearance.SetData(owner, ProximityBeeperVisuals.Enabled, false); - _beeper.SetEnable(owner, false, beeper); - _powerCell.SetPowerCellDrawEnabled(owner, false, draw); - } - - /// - /// toggles the proximity beeper - /// - public bool TryToggle(EntityUid owner, ProximityBeeperComponent? proxBeeper = null, BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, - PowerCellDrawComponent? draw = null, EntityUid? user = null) + private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) { - if (!Resolve(owner, ref proxBeeper, ref beeper, ref detector)) - return false; - - return detector.Enabled - ? TryDisable(owner, beeper, detector, draw) - : TryEnable(owner, beeper, detector, draw,user); + _beeper.SetMute(owner, args.Target != null); } } diff --git a/Content.Shared/Cargo/Components/BankClientComponent.cs b/Content.Shared/Cargo/Components/BankClientComponent.cs new file mode 100644 index 000000000000..4fd70855034f --- /dev/null +++ b/Content.Shared/Cargo/Components/BankClientComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Cargo; +using Robust.Shared.GameStates; + +namespace Content.Shared.Cargo.Components; + +/// +/// Makes an entity a client of the station's bank account. +/// When its balance changes it will have raised on it. +/// Other systems can then use this for logic or to update ui states. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))] +[AutoGenerateComponentState] +public sealed partial class BankClientComponent : Component +{ + /// + /// The balance updated for the last station this entity was a part of. + /// + [DataField, AutoNetworkedField] + public int Balance; +} + +/// +/// Raised on an entity with when the bank's balance is updated. +/// +[ByRefEvent] +public record struct BankBalanceUpdatedEvent(EntityUid Station, int Balance); diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index 5de1383cde02..7f95ef184e49 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -5,10 +5,14 @@ namespace Content.Shared.Charges.Systems; public abstract class SharedChargesSystem : EntitySystem { + protected EntityQuery Query; + public override void Initialize() { base.Initialize(); + Query = GetEntityQuery(); + SubscribeLocalEvent(OnExamine); } @@ -30,9 +34,9 @@ protected virtual void OnExamine(EntityUid uid, LimitedChargesComponent comp, Ex /// /// Tries to add a number of charges. If it over or underflows it will be clamped, wasting the extra charges. /// - public void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) + public virtual void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) { - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return; var old = comp.Charges; @@ -47,7 +51,7 @@ public void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp public bool IsEmpty(EntityUid uid, LimitedChargesComponent? comp = null) { // can't be empty if there are no limited charges - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return false; return comp.Charges <= 0; @@ -56,10 +60,24 @@ public bool IsEmpty(EntityUid uid, LimitedChargesComponent? comp = null) /// /// Uses a single charge. Must check IsEmpty beforehand to prevent using with 0 charge. /// - public virtual void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + public void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + { + AddCharges(uid, -1, comp); + } + + /// + /// Checks IsEmpty and uses a charge if it isn't empty. + /// + public bool TryUseCharge(Entity ent) { - if (Resolve(uid, ref comp, false)) - AddCharges(uid, -1, comp); + if (!Query.Resolve(ent, ref ent.Comp, false)) + return true; + + if (IsEmpty(ent, ent.Comp)) + return false; + + UseCharge(ent, ent.Comp); + return true; } /// @@ -80,7 +98,6 @@ public bool HasInsufficientCharges(EntityUid uid, int requiredCharges, LimitedCh /// public virtual void UseCharges(EntityUid uid, int chargesUsed, LimitedChargesComponent? comp = null) { - if (Resolve(uid, ref comp, false)) - AddCharges(uid, -chargesUsed, comp); + AddCharges(uid, -chargesUsed, comp); } } diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index dffe3cc185b4..9d60d334dbea 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.ActionBlocker; using Content.Shared.Clothing; +using Content.Shared.Inventory; using Robust.Shared.Player; +using Robust.Shared.Timing; namespace Content.Shared.Chat.TypingIndicator; @@ -11,6 +13,7 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly IGameTiming _timing = default!; /// /// Default ID of @@ -26,6 +29,7 @@ public override void Initialize() SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent>(BeforeShow); SubscribeAllEvent(OnTypingChanged); } @@ -44,20 +48,19 @@ private void OnPlayerDetached(EntityUid uid, TypingIndicatorComponent component, SetTypingIndicatorEnabled(uid, false); } - private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotEquippedEvent args) + private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) { - if (!TryComp(args.Wearer, out var indicator)) - return; - - indicator.Prototype = component.Prototype; + entity.Comp.GotEquippedTime = _timing.CurTime; } - private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotUnequippedEvent args) + private void OnGotUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) { - if (!TryComp(args.Wearer, out var indicator)) - return; + entity.Comp.GotEquippedTime = null; + } - indicator.Prototype = InitialIndicatorId; + private void BeforeShow(Entity entity, ref InventoryRelayedEvent args) + { + args.Args.TryUpdateTimeAndIndicator(entity.Comp.TypingIndicatorPrototype, entity.Comp.GotEquippedTime); } private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args) diff --git a/Content.Shared/Chat/TypingIndicator/TypingChangedEvent.cs b/Content.Shared/Chat/TypingIndicator/TypingChangedEvent.cs deleted file mode 100644 index 6245f19b5d45..000000000000 --- a/Content.Shared/Chat/TypingIndicator/TypingChangedEvent.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Chat.TypingIndicator; - -/// -/// Networked event from client. -/// Send to server when client started/stopped typing in chat input field. -/// -[Serializable, NetSerializable] -public sealed class TypingChangedEvent : EntityEventArgs -{ - public readonly bool IsTyping; - - public TypingChangedEvent(bool isTyping) - { - IsTyping = isTyping; - } -} diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs index 5ec8185587a2..4993e912e93f 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorClothingComponent.cs @@ -1,13 +1,28 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Chat.TypingIndicator; -[RegisterComponent, NetworkedComponent] +/// +/// If an item is equipped to someones inventory (Anything but the pockets), and has this component +/// the users typing indicator will be replaced by the prototype given in TypingIndicatorPrototype. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] [Access(typeof(SharedTypingIndicatorSystem))] public sealed partial class TypingIndicatorClothingComponent : Component { + /// + /// The typing indicator that will override the default typing indicator when the item is equipped to a users + /// inventory. + /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype = default!; + [DataField("proto", required: true)] + public ProtoId TypingIndicatorPrototype = default!; + + /// + /// This stores the time the item was equipped in someones inventory. If null, item is currently not equipped. + /// + [DataField, AutoPausedField] + public TimeSpan? GotEquippedTime = null; } diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs index a4507b06b8ab..f263de491360 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorComponent.cs @@ -1,5 +1,5 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Shared.Chat.TypingIndicator; @@ -14,7 +14,6 @@ public sealed partial class TypingIndicatorComponent : Component /// /// Prototype id that store all visual info about typing indicator. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("proto", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype = SharedTypingIndicatorSystem.InitialIndicatorId; + [DataField("proto")] + public ProtoId TypingIndicatorPrototype = "default"; } diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs new file mode 100644 index 000000000000..600f86c0d2c4 --- /dev/null +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorEvents.cs @@ -0,0 +1,60 @@ +using Robust.Shared.Serialization; +using Content.Shared.Inventory; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.Manager.Exceptions; + +namespace Content.Shared.Chat.TypingIndicator; + +/// +/// Networked event from client. +/// Send to server when client started/stopped typing in chat input field. +/// +[Serializable, NetSerializable] +public sealed class TypingChangedEvent : EntityEventArgs +{ + public readonly bool IsTyping; + + public TypingChangedEvent(bool isTyping) + { + IsTyping = isTyping; + } +} + +/// +/// This event will be broadcast right before displaying an entities typing indicator. +/// If _overrideIndicator is not null after the event is finished it will be used. +/// +[Serializable, NetSerializable] +public sealed class BeforeShowTypingIndicatorEvent : IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + + private ProtoId? _overrideIndicator = null; + private TimeSpan? _latestEquipTime = null; + public BeforeShowTypingIndicatorEvent() + { + _overrideIndicator = null; + _latestEquipTime = null; + } + /// + /// Will only update the time and indicator if the given time is more recent than + /// the stored time or if the stored time is null. + /// + /// + /// True if the given time is more recent than the stored time, and false otherwise. + /// + public bool TryUpdateTimeAndIndicator(ProtoId? indicator, TimeSpan? equipTime) + { + if (equipTime != null && (_latestEquipTime == null || _latestEquipTime < equipTime)) + { + _latestEquipTime = equipTime; + _overrideIndicator = indicator; + return true; + } + return false; + } + public ProtoId? GetMostRecentIndicator() + { + return _overrideIndicator; + } +} diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index ee7f9bd57981..aec683406390 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -73,6 +73,12 @@ public sealed partial class InjectorComponent : Component [DataField] public TimeSpan Delay = TimeSpan.FromSeconds(5); + /// + /// Each additional 1u after first 5u increases the delay by X seconds. + /// + [DataField] + public TimeSpan DelayPerVolume = TimeSpan.FromSeconds(0.1); + /// /// The state of the injector. Determines it's attack behavior. Containers must have the /// right SolutionCaps to support injection/drawing. For InjectOnly injectors this should diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs index b130304afc8c..86d8da9d3d92 100644 --- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Chemistry.Components; /// /// Gives click behavior for transferring to/from other reagent containers. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class SolutionTransferComponent : Component { /// @@ -14,6 +14,7 @@ public sealed partial class SolutionTransferComponent : Component /// [DataField("transferAmount")] [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(5); /// diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs index 93e9765b1640..e5d8cc5f5976 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -38,11 +38,15 @@ public override void Initialize() private void OnTransferAmountSetValueMessage(Entity ent, ref TransferAmountSetValueMessage message) { - var newTransferAmount = FixedPoint2.Clamp(message.Value, ent.Comp.MinimumTransferAmount, ent.Comp.MaximumTransferAmount); - ent.Comp.TransferAmount = newTransferAmount; + var (uid, comp) = ent; + + var newTransferAmount = FixedPoint2.Clamp(message.Value, comp.MinimumTransferAmount, comp.MaximumTransferAmount); + comp.TransferAmount = newTransferAmount; if (message.Actor is { Valid: true } user) - _popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", newTransferAmount)), ent, user); + _popup.PopupEntity(Loc.GetString("comp-solution-transfer-set-amount", ("amount", newTransferAmount)), uid, user); + + Dirty(uid, comp); } private void AddSetTransferVerbs(Entity ent, ref GetVerbsEvent args) @@ -78,7 +82,10 @@ private void AddSetTransferVerbs(Entity ent, ref GetV verb.Act = () => { comp.TransferAmount = amount; + _popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", amount)), uid, user); + + Dirty(uid, comp); }; // we want to sort by size, not alphabetically by the verb text. @@ -110,6 +117,7 @@ private void OnAfterInteract(Entity ent, ref AfterInt transferAmount = FixedPoint2.Min(transferAmount, maxRefill); var transferred = Transfer(args.User, target, targetSoln.Value, uid, ownerSoln.Value, transferAmount); + args.Handled = true; if (transferred > 0) { var toTheBrim = ownerRefill.AvailableVolume == 0; @@ -118,8 +126,6 @@ private void OnAfterInteract(Entity ent, ref AfterInt : "comp-solution-transfer-fill-normal"; _popup.PopupClient(Loc.GetString(msg, ("owner", args.Target), ("amount", transferred), ("target", uid)), uid, args.User); - - args.Handled = true; return; } } @@ -136,13 +142,11 @@ private void OnAfterInteract(Entity ent, ref AfterInt transferAmount = FixedPoint2.Min(transferAmount, maxRefill); var transferred = Transfer(args.User, uid, ownerSoln.Value, target, targetSoln.Value, transferAmount); - + args.Handled = true; if (transferred > 0) { var message = Loc.GetString("comp-solution-transfer-transfer-solution", ("amount", transferred), ("target", target)); _popup.PopupClient(message, uid, args.User); - - args.Handled = true; } } } @@ -195,6 +199,9 @@ public FixedPoint2 Transfer(EntityUid user, var solution = _solution.SplitSolution(source, actualAmount); _solution.AddSolution(target, solution); + var ev = new SolutionTransferredEvent(sourceEntity, targetEntity, user, actualAmount); + RaiseLocalEvent(targetEntity, ref ev); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user):player} transferred {SharedSolutionContainerSystem.ToPrettyString(solution)} to {ToPrettyString(targetEntity):target}, which now contains {SharedSolutionContainerSystem.ToPrettyString(targetSolution)}"); @@ -218,3 +225,9 @@ public void Cancel(string reason) CancelReason = reason; } } + +/// +/// Raised on the target entity when a non-zero amount of solution gets transferred. +/// +[ByRefEvent] +public record struct SolutionTransferredEvent(EntityUid From, EntityUid To, EntityUid User, FixedPoint2 Amount); diff --git a/Content.Shared/Clock/ClockComponent.cs b/Content.Shared/Clock/ClockComponent.cs new file mode 100644 index 000000000000..3a1027d8136f --- /dev/null +++ b/Content.Shared/Clock/ClockComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Clock; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedClockSystem))] +[AutoGenerateComponentState] +public sealed partial class ClockComponent : Component +{ + /// + /// If not null, this time will be permanently shown. + /// + [DataField, AutoNetworkedField] + public TimeSpan? StuckTime; + + /// + /// The format in which time is displayed. + /// + [DataField, AutoNetworkedField] + public ClockType ClockType = ClockType.TwelveHour; + + [DataField] + public string HoursBase = "hours_"; + + [DataField] + public string MinutesBase = "minutes_"; +} + +[Serializable, NetSerializable] +public enum ClockType : byte +{ + TwelveHour, + TwentyFourHour +} + +[Serializable, NetSerializable] +public enum ClockVisualLayers : byte +{ + HourHand, + MinuteHand +} diff --git a/Content.Shared/Clock/GlobalTimeManagerComponent.cs b/Content.Shared/Clock/GlobalTimeManagerComponent.cs new file mode 100644 index 000000000000..764b578b2506 --- /dev/null +++ b/Content.Shared/Clock/GlobalTimeManagerComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Clock; + +/// +/// This is used for globally managing the time on-station +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(SharedClockSystem))] +public sealed partial class GlobalTimeManagerComponent : Component +{ + /// + /// A fixed random offset, used to fuzz the time between shifts. + /// + [DataField, AutoPausedField, AutoNetworkedField] + public TimeSpan TimeOffset; +} diff --git a/Content.Shared/Clock/SharedClockSystem.cs b/Content.Shared/Clock/SharedClockSystem.cs new file mode 100644 index 000000000000..0a7c1b01b2c3 --- /dev/null +++ b/Content.Shared/Clock/SharedClockSystem.cs @@ -0,0 +1,66 @@ +using System.Linq; +using Content.Shared.Examine; +using Content.Shared.GameTicking; + +namespace Content.Shared.Clock; + +public abstract class SharedClockSystem : EntitySystem +{ + [Dependency] private readonly SharedGameTicker _ticker = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("clock-examine", ("time", GetClockTimeText(ent)))); + } + + public string GetClockTimeText(Entity ent) + { + var time = GetClockTime(ent); + switch (ent.Comp.ClockType) + { + case ClockType.TwelveHour: + return time.ToString(@"h\:mm"); + case ClockType.TwentyFourHour: + return time.ToString(@"hh\:mm"); + default: + throw new ArgumentOutOfRangeException(); + } + } + + private TimeSpan GetGlobalTime() + { + return (EntityQuery().FirstOrDefault()?.TimeOffset ?? TimeSpan.Zero) + _ticker.RoundDuration(); + } + + public TimeSpan GetClockTime(Entity ent) + { + var comp = ent.Comp; + + if (comp.StuckTime != null) + return comp.StuckTime.Value; + + var time = GetGlobalTime(); + + switch (comp.ClockType) + { + case ClockType.TwelveHour: + var adjustedHours = time.Hours % 12; + if (adjustedHours == 0) + adjustedHours = 12; + return new TimeSpan(adjustedHours, time.Minutes, time.Seconds); + case ClockType.TwentyFourHour: + return time; + default: + throw new ArgumentOutOfRangeException(); + } + } +} diff --git a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs index c3c4baf19d0e..866ce38a5721 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs @@ -3,20 +3,18 @@ namespace Content.Shared.Clothing; +/// +/// Modifies speed when worn and activated. +/// Supports ItemToggleComponent. +/// [RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem))] public sealed partial class ClothingSpeedModifierComponent : Component { - [DataField("walkModifier", required: true)] [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float WalkModifier = 1.0f; - [DataField("sprintModifier", required: true)] [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float SprintModifier = 1.0f; - - /// - /// Is this clothing item currently 'actively' slowing you down? - /// e.g. magboots can be turned on and off. - /// - [DataField("enabled")] public bool Enabled = true; } [Serializable, NetSerializable] @@ -25,12 +23,9 @@ public sealed class ClothingSpeedModifierComponentState : ComponentState public float WalkModifier; public float SprintModifier; - public bool Enabled; - - public ClothingSpeedModifierComponentState(float walkModifier, float sprintModifier, bool enabled) + public ClothingSpeedModifierComponentState(float walkModifier, float sprintModifier) { WalkModifier = walkModifier; SprintModifier = sprintModifier; - Enabled = enabled; } } diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 4198c5c165bd..897f3791561c 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -1,11 +1,10 @@ -using Content.Shared.Actions; using Content.Shared.Clothing.Components; using Content.Shared.Examine; -using Content.Shared.IdentityManagement; using Content.Shared.Inventory; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Movement.Systems; using Content.Shared.PowerCell; -using Content.Shared.Toggleable; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -15,13 +14,10 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actions = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; - [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; public override void Initialize() { @@ -31,39 +27,12 @@ public override void Initialize() SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent>(OnRefreshMoveSpeed); SubscribeLocalEvent>(OnClothingVerbExamine); - - SubscribeLocalEvent>(AddToggleVerb); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleSpeed); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnPowerCellSlotEmpty); + SubscribeLocalEvent(OnToggled); } - // Public API - - public void SetClothingSpeedModifierEnabled(EntityUid uid, bool enabled, ClothingSpeedModifierComponent? component = null) - { - if (!Resolve(uid, ref component, false)) - return; - - if (component.Enabled != enabled) - { - component.Enabled = enabled; - Dirty(uid, component); - - // inventory system will automatically hook into the event raised by this and update accordingly - if (_container.TryGetContainingContainer(uid, out var container)) - { - _movementSpeed.RefreshMovementSpeedModifiers(container.Owner); - } - } - } - - // Event handlers - private void OnGetState(EntityUid uid, ClothingSpeedModifierComponent component, ref ComponentGetState args) { - args.State = new ClothingSpeedModifierComponentState(component.WalkModifier, component.SprintModifier, component.Enabled); + args.State = new ClothingSpeedModifierComponentState(component.WalkModifier, component.SprintModifier); } private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent component, ref ComponentHandleState args) @@ -71,13 +40,11 @@ private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent compone if (args.Current is not ClothingSpeedModifierComponentState state) return; - var diff = component.Enabled != state.Enabled || - !MathHelper.CloseTo(component.SprintModifier, state.SprintModifier) || + var diff = !MathHelper.CloseTo(component.SprintModifier, state.SprintModifier) || !MathHelper.CloseTo(component.WalkModifier, state.WalkModifier); component.WalkModifier = state.WalkModifier; component.SprintModifier = state.SprintModifier; - component.Enabled = state.Enabled; // Avoid raising the event for the container if nothing changed. // We'll still set the values in case they're slightly different but within tolerance. @@ -89,10 +56,8 @@ private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent compone private void OnRefreshMoveSpeed(EntityUid uid, ClothingSpeedModifierComponent component, InventoryRelayedEvent args) { - if (!component.Enabled) - return; - - args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); + if (_toggle.IsActivated(uid)) + args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); } private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent component, GetVerbsEvent args) @@ -142,60 +107,15 @@ private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent _examine.AddDetailedExamineVerb(args, component, msg, Loc.GetString("clothing-speed-examinable-verb-text"), "/Textures/Interface/VerbIcons/outfit.svg.192dpi.png", Loc.GetString("clothing-speed-examinable-verb-message")); } - private void OnMapInit(Entity uid, ref MapInitEvent args) - { - _actions.AddAction(uid, ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); - } - - private void OnToggleSpeed(Entity uid, ref ToggleClothingSpeedEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, args.Performer); - } - - private void SetSpeedToggleEnabled(Entity uid, bool value, EntityUid? user) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - if (uid.Comp.Enabled == value) - return; - - TryComp(uid, out var draw); - if (value && !_powerCell.HasDrawCharge(uid, draw, user: user)) - return; + // make sentient boots slow or fast too + _movementSpeed.RefreshMovementSpeedModifiers(ent); - uid.Comp.Enabled = value; - - _appearance.SetData(uid, ToggleVisuals.Toggled, uid.Comp.Enabled); - _actions.SetToggled(uid.Comp.ToggleActionEntity, uid.Comp.Enabled); - _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid.Owner, uid.Comp.Enabled); - _powerCell.SetPowerCellDrawEnabled(uid, uid.Comp.Enabled, draw); - Dirty(uid, uid.Comp); - } - - private void AddToggleVerb(Entity uid, ref GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var user = args.User; - ActivationVerb verb = new() + if (_container.TryGetContainingContainer(ent.Owner, out var container)) { - Text = Loc.GetString("toggle-clothing-verb-text", - ("entity", Identity.Entity(uid, EntityManager))), - Act = () => SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, user) - }; - args.Verbs.Add(verb); - } - - private void OnGetActions(Entity uid, ref GetItemActionsEvent args) - { - args.AddAction(ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); - } - - private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) - { - SetSpeedToggleEnabled(uid, false, null); + // inventory system will automatically hook into the event raised by this and update accordingly + _movementSpeed.RefreshMovementSpeedModifiers(container.Owner); + } } } diff --git a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs index 1a40d1dca12a..ffcb52b45766 100644 --- a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Humanoid; using Content.Shared.Inventory; using Robust.Shared.GameStates; @@ -30,4 +31,16 @@ public sealed partial class FoldableClothingComponent : Component /// [DataField] public string? FoldedHeldPrefix; + + /// + /// Which layers does this hide when Unfolded? See and + /// + [DataField] + public HashSet UnfoldedHideLayers = new(); + + /// + /// Which layers does this hide when folded? See and + /// + [DataField] + public HashSet FoldedHideLayers = new(); } diff --git a/Content.Shared/Clothing/Components/StealthClothingComponent.cs b/Content.Shared/Clothing/Components/StealthClothingComponent.cs deleted file mode 100644 index fedf48b36edc..000000000000 --- a/Content.Shared/Clothing/Components/StealthClothingComponent.cs +++ /dev/null @@ -1,43 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Clothing.EntitySystems; -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Clothing.Components; - -/// -/// Adds StealthComponent to the user when enabled, either by an action or the system's SetEnabled method. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(StealthClothingSystem))] -public sealed partial class StealthClothingComponent : Component -{ - /// - /// Whether stealth effect is enabled. - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Enabled; - - /// - /// Number added to MinVisibility when stealthed, to make the user not fully invisible. - /// - [DataField("visibility"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Visibility; - - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleAction = "ActionTogglePhaseCloak"; - - /// - /// The action for enabling and disabling stealth. - /// - [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; -} - -/// -/// When stealth is enabled, disables it. -/// When it is disabled, raises before enabling. -/// Put any checks in a handler for that event to cancel it. -/// -public sealed partial class ToggleStealthEvent : InstantActionEvent -{ -} diff --git a/Content.Shared/Clothing/Components/ToggleClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingComponent.cs new file mode 100644 index 000000000000..c77aa03475ff --- /dev/null +++ b/Content.Shared/Clothing/Components/ToggleClothingComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +/// +/// Clothing that can be enabled and disabled with an action. +/// Requires . +/// +/// +/// Not to be confused with for hardsuit helmets and such. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(ToggleClothingSystem))] +public sealed partial class ToggleClothingComponent : Component +{ + /// + /// The action to add when equipped, even if not worn. + /// This must raise to then get handled. + /// + [DataField(required: true)] + public EntProtoId Action = string.Empty; + + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + + /// + /// If true, automatically disable the clothing after unequipping it. + /// + [DataField] + public bool DisableOnUnequip; +} + +/// +/// Raised on the clothing when being equipped to see if it should add the action. +/// +[ByRefEvent] +public record struct ToggleClothingCheckEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs deleted file mode 100644 index 90b2d7322e0d..000000000000 --- a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs +++ /dev/null @@ -1,35 +0,0 @@ -using Content.Shared.Actions; -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Clothing.Components; - -/// -/// This is used for a clothing item that gives a speed modification that is toggleable. -/// -[RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem)), AutoGenerateComponentState] -public sealed partial class ToggleClothingSpeedComponent : Component -{ - /// - /// The action for toggling the clothing. - /// - [DataField] - public EntProtoId ToggleAction = "ActionToggleSpeedBoots"; - - /// - /// The action entity - /// - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; - - /// - /// The state of the toggle. - /// - [DataField, AutoNetworkedField] - public bool Enabled; -} - -public sealed partial class ToggleClothingSpeedEvent : InstantActionEvent -{ - -} diff --git a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs index be55588ddd57..603af4099c8f 100644 --- a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs @@ -47,6 +47,10 @@ private void OnFolded(Entity ent, ref FoldedEvent arg if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp); + + if (TryComp(ent.Owner, out var hideLayerComp)) + hideLayerComp.Slots = ent.Comp.FoldedHideLayers; + } else { @@ -59,6 +63,9 @@ private void OnFolded(Entity ent, ref FoldedEvent arg if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); + if (TryComp(ent.Owner, out var hideLayerComp)) + hideLayerComp.Slots = ent.Comp.UnfoldedHideLayers; + } } } diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index fced03bfabfc..f5df04037ee6 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -78,7 +78,7 @@ protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } public bool IsValidTarget(EntityPrototype proto, SlotFlags chameleonSlot = SlotFlags.NONE) { // check if entity is valid - if (proto.Abstract || proto.NoSpawn) + if (proto.Abstract || proto.HideSpawnMenu) return false; // check if it is marked as valid chameleon target diff --git a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs deleted file mode 100644 index e96d9f866aa4..000000000000 --- a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs +++ /dev/null @@ -1,144 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; -using Content.Shared.Stealth; -using Content.Shared.Stealth.Components; - -namespace Content.Shared.Clothing.EntitySystems; - -/// -/// Handles the toggle action and disables stealth when clothing is unequipped. -/// -public sealed class StealthClothingSystem : EntitySystem -{ - [Dependency] private readonly SharedStealthSystem _stealth = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetItemActions); - SubscribeLocalEvent(OnToggleStealth); - SubscribeLocalEvent(OnHandleState); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnMapInit); - } - - private void OnMapInit(EntityUid uid, StealthClothingComponent component, MapInitEvent args) - { - _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); - } - - /// - /// Sets the clothing's stealth effect for the user. - /// - /// True if it was changed, false otherwise - public bool SetEnabled(EntityUid uid, EntityUid user, bool enabled, StealthClothingComponent? comp = null) - { - if (!Resolve(uid, ref comp) || comp.Enabled == enabled) - return false; - - // TODO remove this when clothing unequip on delete is less sus - // prevent debug assert when ending round and its disabled - if (MetaData(user).EntityLifeStage >= EntityLifeStage.Terminating) - return false; - - comp.Enabled = enabled; - Dirty(uid, comp); - - var stealth = EnsureComp(user); - // slightly visible, but doesn't change when moving so it's ok - var visibility = enabled ? stealth.MinVisibility + comp.Visibility : stealth.MaxVisibility; - _stealth.SetVisibility(user, visibility, stealth); - _stealth.SetEnabled(user, enabled, stealth); - return true; - } - - /// - /// Raise then add the toggle action if it was not cancelled. - /// - private void OnGetItemActions(EntityUid uid, StealthClothingComponent comp, GetItemActionsEvent args) - { - var ev = new AddStealthActionEvent(args.User); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) - return; - - args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); - } - - /// - /// Raises if enabling. - /// - private void OnToggleStealth(EntityUid uid, StealthClothingComponent comp, ToggleStealthEvent args) - { - args.Handled = true; - var user = args.Performer; - if (comp.Enabled) - { - SetEnabled(uid, user, false, comp); - return; - } - - var ev = new AttemptStealthEvent(user); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) - return; - - SetEnabled(uid, user, true, comp); - } - - /// - /// Calls when server sends new state. - /// - private void OnHandleState(EntityUid uid, StealthClothingComponent comp, ref AfterAutoHandleStateEvent args) - { - // SetEnabled checks if it is the same, so change it to before state was received from the server - var enabled = comp.Enabled; - comp.Enabled = !enabled; - var user = Transform(uid).ParentUid; - SetEnabled(uid, user, enabled, comp); - } - - /// - /// Force unstealths the user, doesnt remove StealthComponent since other things might use it - /// - private void OnUnequipped(EntityUid uid, StealthClothingComponent comp, GotUnequippedEvent args) - { - SetEnabled(uid, args.Equipee, false, comp); - } -} - -/// -/// Raised on the stealth clothing when attempting to add an action. -/// -public sealed class AddStealthActionEvent : CancellableEntityEventArgs -{ - /// - /// User that equipped the stealth clothing. - /// - public EntityUid User; - - public AddStealthActionEvent(EntityUid user) - { - User = user; - } -} - -/// -/// Raised on the stealth clothing when the user is attemping to enable it. -/// -public sealed class AttemptStealthEvent : CancellableEntityEventArgs -{ - /// - /// User that is attempting to enable the stealth clothing. - /// - public EntityUid User; - - public AttemptStealthEvent(EntityUid user) - { - User = user; - } -} diff --git a/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs new file mode 100644 index 000000000000..9889376c9d41 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs @@ -0,0 +1,58 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing; +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Toggleable; + +namespace Content.Shared.Clothing.EntitySystems; + +/// +/// Handles adding and using a toggle action for . +/// +public sealed class ToggleClothingSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnToggleAction); + SubscribeLocalEvent(OnUnequipped); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + // test funny + if (string.IsNullOrEmpty(comp.Action)) + return; + + _actions.AddAction(uid, ref comp.ActionEntity, comp.Action); + _actions.SetToggled(comp.ActionEntity, _toggle.IsActivated(ent.Owner)); + Dirty(uid, comp); + } + + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) + { + var ev = new ToggleClothingCheckEvent(args.User); + RaiseLocalEvent(ent, ref ev); + if (!ev.Cancelled) + args.AddAction(ent.Comp.ActionEntity); + } + + private void OnToggleAction(Entity ent, ref ToggleActionEvent args) + { + args.Handled = _toggle.Toggle(ent.Owner, args.Performer); + } + + private void OnUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + if (ent.Comp.DisableOnUnequip) + _toggle.TryDeactivate(ent.Owner, args.Wearer); + } +} diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index b3fb607a38be..4bef74fd3350 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,23 +1,13 @@ using Content.Shared.Alert; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Clothing; -[RegisterComponent, NetworkedComponent(), AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent] [Access(typeof(SharedMagbootsSystem))] public sealed partial class MagbootsComponent : Component { - [DataField] - public EntProtoId ToggleAction = "ActionToggleMagboots"; - - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; - - [DataField("on"), AutoNetworkedField] - public bool On; - [DataField] public ProtoId MagbootsAlert = "Magboots"; @@ -26,4 +16,10 @@ public sealed partial class MagbootsComponent : Component /// [DataField] public bool RequiresGrid = true; + + /// + /// Slot the clothing has to be worn in to work. + /// + [DataField] + public string Slot = "shoes"; } diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs new file mode 100644 index 000000000000..88d987aae181 --- /dev/null +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -0,0 +1,90 @@ +using Content.Shared.Actions; +using Content.Shared.Alert; +using Content.Shared.Atmos.Components; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Gravity; +using Content.Shared.Inventory; +using Content.Shared.Item; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; +using Robust.Shared.Containers; + +namespace Content.Shared.Clothing; + +public sealed class SharedMagbootsSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly ClothingSystem _clothing = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnIsWeightless); + SubscribeLocalEvent>(OnIsWeightless); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var (uid, comp) = ent; + // only stick to the floor if being worn in the correct slot + if (_container.TryGetContainingContainer(uid, out var container) && + _inventory.TryGetSlotEntity(container.Owner, comp.Slot, out var worn) + && uid == worn) + { + UpdateMagbootEffects(container.Owner, ent, args.Activated); + } + + var prefix = args.Activated ? "on" : null; + _item.SetHeldPrefix(ent, prefix); + _clothing.SetEquippedPrefix(ent, prefix); + } + + private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + UpdateMagbootEffects(args.Wearer, ent, false); + } + + private void OnGotEquipped(Entity ent, ref ClothingGotEquippedEvent args) + { + UpdateMagbootEffects(args.Wearer, ent, _toggle.IsActivated(ent.Owner)); + } + + public void UpdateMagbootEffects(EntityUid user, Entity ent, bool state) + { + // TODO: public api for this and add access + if (TryComp(user, out var moved)) + moved.Enabled = !state; + + if (state) + _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); + else + _alerts.ClearAlert(user, ent.Comp.MagbootsAlert); + } + + private void OnIsWeightless(Entity ent, ref IsWeightlessEvent args) + { + if (args.Handled || !_toggle.IsActivated(ent.Owner)) + return; + + // do not cancel weightlessness if the person is in off-grid. + if (ent.Comp.RequiresGrid && !_gravity.EntityOnGravitySupportingGridOrMap(ent.Owner)) + return; + + args.IsWeightless = false; + args.Handled = true; + } + + private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) + { + OnIsWeightless(ent, ref args.Args); + } +} diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs deleted file mode 100644 index 68145936152e..000000000000 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ /dev/null @@ -1,160 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Alert; -using Content.Shared.Atmos.Components; -using Content.Shared.Clothing.EntitySystems; -using Content.Shared.Gravity; -using Content.Shared.Inventory; -using Content.Shared.Item; -using Content.Shared.Slippery; -using Content.Shared.Toggleable; -using Content.Shared.Verbs; -using Robust.Shared.Containers; - -namespace Content.Shared.Clothing; - -public sealed class SharedMagbootsSystem : EntitySystem -{ - [Dependency] private readonly AlertsSystem _alerts = default!; - [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; - [Dependency] private readonly ClothingSystem _clothing = default!; - [Dependency] private readonly SharedGravitySystem _gravity = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly SharedActionsSystem _sharedActions = default!; - [Dependency] private readonly SharedActionsSystem _actionContainer = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedContainerSystem _sharedContainer = default!; - [Dependency] private readonly SharedItemSystem _item = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(AddToggleVerb); - SubscribeLocalEvent>(OnSlipAttempt); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleMagboots); - SubscribeLocalEvent(OnMapInit); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - - SubscribeLocalEvent>(OnIsWeightless); - } - - private void OnMapInit(EntityUid uid, MagbootsComponent component, MapInitEvent args) - { - _actionContainer.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); - } - - private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, ref ClothingGotUnequippedEvent args) - { - UpdateMagbootEffects(args.Wearer, uid, false, component); - } - - private void OnGotEquipped(EntityUid uid, MagbootsComponent component, ref ClothingGotEquippedEvent args) - { - UpdateMagbootEffects(args.Wearer, uid, true, component); - } - - private void OnToggleMagboots(EntityUid uid, MagbootsComponent component, ToggleMagbootsEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - - ToggleMagboots(uid, component); - } - - private void ToggleMagboots(EntityUid uid, MagbootsComponent magboots) - { - magboots.On = !magboots.On; - - if (_sharedContainer.TryGetContainingContainer((uid, Transform(uid)), out var container) && - _inventory.TryGetSlotEntity(container.Owner, "shoes", out var entityUid) && entityUid == uid) - { - UpdateMagbootEffects(container.Owner, uid, true, magboots); - } - - if (TryComp(uid, out var item)) - { - _item.SetHeldPrefix(uid, magboots.On ? "on" : null, component: item); - _clothing.SetEquippedPrefix(uid, magboots.On ? "on" : null); - } - - _appearance.SetData(uid, ToggleVisuals.Toggled, magboots.On); - OnChanged(uid, magboots); - Dirty(uid, magboots); - } - - public void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) - { - if (!Resolve(uid, ref component)) - return; - state = state && component.On; - - if (TryComp(parent, out MovedByPressureComponent? movedByPressure)) - { - movedByPressure.Enabled = !state; - } - - if (state) - { - _alerts.ShowAlert(parent, component.MagbootsAlert); - } - else - { - _alerts.ClearAlert(parent, component.MagbootsAlert); - } - } - - private void OnChanged(EntityUid uid, MagbootsComponent component) - { - _sharedActions.SetToggled(component.ToggleActionEntity, component.On); - _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid, component.On); - } - - private void AddToggleVerb(EntityUid uid, MagbootsComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - ActivationVerb verb = new() - { - Text = Loc.GetString("toggle-magboots-verb-get-data-text"), - Act = () => ToggleMagboots(uid, component), - // TODO VERB ICON add toggle icon? maybe a computer on/off symbol? - }; - args.Verbs.Add(verb); - } - - private void OnSlipAttempt(EntityUid uid, MagbootsComponent component, InventoryRelayedEvent args) - { - if (component.On) - args.Args.Cancel(); - } - - private void OnGetActions(EntityUid uid, MagbootsComponent component, GetItemActionsEvent args) - { - args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); - } - - private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) - { - if (args.Args.Handled) - return; - - if (!ent.Comp.On) - return; - - // do not cancel weightlessness if the person is in off-grid. - if (ent.Comp.RequiresGrid && !_gravity.EntityOnGravitySupportingGridOrMap(ent.Owner)) - return; - - args.Args.IsWeightless = false; - args.Args.Handled = true; - } -} - -public sealed partial class ToggleMagbootsEvent : InstantActionEvent; diff --git a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs index 14507ce1f5ce..6bc32c5b96c6 100644 --- a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs +++ b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs @@ -62,6 +62,9 @@ private void ShowPopup(Entity user, EntityUid target, string private void OnShootAttempt(Entity ent, ref ShotAttemptedEvent args) { + if (HasComp(args.Used)) + return; + // Disallow firing guns in all cases. ShowPopup(ent, args.Used, "pacified-cannot-fire-gun"); args.Cancel(); diff --git a/Content.Shared/CombatMode/Pacification/PacifismAllowedGunComponent.cs b/Content.Shared/CombatMode/Pacification/PacifismAllowedGunComponent.cs new file mode 100644 index 000000000000..7decbeb3bc6a --- /dev/null +++ b/Content.Shared/CombatMode/Pacification/PacifismAllowedGunComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.CombatMode.Pacification; + +/// +/// Guns with this component can be fired by pacifists +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class PacifismAllowedGunComponent : Component +{ +} diff --git a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs index 79b374a60f35..12838eb04d9b 100644 --- a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs +++ b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs @@ -2,11 +2,14 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Standing; using Robust.Shared.Physics.Events; +using Robust.Shared.Containers; namespace Content.Shared.Damage.Components; public sealed class RequireProjectileTargetSystem : EntitySystem { + [Dependency] private readonly SharedContainerSystem _container = default!; + public override void Initialize() { SubscribeLocalEvent(PreventCollide); @@ -23,10 +26,16 @@ private void PreventCollide(Entity ent, ref Pr return; var other = args.OtherEntity; - if (HasComp(other) && + if (TryComp(other, out ProjectileComponent? projectile) && CompOrNull(other)?.Target != ent) { - args.Cancelled = true; + // Prevents shooting out of while inside of crates + var shooter = projectile.Shooter; + if (!shooter.HasValue) + return; + + if (!_container.IsEntityOrParentInContainer(shooter.Value)) + args.Cancelled = true; } } diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index 1f9a7f1dd841..a5c8a4b38de7 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -192,6 +192,11 @@ private void OnThrowHit(EntityUid uid, StaminaDamageOnCollideComponent component private void OnCollide(EntityUid uid, StaminaDamageOnCollideComponent component, EntityUid target) { + // you can't inflict stamina damage on things with no stamina component + // this prevents stun batons from using up charges when throwing it at lockers or lights + if (!HasComp(target)) + return; + var ev = new StaminaDamageOnHitAttemptEvent(); RaiseLocalEvent(uid, ref ev); if (ev.Cancelled) diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 4f77a271b37b..ad94f3b94086 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -170,7 +170,7 @@ private bool ShouldCancel(DoAfter doAfter, if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User, xform: userXform))) { // Whether the user has moved too much from their original position. - if (!userXform.Coordinates.InRange(EntityManager, _transform, doAfter.UserPosition, args.MovementThreshold)) + if (!_transform.InRange(userXform.Coordinates, doAfter.UserPosition, args.MovementThreshold)) return true; // Whether the distance between the user and target(if any) has changed too much. diff --git a/Content.Shared/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs b/Content.Shared/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs index 80d65f4c2cdc..1138e74af8f7 100644 --- a/Content.Shared/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs +++ b/Content.Shared/Explosion/Components/OnTrigger/SmokeOnTriggerComponent.cs @@ -29,7 +29,7 @@ public sealed partial class SmokeOnTriggerComponent : Component /// Defaults to smoke but you can use foam if you want. /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public ProtoId SmokePrototype = "Smoke"; + public EntProtoId SmokePrototype = "Smoke"; /// /// Solution to add to each smoke cloud. diff --git a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs deleted file mode 100644 index dbb1f6f2c4de..000000000000 --- a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Extinguisher; - -[NetworkedComponent] -public abstract partial class SharedFireExtinguisherComponent : Component -{ - [DataField("refillSound")] public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); - - [DataField("hasSafety")] public bool HasSafety = true; - - [DataField("safety")] public bool Safety = true; - - [DataField("safetySound")] - public SoundSpecifier SafetySound { get; private set; } = new SoundPathSpecifier("/Audio/Machines/button.ogg"); -} - - -[Serializable, NetSerializable] -public enum FireExtinguisherVisuals : byte -{ - Safety -} diff --git a/Content.Shared/Fax/AdminFaxEui.cs b/Content.Shared/Fax/AdminFaxEui.cs index 7b3e1fae8d33..613a13d0124d 100644 --- a/Content.Shared/Fax/AdminFaxEui.cs +++ b/Content.Shared/Fax/AdminFaxEui.cs @@ -56,8 +56,9 @@ public sealed class Send : EuiMessageBase public string Content { get; } public string StampState { get; } public Color StampColor { get; } + public bool Locked { get; } - public Send(NetEntity target, string title, string from, string content, string stamp, Color stampColor) + public Send(NetEntity target, string title, string from, string content, string stamp, Color stampColor, bool locked) { Target = target; Title = title; @@ -65,6 +66,7 @@ public Send(NetEntity target, string title, string from, string content, string Content = content; StampState = stamp; StampColor = stampColor; + Locked = locked; } } } diff --git a/Content.Shared/Fax/Components/FaxMachineComponent.cs b/Content.Shared/Fax/Components/FaxMachineComponent.cs index 6664ce023dda..1c089865088f 100644 --- a/Content.Shared/Fax/Components/FaxMachineComponent.cs +++ b/Content.Shared/Fax/Components/FaxMachineComponent.cs @@ -150,11 +150,14 @@ public sealed partial class FaxPrintout [DataField("stampedBy")] public List StampedBy { get; private set; } = new(); + [DataField] + public bool Locked { get; private set; } + private FaxPrintout() { } - public FaxPrintout(string content, string name, string? label = null, string? prototypeId = null, string? stampState = null, List? stampedBy = null) + public FaxPrintout(string content, string name, string? label = null, string? prototypeId = null, string? stampState = null, List? stampedBy = null, bool locked = false) { Content = content; Name = name; @@ -162,5 +165,6 @@ public FaxPrintout(string content, string name, string? label = null, string? pr PrototypeId = prototypeId ?? ""; StampState = stampState; StampedBy = stampedBy ?? new List(); + Locked = locked; } } diff --git a/Content.Shared/Fluids/Components/SpraySafetyComponent.cs b/Content.Shared/Fluids/Components/SpraySafetyComponent.cs new file mode 100644 index 000000000000..30827d4fd1cf --- /dev/null +++ b/Content.Shared/Fluids/Components/SpraySafetyComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Fluids.Components; + +/// +/// Uses ItemToggle to control safety for a spray item. +/// You can't spray or refill it while safety is on. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SpraySafetySystem))] +public sealed partial class SpraySafetyComponent : Component +{ + /// + /// Popup shown when trying to spray or refill with safety on. + /// + [DataField] + public LocId Popup = "fire-extinguisher-component-safety-on-message"; + + /// + /// Sound to play after refilling. + /// + [DataField] + public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); +} diff --git a/Content.Shared/Fluids/Events.cs b/Content.Shared/Fluids/Events.cs index e281de91377b..198e88877428 100644 --- a/Content.Shared/Fluids/Events.cs +++ b/Content.Shared/Fluids/Events.cs @@ -34,3 +34,15 @@ public AbsorbantDoAfterEvent(string targetSolution, string message, SoundSpecifi public override DoAfterEvent Clone() => this; } + +/// +/// Raised when trying to spray something, for example a fire extinguisher. +/// +[ByRefEvent] +public record struct SprayAttemptEvent(EntityUid User, bool Cancelled = false) +{ + public void Cancel() + { + Cancelled = true; + } +} diff --git a/Content.Shared/Fluids/SpraySafetySystem.cs b/Content.Shared/Fluids/SpraySafetySystem.cs new file mode 100644 index 000000000000..82006a995b96 --- /dev/null +++ b/Content.Shared/Fluids/SpraySafetySystem.cs @@ -0,0 +1,44 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Fluids.Components; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Fluids; + +public sealed class SpraySafetySystem : EntitySystem +{ + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTransferAttempt); + SubscribeLocalEvent(OnTransferred); + SubscribeLocalEvent(OnSprayAttempt); + } + + private void OnTransferAttempt(Entity ent, ref SolutionTransferAttemptEvent args) + { + var (uid, comp) = ent; + if (uid == args.To && !_toggle.IsActivated(uid)) + args.Cancel(Loc.GetString(comp.Popup)); + } + + private void OnTransferred(Entity ent, ref SolutionTransferredEvent args) + { + _audio.PlayPredicted(ent.Comp.RefillSound, ent, args.User); + } + + private void OnSprayAttempt(Entity ent, ref SprayAttemptEvent args) + { + if (!_toggle.IsActivated(ent.Owner)) + { + _popup.PopupEntity(Loc.GetString(ent.Comp.Popup), ent, args.User); + args.Cancel(); + } + } +} diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 8027ee449c4a..8c35617e2c3e 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -227,7 +227,7 @@ public void StopFollowingEntity(EntityUid uid, EntityUid target, FollowedCompone if (_netMan.IsClient) { - _transform.DetachParentToNull(uid, xform); + _transform.DetachEntity(uid, xform); return; } diff --git a/Content.Shared/Friends/Systems/PettableFriendSystem.cs b/Content.Shared/Friends/Systems/PettableFriendSystem.cs index 00a4ddd155c3..6e41f4bdea96 100644 --- a/Content.Shared/Friends/Systems/PettableFriendSystem.cs +++ b/Content.Shared/Friends/Systems/PettableFriendSystem.cs @@ -32,23 +32,23 @@ private void OnUseInHand(Entity ent, ref UseInHandEvent { var (uid, comp) = ent; var user = args.User; - if (args.Handled || !_exceptionQuery.TryGetComponent(uid, out var exceptionComp)) - return; - - if (_useDelayQuery.TryGetComponent(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + if (args.Handled || !_exceptionQuery.TryComp(uid, out var exceptionComp)) return; var exception = (uid, exceptionComp); - if (_factionException.IsIgnored(exception, user)) + if (!_factionException.IsIgnored(exception, user)) { - _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); + // you have made a new friend :) + _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); + _factionException.IgnoreEntity(exception, user); + args.Handled = true; return; } - // you have made a new friend :) - _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); - _factionException.IgnoreEntity(exception, user); - args.Handled = true; + if (_useDelayQuery.TryComp(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + return; + + _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); } private void OnRehydrated(Entity ent, ref GotRehydratedEvent args) diff --git a/Content.Shared/Ghost/GhostRoleRadioEvents.cs b/Content.Shared/Ghost/GhostRoleRadioEvents.cs new file mode 100644 index 000000000000..8bdd6e583755 --- /dev/null +++ b/Content.Shared/Ghost/GhostRoleRadioEvents.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ghost.Roles; + +[Serializable, NetSerializable] +public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage +{ + public ProtoId ProtoId; + + public GhostRoleRadioMessage(ProtoId protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public enum GhostRoleRadioUiKey : byte +{ + Key +} diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs similarity index 85% rename from Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs rename to Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 6116173f904b..2e44effad965 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -1,12 +1,11 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; -namespace Content.Server.Ghost.Roles.Components +namespace Content.Shared.Ghost.Roles.Components { /// /// Allows a ghost to take this role, spawning a new entity. /// [RegisterComponent, EntityCategory("Spawner")] - [Access(typeof(GhostRoleSystem))] public sealed partial class GhostRoleMobSpawnerComponent : Component { [DataField] diff --git a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs index bc36774ea8ba..3e81b5e46e8e 100644 --- a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs +++ b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs @@ -30,6 +30,13 @@ public sealed partial class GhostRolePrototype : IPrototype [DataField(required: true)] public EntProtoId EntityPrototype; + /// + /// The entity prototype's sprite to use to represent the ghost role + /// Use this if you don't want to use the entity itself + /// + [DataField] + public EntProtoId? IconPrototype = null; + /// /// Rules of the ghostrole /// diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index 84a389a39c5f..01579cccdb79 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -42,7 +42,7 @@ public sealed partial class HandsComponent : Component /// [DataField] [ViewVariables(VVAccess.ReadWrite)] - public float BaseThrowspeed { get; set; } = 10f; + public float BaseThrowspeed { get; set; } = 11f; /// /// Distance after which longer throw targets stop increasing throw impulse. diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 4d21e40a9872..2e3c6f620344 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -110,7 +110,10 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat return false; var entity = hand.HeldEntity!.Value; - DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); + + // if item is a fake item (like with pulling), just delete it rather than bothering with trying to drop it into the world + if (TryComp(entity, out VirtualItemComponent? @virtual)) + _virtualSystem.DeleteVirtualItem((entity, @virtual), uid); if (TerminatingOrDeleted(entity)) return true; @@ -122,16 +125,18 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat var userXform = Transform(uid); var isInContainer = ContainerSystem.IsEntityOrParentInContainer(uid, xform: userXform); + // drop the item inside the container if the user is in a container if (targetDropLocation == null || isInContainer) { - // If user is in a container, drop item into that container. Otherwise, attach to grid or map. TransformSystem.DropNextTo((entity, itemXform), (uid, userXform)); return true; } + // otherwise, remove the item from their hands and place it at the calculated interaction range position + DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); var (itemPos, itemRot) = TransformSystem.GetWorldPositionRotation(entity); var origin = new MapCoordinates(itemPos, itemXform.MapID); - var target = targetDropLocation.Value.ToMap(EntityManager, TransformSystem); + var target = TransformSystem.ToMapCoordinates(targetDropLocation.Value); TransformSystem.SetWorldPositionRotation(entity, GetFinalDropCoordinates(uid, origin, target), itemRot); return true; } diff --git a/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs new file mode 100644 index 000000000000..6cdf167b295a --- /dev/null +++ b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.IconSmoothing; + +/// +/// Allow randomize StateBase of IconSmoothComponent for random visual variation +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class RandomIconSmoothComponent : Component +{ + /// + /// StateBase will be randomly selected from this list. Allows to randomize the visual. + /// + [DataField(required: true)] + public List RandomStates = new(); +} diff --git a/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs new file mode 100644 index 000000000000..5cb5299858cb --- /dev/null +++ b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.IconSmoothing; + +public abstract class SharedRandomIconSmoothSystem : EntitySystem +{ +} +[Serializable, NetSerializable] +public enum RandomIconSmoothState : byte +{ + State +} diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 48076ca360ff..c32b4bcf7809 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -38,8 +38,6 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; -#pragma warning disable 618 - namespace Content.Shared.Interaction { /// @@ -522,11 +520,11 @@ public void InteractUsingRanged(EntityUid user, EntityUid used, EntityUid? targe protected bool ValidateInteractAndFace(EntityUid user, EntityCoordinates coordinates) { // Verify user is on the same map as the entity they clicked on - if (coordinates.GetMapId(EntityManager) != Transform(user).MapID) + if (_transform.GetMapId(coordinates) != Transform(user).MapID) return false; if (!HasComp(user)) - _rotateToFaceSystem.TryFaceCoordinates(user, coordinates.ToMapPos(EntityManager, _transform)); + _rotateToFaceSystem.TryFaceCoordinates(user, _transform.ToMapCoordinates(coordinates).Position); return true; } @@ -859,7 +857,7 @@ public bool InRangeUnobstructed( Ignored? predicate = null, bool popup = false) { - return InRangeUnobstructed(origin, other.ToMap(EntityManager, _transform), range, collisionMask, predicate, popup); + return InRangeUnobstructed(origin, _transform.ToMapCoordinates(other), range, collisionMask, predicate, popup); } /// @@ -966,7 +964,7 @@ public void InteractUsing( /// public void InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool canReach) { - if (target is {Valid: false}) + if (target is { Valid: false }) target = null; var afterInteractEvent = new AfterInteractEvent(user, used, target, clickLocation, canReach); diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index bba294db28d2..4feb0445f8f9 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -62,21 +62,22 @@ private void HandleSmartEquip(ICommonSession? session, string equipmentSlot) if (playerSession.AttachedEntity is not { Valid: true } uid || !Exists(uid)) return; - if (!_actionBlocker.CanInteract(uid, null)) - return; - // early out if we don't have any hands or a valid inventory slot if (!TryComp(uid, out var hands) || hands.ActiveHand == null) return; + var handItem = hands.ActiveHand.HeldEntity; + + // can the user interact, and is the item interactable? e.g. virtual items + if (!_actionBlocker.CanInteract(uid, handItem)) + return; + if (!TryComp(uid, out var inventory) || !_inventory.HasSlot(uid, equipmentSlot, inventory)) { _popup.PopupClient(Loc.GetString("smart-equip-missing-equipment-slot", ("slotName", equipmentSlot)), uid, uid); return; } - var handItem = hands.ActiveHand.HeldEntity; - // early out if we have an item and cant drop it at all if (handItem != null && !_hands.CanDropHeld(uid, hands.ActiveHand)) { diff --git a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs index 4a5894d89589..8b9c052c8d5b 100644 --- a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs +++ b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Hands; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; using Content.Shared.Inventory.Events; using Content.Shared.Item; using Content.Shared.Popups; @@ -43,6 +44,7 @@ public override void Initialize() SubscribeLocalEvent(OnBeingUnequippedAttempt); SubscribeLocalEvent(OnBeforeRangedInteract); + SubscribeLocalEvent(OnGettingInteractedWithAttemptEvent); } /// @@ -72,6 +74,12 @@ private void OnBeforeRangedInteract(Entity ent, ref Before args.Handled = true; } + private void OnGettingInteractedWithAttemptEvent(Entity ent, ref GettingInteractedWithAttemptEvent args) + { + // No interactions with a virtual item, please. + args.Cancelled = true; + } + #region Hands /// @@ -244,7 +252,7 @@ public void DeleteVirtualItem(Entity item, EntityUid user) if (TerminatingOrDeleted(item)) return; - _transformSystem.DetachParentToNull(item, Transform(item)); + _transformSystem.DetachEntity(item, Transform(item)); if (_netManager.IsServer) QueueDel(item); } diff --git a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs new file mode 100644 index 000000000000..760cefe27d41 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.Item.ItemToggle.Components; + +namespace Content.Shared.Item.ItemToggle; + +/// +/// Handles component manipulation. +/// +public sealed class ComponentTogglerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var target = ent.Comp.Parent ? Transform(ent).ParentUid : ent.Owner; + + if (args.Activated) + EntityManager.AddComponents(target, ent.Comp.Components); + else + EntityManager.RemoveComponents(target, ent.Comp.RemoveComponents ?? ent.Comp.Components); + } +} diff --git a/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs new file mode 100644 index 000000000000..20ef0a023153 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs @@ -0,0 +1,32 @@ +using Content.Shared.Item.ItemToggle; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Item.ItemToggle.Components; + +/// +/// Adds or removes components when toggled. +/// Requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ComponentTogglerSystem))] +public sealed partial class ComponentTogglerComponent : Component +{ + /// + /// The components to add when activated. + /// + [DataField(required: true)] + public ComponentRegistry Components = new(); + + /// + /// The components to remove when deactivated. + /// If this is null is reused. + /// + [DataField] + public ComponentRegistry? RemoveComponents; + + /// + /// If true, adds components on the entity's parent instead of the entity itself. + /// + [DataField] + public bool Parent; +} diff --git a/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs b/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs index 6d534713578b..cdac49ae6d61 100644 --- a/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs +++ b/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs @@ -12,12 +12,12 @@ public sealed partial class ItemToggleActiveSoundComponent : Component /// /// The continuous noise this item makes when it's activated (like an e-sword's hum). /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField(required: true), AutoNetworkedField] public SoundSpecifier? ActiveSound; /// /// Used when the item emits sound while active. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public EntityUid? PlayingStream; } diff --git a/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs b/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs index 620ddfd19422..46249fdd0def 100644 --- a/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs +++ b/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Item.ItemToggle.Components; /// /// /// If you need extended functionality (e.g. requiring power) then add a new component and use events: -/// ItemToggleActivateAttemptEvent, ItemToggleDeactivateAttemptEvent or ItemToggleForceToggleEvent. +/// ItemToggleActivateAttemptEvent, ItemToggleDeactivateAttemptEvent, ItemToggledEvent. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ItemToggleComponent : Component @@ -19,6 +19,13 @@ public sealed partial class ItemToggleComponent : Component [DataField, AutoNetworkedField] public bool Activated = false; + /// + /// If this is set to false then the item can't be toggled by pressing Z. + /// Use another system to do it then. + /// + [DataField] + public bool OnUse = true; + /// /// Whether the item's toggle can be predicted by the client. /// diff --git a/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs b/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs new file mode 100644 index 000000000000..b673c55e0f16 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Item.ItemToggle; +using Robust.Shared.GameStates; + +namespace Content.Shared.Item.ItemToggle.Components; + +/// +/// Adds a verb for toggling something, requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ToggleVerbSystem))] +public sealed partial class ToggleVerbComponent : Component +{ + /// + /// Text the verb will have. + /// Gets passed "entity" as the entity's identity string. + /// + [DataField(required: true)] + public LocId Text = string.Empty; +} diff --git a/Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs similarity index 54% rename from Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs rename to Content.Shared/Item/ItemToggle/ItemToggleSystem.cs index 523f67bac3de..6b969d1d62b7 100644 --- a/Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs +++ b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs @@ -15,12 +15,12 @@ namespace Content.Shared.Item.ItemToggle; /// /// If you need extended functionality (e.g. requiring power) then add a new component and use events. /// -public abstract class SharedItemToggleSystem : EntitySystem +public sealed class ItemToggleSystem : EntitySystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPointLightSystem _light = default!; - [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() @@ -28,8 +28,9 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(TurnOffonUnwielded); - SubscribeLocalEvent(TurnOnonWielded); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(TurnOffOnUnwielded); + SubscribeLocalEvent(TurnOnOnWielded); SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnIsHotEvent); @@ -42,57 +43,76 @@ private void OnStartup(Entity ent, ref ComponentStartup arg UpdateVisuals(ent); } - private void OnUseInHand(EntityUid uid, ItemToggleComponent itemToggle, UseInHandEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (!ent.Comp.Activated) + return; + + var ev = new ItemToggledEvent(Predicted: ent.Comp.Predictable, Activated: ent.Comp.Activated, User: null); + RaiseLocalEvent(ent, ref ev); + } + + private void OnUseInHand(Entity ent, ref UseInHandEvent args) { - if (args.Handled) + if (args.Handled || !ent.Comp.OnUse) return; args.Handled = true; - Toggle(uid, args.User, predicted: itemToggle.Predictable, itemToggle: itemToggle); + Toggle((ent, ent.Comp), args.User, predicted: ent.Comp.Predictable); } /// /// Used when an item is attempted to be toggled. + /// Sets its state to the opposite of what it is. /// - public void Toggle(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + /// Same as + public bool Toggle(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) - return; + if (!Resolve(ent, ref ent.Comp)) + return false; - if (itemToggle.Activated) - { - TryDeactivate(uid, user, itemToggle: itemToggle, predicted: predicted); - } + return TrySetActive(ent, !ent.Comp.Activated, user, predicted); + } + + /// + /// Tries to set the activated bool from a value. + /// + /// false if the attempt fails for any reason + public bool TrySetActive(Entity ent, bool active, EntityUid? user = null, bool predicted = true) + { + if (active) + return TryActivate(ent, user, predicted: predicted); else - { - TryActivate(uid, user, itemToggle: itemToggle, predicted: predicted); - } + return TryDeactivate(ent, user, predicted: predicted); } /// /// Used when an item is attempting to be activated. It returns false if the attempt fails any reason, interrupting the activation. /// - public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + public bool TryActivate(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) + if (!Resolve(ent, ref ent.Comp)) return false; - if (itemToggle.Activated) + var uid = ent.Owner; + var comp = ent.Comp; + if (comp.Activated) return true; - if (!itemToggle.Predictable && _netManager.IsClient) + if (!comp.Predictable && _netManager.IsClient) return true; var attempt = new ItemToggleActivateAttemptEvent(user); RaiseLocalEvent(uid, ref attempt); + if (!comp.Predictable) predicted = false; if (attempt.Cancelled) { if (predicted) - _audio.PlayPredicted(itemToggle.SoundFailToActivate, uid, user); + _audio.PlayPredicted(comp.SoundFailToActivate, uid, user); else - _audio.PlayPvs(itemToggle.SoundFailToActivate, uid); + _audio.PlayPvs(comp.SoundFailToActivate, uid); if (attempt.Popup != null && user != null) { @@ -105,7 +125,7 @@ public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = return false; } - Activate(uid, itemToggle, predicted, user); + Activate((uid, comp), predicted, user); return true; } @@ -113,75 +133,65 @@ public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = /// /// Used when an item is attempting to be deactivated. It returns false if the attempt fails any reason, interrupting the deactivation. /// - public bool TryDeactivate(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + public bool TryDeactivate(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) + if (!Resolve(ent, ref ent.Comp)) return false; - if (!itemToggle.Predictable && _netManager.IsClient) + var uid = ent.Owner; + var comp = ent.Comp; + if (!comp.Activated) return true; - if (!itemToggle.Activated) + if (!comp.Predictable && _netManager.IsClient) return true; var attempt = new ItemToggleDeactivateAttemptEvent(user); RaiseLocalEvent(uid, ref attempt); if (attempt.Cancelled) - { return false; - } - Deactivate(uid, itemToggle, predicted, user); + if (!comp.Predictable) predicted = false; + Deactivate((uid, comp), predicted, user); return true; } - private void Activate(EntityUid uid, ItemToggleComponent itemToggle, bool predicted, EntityUid? user = null) + private void Activate(Entity ent, bool predicted, EntityUid? user = null) { - // TODO: Fix this hardcoding - TryComp(uid, out AppearanceComponent? appearance); - _appearance.SetData(uid, ToggleableLightVisuals.Enabled, true, appearance); - _appearance.SetData(uid, ToggleVisuals.Toggled, true, appearance); - - if (_light.TryGetLight(uid, out var light)) - { - _light.SetEnabled(uid, true, light); - } - - var soundToPlay = itemToggle.SoundActivate; + var (uid, comp) = ent; + var soundToPlay = comp.SoundActivate; if (predicted) _audio.PlayPredicted(soundToPlay, uid, user); else _audio.PlayPvs(soundToPlay, uid); - // END FIX HARDCODING + comp.Activated = true; + UpdateVisuals((uid, comp)); + Dirty(uid, comp); var toggleUsed = new ItemToggledEvent(predicted, Activated: true, user); RaiseLocalEvent(uid, ref toggleUsed); - - itemToggle.Activated = true; - UpdateVisuals((uid, itemToggle)); - Dirty(uid, itemToggle); } /// /// Used to make the actual changes to the item's components on deactivation. /// - private void Deactivate(EntityUid uid, ItemToggleComponent itemToggle, bool predicted, EntityUid? user = null) + private void Deactivate(Entity ent, bool predicted, EntityUid? user = null) { - var soundToPlay = itemToggle.SoundDeactivate; + var (uid, comp) = ent; + var soundToPlay = comp.SoundDeactivate; if (predicted) _audio.PlayPredicted(soundToPlay, uid, user); else _audio.PlayPvs(soundToPlay, uid); - // END FIX HARDCODING + + comp.Activated = false; + UpdateVisuals((uid, comp)); + Dirty(uid, comp); var toggleUsed = new ItemToggledEvent(predicted, Activated: false, user); RaiseLocalEvent(uid, ref toggleUsed); - - itemToggle.Activated = false; - UpdateVisuals((uid, itemToggle)); - Dirty(uid, itemToggle); } private void UpdateVisuals(Entity ent) @@ -204,55 +214,56 @@ private void UpdateVisuals(Entity ent) /// /// Used for items that require to be wielded in both hands to activate. For instance the dual energy sword will turn off if not wielded. /// - private void TurnOffonUnwielded(EntityUid uid, ItemToggleComponent itemToggle, ItemUnwieldedEvent args) + private void TurnOffOnUnwielded(Entity ent, ref ItemUnwieldedEvent args) { - if (itemToggle.Activated) - TryDeactivate(uid, args.User, itemToggle: itemToggle); + TryDeactivate((ent, ent.Comp), args.User); } /// /// Wieldable items will automatically turn on when wielded. /// - private void TurnOnonWielded(EntityUid uid, ItemToggleComponent itemToggle, ref ItemWieldedEvent args) + private void TurnOnOnWielded(Entity ent, ref ItemWieldedEvent args) { - if (!itemToggle.Activated) - TryActivate(uid, itemToggle: itemToggle); + // FIXME: for some reason both client and server play sound + TryActivate((ent, ent.Comp)); } - public bool IsActivated(EntityUid uid, ItemToggleComponent? comp = null) + public bool IsActivated(Entity ent) { - if (!Resolve(uid, ref comp, false)) + if (!Resolve(ent, ref ent.Comp, false)) return true; // assume always activated if no component - return comp.Activated; + return ent.Comp.Activated; } /// /// Used to make the item hot when activated. /// - private void OnIsHotEvent(EntityUid uid, ItemToggleHotComponent itemToggleHot, IsHotEvent args) + private void OnIsHotEvent(Entity ent, ref IsHotEvent args) { - args.IsHot |= IsActivated(uid); + args.IsHot |= IsActivated(ent.Owner); } /// /// Used to update the looping active sound linked to the entity. /// - private void UpdateActiveSound(EntityUid uid, ItemToggleActiveSoundComponent activeSound, ref ItemToggledEvent args) + private void UpdateActiveSound(Entity ent, ref ItemToggledEvent args) { - if (args.Activated) + var (uid, comp) = ent; + if (!args.Activated) { - if (activeSound.ActiveSound != null && activeSound.PlayingStream == null) - { - if (args.Predicted) - activeSound.PlayingStream = _audio.PlayPredicted(activeSound.ActiveSound, uid, args.User, AudioParams.Default.WithLoop(true)).Value.Entity; - else - activeSound.PlayingStream = _audio.PlayPvs(activeSound.ActiveSound, uid, AudioParams.Default.WithLoop(true)).Value.Entity; - } + comp.PlayingStream = _audio.Stop(comp.PlayingStream); + return; } - else + + if (comp.ActiveSound != null && comp.PlayingStream == null) { - activeSound.PlayingStream = _audio.Stop(activeSound.PlayingStream); + var loop = AudioParams.Default.WithLoop(true); + var stream = args.Predicted + ? _audio.PlayPredicted(comp.ActiveSound, uid, args.User, loop) + : _audio.PlayPvs(comp.ActiveSound, uid, loop); + if (stream?.Entity is {} entity) + comp.PlayingStream = entity; } } } diff --git a/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs b/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs new file mode 100644 index 000000000000..858cd9bc111a --- /dev/null +++ b/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.IdentityManagement; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Verbs; + +namespace Content.Shared.Item.ItemToggle; + +/// +/// Adds a verb for toggling something with . +/// +public sealed class ToggleVerbSystem : EntitySystem +{ + [Dependency] private readonly ItemToggleSystem _toggle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerbs); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var name = Identity.Entity(ent, EntityManager); + var user = args.User; + args.Verbs.Add(new ActivationVerb() + { + Text = Loc.GetString(ent.Comp.Text, ("entity", name)), + Act = () => _toggle.Toggle(ent.Owner, user) + }); + } +} diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index bf4af1cb9a4e..22a90aa0a625 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -365,7 +365,7 @@ private void OnUIOpenAttempt(EntityUid uid, ActivatableUIRequiresLockComponent c { args.Cancel(); if (lockComp.Locked) - _sharedPopupSystem.PopupEntity(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); + _sharedPopupSystem.PopupClient(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); } } diff --git a/Content.Shared/Medical/DefibrillatorComponent.cs b/Content.Shared/Medical/DefibrillatorComponent.cs index 61a02187d09b..e4cd8077d26c 100644 --- a/Content.Shared/Medical/DefibrillatorComponent.cs +++ b/Content.Shared/Medical/DefibrillatorComponent.cs @@ -10,16 +10,11 @@ namespace Content.Shared.Medical; /// /// This is used for defibrillators; a machine that shocks a dead /// person back into the world of the living. +/// Uses ItemToggleComponent /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] public sealed partial class DefibrillatorComponent : Component { - /// - /// Whether or not it's turned on and able to be used. - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite)] - public bool Enabled; - /// /// The time at which the zap cooldown will be completed /// @@ -72,15 +67,6 @@ public sealed partial class DefibrillatorComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("zapSound")] public SoundSpecifier? ZapSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_zap.ogg"); - /// - /// The sound when the defib is powered on. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("powerOnSound")] - public SoundSpecifier? PowerOnSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_safety_on.ogg"); - - [ViewVariables(VVAccess.ReadWrite), DataField("powerOffSound")] - public SoundSpecifier? PowerOffSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_safety_off.ogg"); - [ViewVariables(VVAccess.ReadWrite), DataField("chargeSound")] public SoundSpecifier? ChargeSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_charge.ogg"); diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index bf1065c1b1d6..ba365daf15cf 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -370,7 +370,7 @@ public bool TryGetObjectiveComp(EntityUid mindId, [NotNullWhen(true)] out T? if (Resolve(mindId, ref mind)) { var query = GetEntityQuery(); - foreach (var uid in mind.AllObjectives) + foreach (var uid in mind.Objectives) { if (query.TryGetComponent(uid, out objective)) { diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index f563440af048..557c316e26de 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -43,7 +43,6 @@ public sealed class PullingSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly HeldSpeedModifierSystem _clothingMoveSpeed = default!; public override void Initialize() diff --git a/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs index 55bcdd0f0a56..9c39c4724ced 100644 --- a/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs +++ b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Ninja.Systems; using Robust.Shared.Audio; +using Robust.Shared.GameStates; namespace Content.Shared.Ninja.Components; @@ -7,32 +8,33 @@ namespace Content.Shared.Ninja.Components; /// Component for draining power from APCs/substations/SMESes, when ProviderUid is set to a battery cell. /// Does not rely on relay, simply being on the user and having BatteryUid set is enough. /// -[RegisterComponent, Access(typeof(SharedBatteryDrainerSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedBatteryDrainerSystem))] public sealed partial class BatteryDrainerComponent : Component { /// /// The powercell entity to drain power into. /// Determines whether draining is possible. /// - [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public EntityUid? BatteryUid; /// /// Conversion rate between joules in a device and joules added to battery. /// Should be very low since powercells store nothing compared to even an APC. /// - [DataField("drainEfficiency"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DrainEfficiency = 0.001f; /// /// Time that the do after takes to drain charge from a battery, in seconds /// - [DataField("drainTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DrainTime = 1f; /// /// Sound played after the doafter ends. /// - [DataField("sparkSound")] + [DataField] public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks"); } diff --git a/Content.Shared/Ninja/Components/BombingTargetComponent.cs b/Content.Shared/Ninja/Components/BombingTargetComponent.cs index bf0eaec84be0..c429eb6880e3 100644 --- a/Content.Shared/Ninja/Components/BombingTargetComponent.cs +++ b/Content.Shared/Ninja/Components/BombingTargetComponent.cs @@ -4,6 +4,4 @@ namespace Content.Shared.Ninja.Components; /// Makes this warp point a valid bombing target for ninja's spider charge. /// [RegisterComponent] -public sealed partial class BombingTargetComponent : Component -{ -} +public sealed partial class BombingTargetComponent : Component; diff --git a/Content.Shared/Ninja/Components/DashAbilityComponent.cs b/Content.Shared/Ninja/Components/DashAbilityComponent.cs index ba4060c70350..464f48f187ed 100644 --- a/Content.Shared/Ninja/Components/DashAbilityComponent.cs +++ b/Content.Shared/Ninja/Components/DashAbilityComponent.cs @@ -8,6 +8,7 @@ namespace Content.Shared.Ninja.Components; /// /// Adds an action to dash, teleport to clicked position, when this item is held. +/// Cancel to prevent using it. /// [RegisterComponent, NetworkedComponent, Access(typeof(DashAbilitySystem)), AutoGenerateComponentState] public sealed partial class DashAbilityComponent : Component @@ -16,19 +17,10 @@ public sealed partial class DashAbilityComponent : Component /// The action id for dashing. /// [DataField] - public EntProtoId DashAction = "ActionEnergyKatanaDash"; + public EntProtoId DashAction = "ActionEnergyKatanaDash"; [DataField, AutoNetworkedField] public EntityUid? DashActionEntity; - - /// - /// Sound played when using dash action. - /// - [DataField("blinkSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg") - { - Params = AudioParams.Default.WithVolume(5f) - }; } -public sealed partial class DashEvent : WorldTargetActionEvent { } +public sealed partial class DashEvent : WorldTargetActionEvent; diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs index db7678f61d71..ae3e85cbe42a 100644 --- a/Content.Shared/Ninja/Components/EmagProviderComponent.cs +++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Tag; using Content.Shared.Whitelist; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Shared.Ninja.Components; @@ -10,19 +10,18 @@ namespace Content.Shared.Ninja.Components; /// Component for emagging things on click. /// No charges but checks against a whitelist. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -[Access(typeof(EmagProviderSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(EmagProviderSystem))] public sealed partial class EmagProviderComponent : Component { /// /// The tag that marks an entity as immune to emagging. /// - [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EmagImmuneTag = "EmagImmune"; + [DataField] + public ProtoId EmagImmuneTag = "EmagImmune"; /// /// Whitelist that entities must be on to work. /// - [DataField("whitelist"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public EntityWhitelist? Whitelist = null; + [DataField] + public EntityWhitelist? Whitelist; } diff --git a/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs index 33b8fc789339..84c58bb64800 100644 --- a/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs +++ b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs @@ -7,6 +7,4 @@ namespace Content.Shared.Ninja.Components; /// Requires a ninja with a suit for abilities to work. /// [RegisterComponent, NetworkedComponent] -public sealed partial class EnergyKatanaComponent : Component -{ -} +public sealed partial class EnergyKatanaComponent : Component; diff --git a/Content.Shared/Ninja/Components/ItemCreatorComponent.cs b/Content.Shared/Ninja/Components/ItemCreatorComponent.cs new file mode 100644 index 000000000000..d9f66d21a31b --- /dev/null +++ b/Content.Shared/Ninja/Components/ItemCreatorComponent.cs @@ -0,0 +1,52 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Ninja.Components; + +/// +/// Uses battery charge to spawn an item and place it in the user's hands. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedItemCreatorSystem))] +public sealed partial class ItemCreatorComponent : Component +{ + /// + /// The battery entity to use charge from + /// + [DataField, AutoNetworkedField] + public EntityUid? Battery; + + /// + /// The action id for creating an item. + /// + [DataField(required: true)] + public EntProtoId Action = string.Empty; + + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + + /// + /// Battery charge used to create an item. + /// + [DataField(required: true)] + public float Charge = 14.4f; + + /// + /// Item to create with the action + /// + [DataField(required: true)] + public EntProtoId SpawnedPrototype = string.Empty; + + /// + /// Popup shown to the user when there isn't enough power to create an item. + /// + [DataField(required: true)] + public LocId NoPowerPopup = string.Empty; +} + +/// +/// Action event to use an . +/// +public sealed partial class CreateItemEvent : InstantActionEvent; diff --git a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs index 7b57926330b6..3b9e2a5e3566 100644 --- a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs @@ -1,20 +1,17 @@ -using Content.Shared.DoAfter; using Content.Shared.Ninja.Systems; -using Content.Shared.Toggleable; -using Content.Shared.Whitelist; +using Content.Shared.Objectives.Components; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Utility; namespace Content.Shared.Ninja.Components; /// /// Component for toggling glove powers. -/// Powers being enabled is controlled by User not being null. /// +/// +/// Requires ItemToggleComponent. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [Access(typeof(SharedNinjaGlovesSystem))] public sealed partial class NinjaGlovesComponent : Component @@ -22,24 +19,33 @@ public sealed partial class NinjaGlovesComponent : Component /// /// Entity of the ninja using these gloves, usually means enabled /// - [DataField("user"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? User; /// - /// The action id for toggling ninja gloves abilities + /// Abilities to give to the user when enabled. /// - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleAction = "ActionToggleNinjaGloves"; + [DataField(required: true)] + public List Abilities = new(); +} - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; +/// +/// An ability that adds components to the user when the gloves are enabled. +/// +[DataRecord] +public record struct NinjaGloveAbility() +{ + /// + /// If not null, checks if an objective with this prototype has been completed. + /// If it has, the ability components are skipped to prevent doing the objective twice. + /// The objective must have CodeConditionComponent to be checked. + /// + [DataField] + public EntProtoId? Objective; /// - /// The whitelist used for the emag provider to emag airlocks only (not regular doors). + /// Components to add and remove. /// - [DataField("doorjackWhitelist")] - public EntityWhitelist DoorjackWhitelist = new() - { - Components = new[] {"Airlock"} - }; + [DataField(required: true)] + public ComponentRegistry Components = new(); } diff --git a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs index 7e7b1ffcd301..8b477b2aa5f9 100644 --- a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs @@ -3,9 +3,6 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; namespace Content.Shared.Ninja.Components; @@ -14,68 +11,27 @@ namespace Content.Shared.Ninja.Components; /// Component for ninja suit abilities and power consumption. /// As an implementation detail, dashing with katana is a suit action which isn't ideal. /// -[RegisterComponent, NetworkedComponent, Access(typeof(SharedNinjaSuitSystem)), AutoGenerateComponentState] -[AutoGenerateComponentPause] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedNinjaSuitSystem))] public sealed partial class NinjaSuitComponent : Component { - /// - /// Battery charge used passively, in watts. Will last 1000 seconds on a small-capacity power cell. - /// - [DataField("passiveWattage")] - public float PassiveWattage = 0.36f; - - /// - /// Battery charge used while cloaked, stacks with passive. Will last 200 seconds while cloaked on a small-capacity power cell. - /// - [DataField("cloakWattage")] - public float CloakWattage = 1.44f; - /// /// Sound played when a ninja is hit while cloaked. /// - [DataField("revealSound")] + [DataField] public SoundSpecifier RevealSound = new SoundPathSpecifier("/Audio/Effects/chime.ogg"); /// - /// How long to disable all abilities when revealed. - /// Normally, ninjas are revealed when attacking or getting damaged. - /// - [DataField("disableTime")] - public TimeSpan DisableTime = TimeSpan.FromSeconds(5); - - /// - /// Time at which we will be able to use our abilities again + /// ID of the use delay to disable all ninja abilities. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - [AutoPausedField] - public TimeSpan DisableCooldown; - - /// - /// The action id for creating throwing stars. - /// - [DataField("createThrowingStarAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string CreateThrowingStarAction = "ActionCreateThrowingStar"; - - [DataField, AutoNetworkedField] - public EntityUid? CreateThrowingStarActionEntity; - - /// - /// Battery charge used to create a throwing star. Can do it 25 times on a small-capacity power cell. - /// - [DataField("throwingStarCharge")] - public float ThrowingStarCharge = 14.4f; - - /// - /// Throwing star item to create with the action - /// - [DataField("throwingStarPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ThrowingStarPrototype = "ThrowingStarNinja"; + [DataField] + public string DisableDelayId = "suit_powers"; /// /// The action id for recalling a bound energy katana /// - [DataField("recallKatanaAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string RecallKatanaAction = "ActionRecallKatana"; + [DataField] + public EntProtoId RecallKatanaAction = "ActionRecallKatana"; [DataField, AutoNetworkedField] public EntityUid? RecallKatanaActionEntity; @@ -84,14 +40,14 @@ public sealed partial class NinjaSuitComponent : Component /// Battery charge used per tile the katana teleported. /// Uses 1% of a default battery per tile. /// - [DataField("recallCharge")] + [DataField] public float RecallCharge = 3.6f; /// /// The action id for creating an EMP burst /// - [DataField("empAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EmpAction = "ActionNinjaEmp"; + [DataField] + public EntProtoId EmpAction = "ActionNinjaEmp"; [DataField, AutoNetworkedField] public EntityUid? EmpActionEntity; @@ -99,36 +55,29 @@ public sealed partial class NinjaSuitComponent : Component /// /// Battery charge used to create an EMP burst. Can do it 2 times on a small-capacity power cell. /// - [DataField("empCharge")] + [DataField] public float EmpCharge = 180f; + // TODO: EmpOnTrigger bruh /// /// Range of the EMP in tiles. /// - [DataField("empRange")] + [DataField] public float EmpRange = 6f; /// /// Power consumed from batteries by the EMP /// - [DataField("empConsumption")] + [DataField] public float EmpConsumption = 100000f; /// /// How long the EMP effects last for, in seconds /// - [DataField("empDuration")] + [DataField] public float EmpDuration = 60f; } -public sealed partial class CreateThrowingStarEvent : InstantActionEvent -{ -} - -public sealed partial class RecallKatanaEvent : InstantActionEvent -{ -} +public sealed partial class RecallKatanaEvent : InstantActionEvent; -public sealed partial class NinjaEmpEvent : InstantActionEvent -{ -} +public sealed partial class NinjaEmpEvent : InstantActionEvent; diff --git a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs index 91c816df5c93..a19537be1c82 100644 --- a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs +++ b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs @@ -7,34 +7,28 @@ namespace Content.Shared.Ninja.Components; /// /// Component placed on a mob to make it a space ninja, able to use suit and glove powers. -/// Contains ids of all ninja equipment and the game rule. +/// Contains ids of all ninja equipment. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [Access(typeof(SharedSpaceNinjaSystem))] public sealed partial class SpaceNinjaComponent : Component { - /// - /// The ninja game rule that spawned this ninja. - /// - [DataField("rule")] - public EntityUid? Rule; - /// /// Currently worn suit /// - [DataField("suit"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Suit; /// - /// Currently worn gloves + /// Currently worn gloves, if enabled. /// - [DataField("gloves"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Gloves; /// /// Bound katana, set once picked up and never removed /// - [DataField("katana"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Katana; /// @@ -55,6 +49,9 @@ public sealed partial class SpaceNinjaComponent : Component [DataField] public EntProtoId SpiderChargeObjective = "SpiderChargeObjective"; + /// + /// Alert to show for suit power. + /// [DataField] public ProtoId SuitPowerAlert = "SuitPower"; } diff --git a/Content.Shared/Ninja/Components/SpiderChargeComponent.cs b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs index dacf47bb235a..3ba4494cca43 100644 --- a/Content.Shared/Ninja/Components/SpiderChargeComponent.cs +++ b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Ninja.Systems; using Robust.Shared.GameStates; namespace Content.Shared.Ninja.Components; @@ -6,14 +7,14 @@ namespace Content.Shared.Ninja.Components; /// Component for the Space Ninja's unique Spider Charge. /// Only this component detonating can trigger the ninja's objective. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, Access(typeof(SharedSpiderChargeSystem))] public sealed partial class SpiderChargeComponent : Component { /// Range for planting within the target area - [DataField("range")] + [DataField] public float Range = 10f; /// The ninja that planted this charge - [DataField("planter")] - public EntityUid? Planter = null; + [DataField] + public EntityUid? Planter; } diff --git a/Content.Shared/Ninja/Components/StunProviderComponent.cs b/Content.Shared/Ninja/Components/StunProviderComponent.cs index 37a27074a49f..2da094291d75 100644 --- a/Content.Shared/Ninja/Components/StunProviderComponent.cs +++ b/Content.Shared/Ninja/Components/StunProviderComponent.cs @@ -3,7 +3,6 @@ using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Ninja.Components; @@ -11,32 +10,33 @@ namespace Content.Shared.Ninja.Components; /// Component for stunning mobs on click outside of harm mode. /// Knocks them down for a bit and deals shock damage. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStunProviderSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedStunProviderSystem))] public sealed partial class StunProviderComponent : Component { /// /// The powercell entity to take power from. /// Determines whether stunning is possible. /// - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? BatteryUid; /// /// Sound played when stunning someone. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public SoundSpecifier Sound = new SoundCollectionSpecifier("sparks"); /// /// Joules required in the battery to stun someone. Defaults to 10 uses on a small battery. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float StunCharge = 36f; /// /// Damage dealt when stunning someone /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public DamageSpecifier StunDamage = new() { DamageDict = new() @@ -48,34 +48,30 @@ public sealed partial class StunProviderComponent : Component /// /// Time that someone is stunned for, stacks if done multiple times. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan StunTime = TimeSpan.FromSeconds(5); /// /// How long stunning is disabled after stunning something. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan Cooldown = TimeSpan.FromSeconds(2); /// - /// Locale string to popup when there is no power + /// ID of the cooldown use delay. /// - [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] - public string NoPowerPopup = string.Empty; + [DataField] + public string DelayId = "stun_cooldown"; /// - /// Whitelist for what counts as a mob. + /// Locale string to popup when there is no power /// - [DataField] - public EntityWhitelist Whitelist = new() - { - Components = new[] {"Stamina"} - }; + [DataField(required: true)] + public LocId NoPowerPopup = string.Empty; /// - /// When someone can next be stunned. - /// Essentially a UseDelay unique to this component. + /// Whitelist for what counts as a mob. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan NextStun = TimeSpan.Zero; + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); } diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index 4853968b61f6..09be10850582 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -16,55 +16,47 @@ namespace Content.Shared.Ninja.Systems; /// public sealed class DashAbilitySystem : EntitySystem { + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnDash); SubscribeLocalEvent(OnMapInit); } - private void OnMapInit(EntityUid uid, DashAbilityComponent component, MapInitEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) { - _actionContainer.EnsureAction(uid, ref component.DashActionEntity, component.DashAction); - Dirty(uid, component); + var (uid, comp) = ent; + _actionContainer.EnsureAction(uid, ref comp.DashActionEntity, comp.DashAction); + Dirty(uid, comp); } - private void OnGetItemActions(EntityUid uid, DashAbilityComponent comp, GetItemActionsEvent args) + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) { - var ev = new AddDashActionEvent(args.User); - RaiseLocalEvent(uid, ev); - - if (ev.Cancelled) - return; - - args.AddAction(ref comp.DashActionEntity, comp.DashAction); + if (CheckDash(ent, args.User)) + args.AddAction(ent.Comp.DashActionEntity); } /// /// Handle charges and teleport to a visible location. /// - private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) + private void OnDash(Entity ent, ref DashEvent args) { if (!_timing.IsFirstTimePredicted) return; + var (uid, comp) = ent; var user = args.Performer; - args.Handled = true; - - var ev = new DashAttemptEvent(user); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) + if (!CheckDash(uid, user)) return; if (!_hands.IsHolding(user, uid, out var _)) @@ -73,15 +65,8 @@ private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) return; } - TryComp(uid, out var charges); - if (_charges.IsEmpty(uid, charges)) - { - _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); - return; - } var origin = _transform.GetMapCoordinates(user); var target = args.Target.ToMap(EntityManager, _transform); - // prevent collision with the user duh if (!_examine.InRangeUnOccluded(origin, target, SharedInteractionSystem.MaxRaycastRange, null)) { // can only dash if the destination is visible on screen @@ -89,36 +74,28 @@ private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) return; } - _transform.SetCoordinates(user, args.Target); - _transform.AttachToGridOrMap(user); - _audio.PlayPredicted(comp.BlinkSound, user, user); - if (charges != null) - _charges.UseCharge(uid, charges); - } -} + if (!_charges.TryUseCharge(uid)) + { + _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); + return; + } -/// -/// Raised on the item before adding the dash action -/// -public sealed class AddDashActionEvent : CancellableEntityEventArgs -{ - public EntityUid User; + var xform = Transform(user); + _transform.SetCoordinates(user, xform, args.Target); + _transform.AttachToGridOrMap(user, xform); + args.Handled = true; + } - public AddDashActionEvent(EntityUid user) + public bool CheckDash(EntityUid uid, EntityUid user) { - User = user; + var ev = new CheckDashEvent(user); + RaiseLocalEvent(uid, ref ev); + return !ev.Cancelled; } } /// -/// Raised on the item before dashing is done. +/// Raised on the item before adding the dash action and when using the action. /// -public sealed class DashAttemptEvent : CancellableEntityEventArgs -{ - public EntityUid User; - - public DashAttemptEvent(EntityUid user) - { - User = user; - } -} +[ByRefEvent] +public record struct CheckDashEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs index 6838e7982cb0..ae0bacaf5f65 100644 --- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs +++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs @@ -1,6 +1,6 @@ using Content.Shared.Administration.Logs; -using Content.Shared.Emag.Systems; using Content.Shared.Database; +using Content.Shared.Emag.Systems; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Tag; @@ -14,10 +14,10 @@ namespace Content.Shared.Ninja.Systems; public sealed class EmagProviderSystem : EntitySystem { [Dependency] private readonly EmagSystem _emag = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -29,18 +29,20 @@ public override void Initialize() /// /// Emag clicked entities that are on the whitelist. /// - private void OnBeforeInteractHand(EntityUid uid, EmagProviderComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { // TODO: change this into a generic check event thing - if (args.Handled || !_gloves.AbilityCheck(uid, args, out var target)) + if (args.Handled || !_gloves.AbilityCheck(ent, args, out var target)) return; + var (uid, comp) = ent; + // only allowed to emag entities on the whitelist - if (_whitelistSystem.IsWhitelistFail(comp.Whitelist, target)) + if (_whitelist.IsWhitelistFail(comp.Whitelist, target)) return; // only allowed to emag non-immune entities - if (_tags.HasTag(target, comp.EmagImmuneTag)) + if (_tag.HasTag(target, comp.EmagImmuneTag)) return; var handled = _emag.DoEmagEffect(uid, target); @@ -52,18 +54,6 @@ private void OnBeforeInteractHand(EntityUid uid, EmagProviderComponent comp, Bef RaiseLocalEvent(uid, ref ev); args.Handled = true; } - - /// - /// Set the whitelist for emagging something outside of yaml. - /// - public void SetWhitelist(EntityUid uid, EntityWhitelist? whitelist, EmagProviderComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return; - - comp.Whitelist = whitelist; - Dirty(uid, comp); - } } /// diff --git a/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs index d427ffa39b41..281b97a648ac 100644 --- a/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs +++ b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs @@ -15,33 +15,20 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnAddDashAction); - SubscribeLocalEvent(OnDashAttempt); + SubscribeLocalEvent(OnCheckDash); } /// /// When equipped by a ninja, try to bind it. /// - private void OnEquipped(EntityUid uid, EnergyKatanaComponent comp, GotEquippedEvent args) + private void OnEquipped(Entity ent, ref GotEquippedEvent args) { - // check if user isnt a ninja or already has a katana bound - var user = args.Equipee; - if (!TryComp(user, out var ninja) || ninja.Katana != null) - return; - - // bind it since its unbound - _ninja.BindKatana(user, uid, ninja); - } - - private void OnAddDashAction(EntityUid uid, EnergyKatanaComponent comp, AddDashActionEvent args) - { - if (!HasComp(args.User)) - args.Cancel(); + _ninja.BindKatana(args.Equipee, ent); } - private void OnDashAttempt(EntityUid uid, EnergyKatanaComponent comp, DashAttemptEvent args) + private void OnCheckDash(Entity ent, ref CheckDashEvent args) { - if (!TryComp(args.User, out var ninja) || ninja.Katana != uid) - args.Cancel(); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } } diff --git a/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs b/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs new file mode 100644 index 000000000000..56112e9a697e --- /dev/null +++ b/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs @@ -0,0 +1,56 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Components; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Handles predicting that the action exists, creating items is done serverside. +/// +public abstract class SharedItemCreatorSystem : EntitySystem +{ + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnGetActions); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + // test funny dont mind me + if (string.IsNullOrEmpty(comp.Action)) + return; + + _actionContainer.EnsureAction(uid, ref comp.ActionEntity, comp.Action); + Dirty(uid, comp); + } + + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) + { + if (CheckItemCreator(ent, args.User)) + args.AddAction(ent.Comp.ActionEntity); + } + + public bool CheckItemCreator(EntityUid uid, EntityUid user) + { + var ev = new CheckItemCreatorEvent(user); + RaiseLocalEvent(uid, ref ev); + return !ev.Cancelled; + } +} + +/// +/// Raised on the item creator before adding the action. +/// +[ByRefEvent] +public record struct CheckItemCreatorEvent(EntityUid User, bool Cancelled = false); + +/// +/// Raised on the item creator before creating an item. +/// +[ByRefEvent] +public record struct CreateItemAttemptEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs index ac11063eb71b..0abcca7d1bdb 100644 --- a/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs @@ -18,34 +18,32 @@ public override void Initialize() } /// - /// Cancel any drain doafters if the battery is removed or gets filled. + /// Cancel any drain doafters if the battery is removed or, on the server, gets filled. /// - protected virtual void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + protected virtual void OnDoAfterAttempt(Entity ent, ref DoAfterAttemptEvent args) { - if (comp.BatteryUid == null) - { + if (ent.Comp.BatteryUid == null) args.Cancel(); - } } /// /// Drain power from a power source (on server) and repeat if it succeeded. /// Client will predict always succeeding since power is serverside. /// - private void OnDoAfter(EntityUid uid, BatteryDrainerComponent comp, DrainDoAfterEvent args) + private void OnDoAfter(Entity ent, ref DrainDoAfterEvent args) { - if (args.Cancelled || args.Handled || args.Target == null) + if (args.Cancelled || args.Handled || args.Target is not {} target) return; // repeat if there is still power to drain - args.Repeat = TryDrainPower(uid, comp, args.Target.Value); + args.Repeat = TryDrainPower(ent, target); } /// /// Attempt to drain as much power as possible into the powercell. /// Client always predicts this as succeeding since power is serverside and it can only fail once, when the powercell is filled or the target is emptied. /// - protected virtual bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + protected virtual bool TryDrainPower(Entity ent, EntityUid target) { return true; } @@ -53,12 +51,13 @@ protected virtual bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp /// /// Sets the battery field on the drainer. /// - public void SetBattery(EntityUid uid, EntityUid? battery, BatteryDrainerComponent? comp = null) + public void SetBattery(Entity ent, EntityUid? battery) { - if (!Resolve(uid, ref comp)) + if (!Resolve(ent, ref ent.Comp) || ent.Comp.BatteryUid == battery) return; - comp.BatteryUid = battery; + ent.Comp.BatteryUid = battery; + Dirty(ent, ent.Comp); } } @@ -66,4 +65,4 @@ public void SetBattery(EntityUid uid, EntityUid? battery, BatteryDrainerComponen /// DoAfter event for . /// [Serializable, NetSerializable] -public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent { } +public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs index f61d0c6a9084..8b892190b7b6 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs @@ -1,15 +1,13 @@ -using Content.Shared.Actions; +using Content.Shared.Clothing.Components; using Content.Shared.CombatMode; -using Content.Shared.Communications; -using Content.Shared.CriminalRecords.Components; using Content.Shared.Examine; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Ninja.Components; using Content.Shared.Popups; -using Content.Shared.Research.Components; -using Content.Shared.Toggleable; using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; @@ -20,85 +18,105 @@ namespace Content.Shared.Ninja.Systems; public abstract class SharedNinjaGlovesSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; - [Dependency] protected readonly SharedInteractionSystem Interaction = default!; - [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnToggleCheck); + SubscribeLocalEvent(OnActivateAttempt); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnMapInit); - } - - private void OnMapInit(EntityUid uid, NinjaGlovesComponent component, MapInitEvent args) - { - _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); } /// /// Disable glove abilities and show the popup if they were enabled previously. /// - public void DisableGloves(EntityUid uid, NinjaGlovesComponent? comp = null) + private void DisableGloves(Entity ent) { + var (uid, comp) = ent; + // already disabled? - if (!Resolve(uid, ref comp) || comp.User == null) + if (comp.User is not {} user) return; - var user = comp.User.Value; comp.User = null; Dirty(uid, comp); - Appearance.SetData(uid, ToggleVisuals.Toggled, false); - Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); - - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); + foreach (var ability in comp.Abilities) + { + EntityManager.RemoveComponents(user, ability.Components); + } } /// - /// Adds the toggle action when equipped. + /// Adds the toggle action when equipped by a ninja only. /// - private void OnGetItemActions(EntityUid uid, NinjaGlovesComponent comp, GetItemActionsEvent args) + private void OnToggleCheck(Entity ent, ref ToggleClothingCheckEvent args) { - if (HasComp(args.User)) - args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } /// /// Show if the gloves are enabled when examining. /// - private void OnExamined(EntityUid uid, NinjaGlovesComponent comp, ExaminedEvent args) + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!args.IsInDetailsRange) return; - args.PushText(Loc.GetString(comp.User != null ? "ninja-gloves-examine-on" : "ninja-gloves-examine-off")); + var on = _toggle.IsActivated(ent.Owner) ? "on" : "off"; + args.PushText(Loc.GetString($"ninja-gloves-examine-{on}")); } - /// - /// Disable gloves when unequipped and clean up ninja's gloves reference - /// - private void OnUnequipped(EntityUid uid, NinjaGlovesComponent comp, GotUnequippedEvent args) + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) { - if (comp.User != null) + if (args.User is not {} user + || !_ninja.NinjaQuery.TryComp(user, out var ninja) + // need to wear suit to enable gloves + || !HasComp(ninja.Suit)) { - var user = comp.User.Value; - Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); - DisableGloves(uid, comp); + args.Cancelled = true; + args.Popup = Loc.GetString("ninja-gloves-not-wearing-suit"); + return; } } + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + if ((args.User ?? ent.Comp.User) is not {} user) + return; + + var message = Loc.GetString(args.Activated ? "ninja-gloves-on" : "ninja-gloves-off"); + _popup.PopupClient(message, user, user); + + if (args.Activated && _ninja.NinjaQuery.TryComp(user, out var ninja)) + EnableGloves(ent, (user, ninja)); + else + DisableGloves(ent); + } + + protected virtual void EnableGloves(Entity ent, Entity user) + { + var (uid, comp) = ent; + comp.User = user; + Dirty(uid, comp); + _ninja.AssignGloves(user, uid); + + // yeah this is just ComponentToggler but with objective checking + foreach (var ability in comp.Abilities) + { + // can't predict the objective related abilities + if (ability.Objective == null) + EntityManager.AddComponents(user, ability.Components); + } + } // TODO: generic event thing /// @@ -112,6 +130,6 @@ public bool AbilityCheck(EntityUid uid, BeforeInteractHandEvent args, out Entity && !_combatMode.IsInCombatMode(uid) && TryComp(uid, out var hands) && hands.ActiveHandEntity == null - && Interaction.InRangeUnobstructed(uid, target); + && _interaction.InRangeUnobstructed(uid, target); } } diff --git a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs index fed41eaed8af..3800d15b2675 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs @@ -1,11 +1,14 @@ using Content.Shared.Actions; +using Content.Shared.Clothing; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Ninja.Components; using Content.Shared.Popups; +using Content.Shared.Timing; using Robust.Shared.Audio.Systems; -using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; @@ -14,137 +17,158 @@ namespace Content.Shared.Ninja.Systems; /// public abstract class SharedNinjaSuitSystem : EntitySystem { - [Dependency] protected readonly IGameTiming GameTiming = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; - [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] protected readonly StealthClothingSystem StealthClothing = default!; + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnMapInit); - - SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnEquipped); SubscribeLocalEvent(OnGetItemActions); - SubscribeLocalEvent(OnAddStealthAction); + SubscribeLocalEvent(OnCloakCheck); + SubscribeLocalEvent(OnStarCheck); + SubscribeLocalEvent(OnCreateStarAttempt); + SubscribeLocalEvent(OnActivateAttempt); SubscribeLocalEvent(OnUnequipped); } - private void OnMapInit(EntityUid uid, NinjaSuitComponent component, MapInitEvent args) + private void OnEquipped(Entity ent, ref ClothingGotEquippedEvent args) { - _actionContainer.EnsureAction(uid, ref component.RecallKatanaActionEntity, component.RecallKatanaAction); - _actionContainer.EnsureAction(uid, ref component.CreateThrowingStarActionEntity, component.CreateThrowingStarAction); - _actionContainer.EnsureAction(uid, ref component.EmpActionEntity, component.EmpAction); - Dirty(uid, component); + var user = args.Wearer; + if (_ninja.NinjaQuery.TryComp(user, out var ninja)) + NinjaEquipped(ent, (user, ninja)); } - /// - /// Call the shared and serverside code for when a ninja equips the suit. - /// - private void OnEquipped(EntityUid uid, NinjaSuitComponent comp, GotEquippedEvent args) + protected virtual void NinjaEquipped(Entity ent, Entity user) { - var user = args.Equipee; - if (!TryComp(user, out var ninja)) - return; + // mark the user as wearing this suit, used when being attacked among other things + _ninja.AssignSuit(user, ent); + } - NinjaEquippedSuit(uid, comp, user, ninja); + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + _actionContainer.EnsureAction(uid, ref comp.RecallKatanaActionEntity, comp.RecallKatanaAction); + _actionContainer.EnsureAction(uid, ref comp.EmpActionEntity, comp.EmpAction); + Dirty(uid, comp); } /// /// Add all the actions when a suit is equipped by a ninja. /// - private void OnGetItemActions(EntityUid uid, NinjaSuitComponent comp, GetItemActionsEvent args) + private void OnGetItemActions(Entity ent, ref GetItemActionsEvent args) { - if (!HasComp(args.User)) + if (!_ninja.IsNinja(args.User)) return; + var comp = ent.Comp; args.AddAction(ref comp.RecallKatanaActionEntity, comp.RecallKatanaAction); - args.AddAction(ref comp.CreateThrowingStarActionEntity, comp.CreateThrowingStarAction); args.AddAction(ref comp.EmpActionEntity, comp.EmpAction); } /// - /// Only add stealth clothing's toggle action when equipped by a ninja. + /// Only add toggle cloak action when equipped by a ninja. /// - private void OnAddStealthAction(EntityUid uid, NinjaSuitComponent comp, AddStealthActionEvent args) + private void OnCloakCheck(Entity ent, ref ToggleClothingCheckEvent args) { - if (!HasComp(args.User)) - args.Cancel(); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } - /// - /// Call the shared and serverside code for when anyone unequips a suit. - /// - private void OnUnequipped(EntityUid uid, NinjaSuitComponent comp, GotUnequippedEvent args) + private void OnStarCheck(Entity ent, ref CheckItemCreatorEvent args) + { + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; + } + + private void OnCreateStarAttempt(Entity ent, ref CreateItemAttemptEvent args) { - UserUnequippedSuit(uid, comp, args.Equipee); + if (CheckDisabled(ent, args.User)) + args.Cancelled = true; } /// - /// Called when a suit is equipped by a space ninja. - /// In the future it might be changed to an explicit activation toggle/verb like gloves are. + /// Call the shared and serverside code for when anyone unequips a suit. /// - protected virtual void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + private void OnUnequipped(Entity ent, ref GotUnequippedEvent args) { - // mark the user as wearing this suit, used when being attacked among other things - _ninja.AssignSuit(user, uid, ninja); - - // initialize phase cloak, but keep it off - StealthClothing.SetEnabled(uid, user, false); + var user = args.Equipee; + if (_ninja.NinjaQuery.TryComp(user, out var ninja)) + UserUnequippedSuit(ent, (user, ninja)); } /// /// Force uncloaks the user and disables suit abilities. /// - public void RevealNinja(EntityUid uid, EntityUid user, bool disable = true, NinjaSuitComponent? comp = null, StealthClothingComponent? stealthClothing = null) + public void RevealNinja(Entity ent, EntityUid user, bool disable = true) { - if (!Resolve(uid, ref comp, ref stealthClothing)) + if (!Resolve(ent, ref ent.Comp)) return; - if (!StealthClothing.SetEnabled(uid, user, false, stealthClothing)) - return; - - if (!disable) + var uid = ent.Owner; + var comp = ent.Comp; + if (_toggle.TryDeactivate(uid, user) || !disable) return; // previously cloaked, disable abilities for a short time _audio.PlayPredicted(comp.RevealSound, uid, user); Popup.PopupClient(Loc.GetString("ninja-revealed"), user, user, PopupType.MediumCaution); - comp.DisableCooldown = GameTiming.CurTime + comp.DisableTime; + _useDelay.TryResetDelay(uid, id: comp.DisableDelayId); + } + + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) + { + if (!_ninja.IsNinja(args.User)) + { + args.Cancelled = true; + return; + } + + if (IsDisabled((ent, ent.Comp, null))) + { + args.Cancelled = true; + args.Popup = Loc.GetString("ninja-suit-cooldown"); + } } - // TODO: modify PowerCellDrain /// - /// Returns the power used by a suit + /// Returns true if the suit is currently disabled /// - public float SuitWattage(EntityUid uid, NinjaSuitComponent? suit = null) + public bool IsDisabled(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return false; + + return _useDelay.IsDelayed((ent, ent.Comp2), ent.Comp1.DisableDelayId); + } + + protected bool CheckDisabled(Entity ent, EntityUid user) { - if (!Resolve(uid, ref suit)) - return 0f; + if (IsDisabled((ent, ent.Comp, null))) + { + Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + return true; + } - float wattage = suit.PassiveWattage; - if (TryComp(uid, out var stealthClothing) && stealthClothing.Enabled) - wattage += suit.CloakWattage; - return wattage; + return false; } /// /// Called when a suit is unequipped, not necessarily by a space ninja. /// In the future it might be changed to also have explicit deactivation via toggle. /// - protected virtual void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + protected virtual void UserUnequippedSuit(Entity ent, Entity user) { - if (!TryComp(user, out var ninja)) - return; - // mark the user as not wearing a suit - _ninja.AssignSuit(user, null, ninja); + _ninja.AssignSuit(user, null); // disable glove abilities - if (ninja.Gloves != null && TryComp(ninja.Gloves.Value, out var gloves)) - _gloves.DisableGloves(ninja.Gloves.Value, gloves); + if (user.Comp.Gloves is {} uid) + _toggle.TryDeactivate(uid, user: user); } } diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs index 522f29fe420f..d738f2dd8a21 100644 --- a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Events; using Content.Shared.Popups; +using System.Diagnostics.CodeAnalysis; namespace Content.Shared.Ninja.Systems; @@ -14,49 +15,59 @@ public abstract class SharedSpaceNinjaSystem : EntitySystem [Dependency] protected readonly SharedNinjaSuitSystem Suit = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; + public EntityQuery NinjaQuery; + public override void Initialize() { base.Initialize(); + NinjaQuery = GetEntityQuery(); + SubscribeLocalEvent(OnNinjaAttacked); SubscribeLocalEvent(OnNinjaAttack); SubscribeLocalEvent(OnShotAttempted); } + public bool IsNinja([NotNullWhen(true)] EntityUid? uid) + { + return NinjaQuery.HasComp(uid); + } + /// /// Set the ninja's worn suit entity /// - public void AssignSuit(EntityUid uid, EntityUid? suit, SpaceNinjaComponent? comp = null) + public void AssignSuit(Entity ent, EntityUid? suit) { - if (!Resolve(uid, ref comp) || comp.Suit == suit) + if (ent.Comp.Suit == suit) return; - comp.Suit = suit; - Dirty(uid, comp); + ent.Comp.Suit = suit; + Dirty(ent, ent.Comp); } /// /// Set the ninja's worn gloves entity /// - public void AssignGloves(EntityUid uid, EntityUid? gloves, SpaceNinjaComponent? comp = null) + public void AssignGloves(Entity ent, EntityUid? gloves) { - if (!Resolve(uid, ref comp) || comp.Gloves == gloves) + if (ent.Comp.Gloves == gloves) return; - comp.Gloves = gloves; - Dirty(uid, comp); + ent.Comp.Gloves = gloves; + Dirty(ent, ent.Comp); } /// /// Bind a katana entity to a ninja, letting it be recalled and dash. + /// Does nothing if the player is not a ninja or already has a katana bound. /// - public void BindKatana(EntityUid uid, EntityUid? katana, SpaceNinjaComponent? comp = null) + public void BindKatana(Entity ent, EntityUid katana) { - if (!Resolve(uid, ref comp) || comp.Katana == katana) + if (!NinjaQuery.Resolve(ent, ref ent.Comp) || ent.Comp.Katana != null) return; - comp.Katana = katana; - Dirty(uid, comp); + ent.Comp.Katana = katana; + Dirty(ent, ent.Comp); } /// @@ -71,32 +82,32 @@ public virtual bool TryUseCharge(EntityUid user, float charge) /// /// Handle revealing ninja if cloaked when attacked. /// - private void OnNinjaAttacked(EntityUid uid, SpaceNinjaComponent comp, AttackedEvent args) + private void OnNinjaAttacked(Entity ent, ref AttackedEvent args) { - if (comp.Suit != null && TryComp(comp.Suit, out var stealthClothing) && stealthClothing.Enabled) - { - Suit.RevealNinja(comp.Suit.Value, uid, true, null, stealthClothing); - } + TryRevealNinja(ent, disable: true); } /// /// Handle revealing ninja if cloaked when attacking. /// Only reveals, there is no cooldown. /// - private void OnNinjaAttack(EntityUid uid, SpaceNinjaComponent comp, ref MeleeAttackEvent args) + private void OnNinjaAttack(Entity ent, ref MeleeAttackEvent args) + { + TryRevealNinja(ent, disable: false); + } + + private void TryRevealNinja(Entity ent, bool disable) { - if (comp.Suit != null && TryComp(comp.Suit, out var stealthClothing) && stealthClothing.Enabled) - { - Suit.RevealNinja(comp.Suit.Value, uid, false, null, stealthClothing); - } + if (ent.Comp.Suit is {} uid && TryComp(ent.Comp.Suit, out var suit)) + Suit.RevealNinja((uid, suit), ent, disable: disable); } /// /// Require ninja to fight with HONOR, no guns! /// - private void OnShotAttempted(EntityUid uid, SpaceNinjaComponent comp, ref ShotAttemptedEvent args) + private void OnShotAttempted(Entity ent, ref ShotAttemptedEvent args) { - Popup.PopupClient(Loc.GetString("gun-disabled"), uid, uid); + Popup.PopupClient(Loc.GetString("gun-disabled"), ent, ent); args.Cancel(); } } diff --git a/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs b/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs new file mode 100644 index 000000000000..f4b158aced47 --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Ninja.Systems; + +/// +/// Sticking triggering and exploding are all in server so this is just for access. +/// +public abstract class SharedSpiderChargeSystem : EntitySystem; diff --git a/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs index 61b6e4313ed5..061c019c9b6e 100644 --- a/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs @@ -11,22 +11,12 @@ public abstract class SharedStunProviderSystem : EntitySystem /// /// Set the battery field on the stun provider. /// - public void SetBattery(EntityUid uid, EntityUid? battery, StunProviderComponent? comp = null) + public void SetBattery(Entity ent, EntityUid? battery) { - if (!Resolve(uid, ref comp)) + if (!Resolve(ent, ref ent.Comp) || ent.Comp.BatteryUid == battery) return; - comp.BatteryUid = battery; - } - - /// - /// Set the no power popup field on the stun provider. - /// - public void SetNoPowerPopup(EntityUid uid, string popup, StunProviderComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return; - - comp.NoPowerPopup = popup; + ent.Comp.BatteryUid = battery; + Dirty(ent, ent.Comp); } } diff --git a/Content.Shared/Objectives/Components/ObjectiveComponent.cs b/Content.Shared/Objectives/Components/ObjectiveComponent.cs index 36d3fa0bded7..fb2e6ca0a686 100644 --- a/Content.Shared/Objectives/Components/ObjectiveComponent.cs +++ b/Content.Shared/Objectives/Components/ObjectiveComponent.cs @@ -22,8 +22,11 @@ public sealed partial class ObjectiveComponent : Component /// /// Organisation that issued this objective, used for grouping and as a header above common objectives. /// - [DataField(required: true)] - public string Issuer = string.Empty; + [DataField("issuer", required: true)] + private LocId Issuer { get; set; } + + [ViewVariables(VVAccess.ReadOnly)] + public string LocIssuer => Loc.GetString(Issuer); /// /// Unique objectives can only have 1 per prototype id. diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs index 07032a00ce98..35fa501398fc 100644 --- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs +++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs @@ -1,5 +1,5 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Mind; -using Content.Shared.Objectives; using Content.Shared.Objectives.Components; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -40,7 +40,7 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O if (comp.Unique) { var proto = _metaQuery.GetComponent(uid).EntityPrototype?.ID; - foreach (var objective in mind.AllObjectives) + foreach (var objective in mind.Objectives) { if (_metaQuery.GetComponent(objective).EntityPrototype?.ID == proto) return false; @@ -91,6 +91,17 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O return uid; } + /// + /// Spawns and assigns an objective for a mind. + /// The objective is not added to the mind's objectives, mind system does that in TryAddObjective. + /// If the objective could not be assigned the objective is deleted and false is returned. + /// + public bool TryCreateObjective(Entity mind, EntProtoId proto, [NotNullWhen(true)] out EntityUid? objective) + { + objective = TryCreateObjective(mind.Owner, mind.Comp, proto); + return objective != null; + } + /// /// Get the title, description, icon and progress of an objective using . /// If any of them are null it is logged and null is returned. @@ -103,20 +114,43 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O if (!Resolve(mindId, ref mind)) return null; - var ev = new ObjectiveGetProgressEvent(mindId, mind); - RaiseLocalEvent(uid, ref ev); + if (GetProgress(uid, (mindId, mind)) is not {} progress) + return null; var comp = Comp(uid); var meta = MetaData(uid); var title = meta.EntityName; var description = meta.EntityDescription; - if (comp.Icon == null || ev.Progress == null) + if (comp.Icon == null) { - Log.Error($"An objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind)} is missing icon or progress ({ev.Progress})"); + Log.Error($"An objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind)} is missing an icon!"); return null; } - return new ObjectiveInfo(title, description, comp.Icon, ev.Progress.Value); + return new ObjectiveInfo(title, description, comp.Icon, progress); + } + + /// + /// Gets the progress of an objective using . + /// Returning null is a programmer error. + /// + public float? GetProgress(EntityUid uid, Entity mind) + { + var ev = new ObjectiveGetProgressEvent(mind, mind.Comp); + RaiseLocalEvent(uid, ref ev); + if (ev.Progress != null) + return ev.Progress; + + Log.Error($"Objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind.Comp)} didn't set a progress value!"); + return null; + } + + /// + /// Returns true if an objective is completed. + /// + public bool IsCompleted(EntityUid uid, Entity mind) + { + return (GetProgress(uid, mind) ?? 0f) >= 0.999f; } /// diff --git a/Content.Shared/PAI/PAIComponent.cs b/Content.Shared/PAI/PAIComponent.cs index b4e4c9273541..9d5be3027588 100644 --- a/Content.Shared/PAI/PAIComponent.cs +++ b/Content.Shared/PAI/PAIComponent.cs @@ -31,7 +31,7 @@ public sealed partial class PAIComponent : Component public EntityUid? MidiAction; [DataField] - public ProtoId MapActionId = "ActionPAIOpenMap"; + public EntProtoId MapActionId = "ActionPAIOpenMap"; [DataField, AutoNetworkedField] public EntityUid? MapAction; diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 775ccb7c446c..9f8c5ad9befb 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -58,7 +58,7 @@ public enum CollisionGroup // Tabletop machines, windoors, firelocks TabletopMachineMask = Impassable | HighImpassable, // Tabletop machines - TabletopMachineLayer = Opaque | HighImpassable | BulletImpassable, + TabletopMachineLayer = Opaque | BulletImpassable, // Airlocks, windoors, firelocks GlassAirlockLayer = HighImpassable | MidImpassable | BulletImpassable | InteractImpassable, diff --git a/Content.Shared/Pinpointer/SharedProximityBeeper.cs b/Content.Shared/Pinpointer/SharedProximityBeeper.cs deleted file mode 100644 index 516311268330..000000000000 --- a/Content.Shared/Pinpointer/SharedProximityBeeper.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Pinpointer; - -[Serializable, NetSerializable] -public enum ProximityBeeperVisuals : byte -{ - Enabled -} diff --git a/Content.Shared/PowerCell/PowerCellDrawComponent.cs b/Content.Shared/PowerCell/PowerCellDrawComponent.cs index 708a86a8eaf9..94de7c778783 100644 --- a/Content.Shared/PowerCell/PowerCellDrawComponent.cs +++ b/Content.Shared/PowerCell/PowerCellDrawComponent.cs @@ -6,6 +6,10 @@ namespace Content.Shared.PowerCell; /// /// Indicates that the entity's ActivatableUI requires power or else it closes. /// +/// +/// With ActivatableUI it will activate and deactivate when the ui is opened and closed, drawing power inbetween. +/// Requires to work. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class PowerCellDrawComponent : Component { @@ -26,10 +30,12 @@ public sealed partial class PowerCellDrawComponent : Component #endregion /// - /// Is this power cell currently drawing power every tick. + /// Whether drawing is enabled, regardless of ItemToggle. + /// Having no cell will still disable it. + /// Only use this if you really don't want it to use power for some time. /// - [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] - public bool Drawing; + [DataField, AutoNetworkedField] + public bool Enabled = true; /// /// How much the entity draws while the UI is open. @@ -51,4 +57,10 @@ public sealed partial class PowerCellDrawComponent : Component [DataField("nextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextUpdateTime; + + /// + /// How long to wait between power drawing. + /// + [DataField] + public TimeSpan Delay = TimeSpan.FromSeconds(1); } diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index 508bfc85f08e..2b2a836633cc 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -1,4 +1,6 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell.Components; using Content.Shared.Rejuvenate; using Robust.Shared.Containers; @@ -11,14 +13,19 @@ public abstract class SharedPowerCellSystem : EntitySystem [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] protected readonly ItemToggleSystem Toggle = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnCellInserted); SubscribeLocalEvent(OnCellRemoved); SubscribeLocalEvent(OnCellInsertAttempt); + + SubscribeLocalEvent(OnActivateAttempt); + SubscribeLocalEvent(OnToggled); } private void OnRejuvenate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) @@ -63,13 +70,25 @@ protected virtual void OnCellRemoved(EntityUid uid, PowerCellSlotComponent compo RaiseLocalEvent(uid, new PowerCellChangedEvent(true), false); } - public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) + { + if (!HasDrawCharge(ent, ent.Comp, user: args.User) + || !HasActivatableCharge(ent, ent.Comp, user: args.User)) + args.Cancelled = true; + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + ent.Comp.NextUpdateTime = Timing.CurTime; + } + + public void SetDrawEnabled(Entity ent, bool enabled) { - if (!Resolve(uid, ref component, false) || enabled == component.Drawing) + if (!Resolve(ent, ref ent.Comp, false) || ent.Comp.Enabled == enabled) return; - component.Drawing = enabled; - component.NextUpdateTime = Timing.CurTime; + ent.Comp.Enabled = enabled; + Dirty(ent, ent.Comp); } /// diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index b718c3a69008..1f6f2b6918fa 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -120,7 +120,10 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP if (component.Offset != Vector2.Zero) { - _transform.SetLocalPosition(uid, xform.LocalPosition + xform.LocalRotation.RotateVec(component.Offset), + var rotation = xform.LocalRotation; + if (TryComp(uid, out var throwingAngleComp)) + rotation += throwingAngleComp.Angle; + _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), xform); } diff --git a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs index 09cb7f06d5d9..7e2bb4dfe620 100644 --- a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs +++ b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs @@ -10,12 +10,6 @@ namespace Content.Shared.ProximityDetection.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState ,Access(typeof(ProximityDetectionSystem))] public sealed partial class ProximityDetectorComponent : Component { - /// - /// Whether or not it's on. - /// - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public bool Enabled = true; - /// /// The criteria used to filter entities /// Note: RequireAll is only supported for tags, all components are required to count as a match! @@ -35,13 +29,13 @@ public sealed partial class ProximityDetectorComponent : Component [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public FixedPoint2 Distance = -1; - /// /// The farthest distance to search for targets /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public FixedPoint2 Range = 10f; + // TODO: use timespans not this public float AccumulatedFrameTime; [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] diff --git a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs index db25e8bc5117..df302f94771e 100644 --- a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs +++ b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs @@ -1,4 +1,6 @@ -using Content.Shared.ProximityDetection.Components; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.ProximityDetection.Components; using Content.Shared.Tag; using Robust.Shared.Network; @@ -9,6 +11,7 @@ namespace Content.Shared.ProximityDetection.Systems; public sealed class ProximityDetectionSystem : EntitySystem { [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly INetManager _net = default!; @@ -17,10 +20,10 @@ public sealed class ProximityDetectionSystem : EntitySystem public override void Initialize() { - SubscribeLocalEvent(OnPaused); - SubscribeLocalEvent(OnUnpaused); - SubscribeLocalEvent(OnCompInit); + base.Initialize(); + SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnToggled); } private void OnCompInit(EntityUid uid, ProximityDetectorComponent component, ComponentInit args) @@ -30,57 +33,39 @@ private void OnCompInit(EntityUid uid, ProximityDetectorComponent component, Com Log.Debug("DetectorComponent only supports requireAll = false for tags. All components are required for a match!"); } - private void OnPaused(EntityUid owner, ProximityDetectorComponent component, EntityPausedEvent args) - { - SetEnable_Internal(owner,component,false); - } - - private void OnUnpaused(EntityUid owner, ProximityDetectorComponent detector, ref EntityUnpausedEvent args) - { - SetEnable_Internal(owner, detector,true); - } - public void SetEnable(EntityUid owner, bool enabled, ProximityDetectorComponent? detector = null) - { - if (!Resolve(owner, ref detector) || detector.Enabled == enabled) - return; - SetEnable_Internal(owner ,detector, enabled); - } - public override void Update(float frameTime) { if (_net.IsClient) return; + var query = EntityQueryEnumerator(); while (query.MoveNext(out var owner, out var detector)) { - if (!detector.Enabled) + if (!_toggle.IsActivated(owner)) continue; + detector.AccumulatedFrameTime += frameTime; if (detector.AccumulatedFrameTime < detector.UpdateRate) continue; + detector.AccumulatedFrameTime -= detector.UpdateRate; RunUpdate_Internal(owner, detector); } } - public bool GetEnable(EntityUid owner, ProximityDetectorComponent? detector = null) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - return Resolve(owner, ref detector, false) && detector.Enabled; - } - - private void SetEnable_Internal(EntityUid owner,ProximityDetectorComponent detector, bool enabled) - { - detector.Enabled = enabled; - var noDetectEvent = new ProximityTargetUpdatedEvent(detector, detector.TargetEnt, detector.Distance); - RaiseLocalEvent(owner, ref noDetectEvent); - if (!enabled) + if (args.Activated) { - detector.AccumulatedFrameTime = 0; - RunUpdate_Internal(owner, detector); - Dirty(owner, detector); + RunUpdate_Internal(ent, ent.Comp); return; } - RunUpdate_Internal(owner, detector); + + var noDetectEvent = new ProximityTargetUpdatedEvent(ent.Comp, Target: null, ent.Comp.Distance); + RaiseLocalEvent(ent, ref noDetectEvent); + + ent.Comp.AccumulatedFrameTime = 0; + Dirty(ent, ent.Comp); } public void ForceUpdate(EntityUid owner, ProximityDetectorComponent? detector = null) @@ -90,11 +75,31 @@ public void ForceUpdate(EntityUid owner, ProximityDetectorComponent? detector = RunUpdate_Internal(owner, detector); } + private void ClearTarget(Entity ent) + { + var (uid, comp) = ent; + if (comp.TargetEnt == null) + return; + + comp.Distance = -1; + comp.TargetEnt = null; + var noDetectEvent = new ProximityTargetUpdatedEvent(comp, null, -1); + RaiseLocalEvent(uid, ref noDetectEvent); + var newTargetEvent = new NewProximityTargetEvent(comp, null); + RaiseLocalEvent(uid, ref newTargetEvent); + Dirty(uid, comp); + } private void RunUpdate_Internal(EntityUid owner,ProximityDetectorComponent detector) { if (!_net.IsServer) //only run detection checks on the server! return; + + if (Deleted(detector.TargetEnt)) + { + ClearTarget((owner, detector)); + } + var xformQuery = GetEntityQuery(); var xform = xformQuery.GetComponent(owner); List<(EntityUid TargetEnt, float Distance)> detections = new(); @@ -173,15 +178,7 @@ private void UpdateTargetFromClosest(EntityUid owner, ProximityDetectorComponent { if (detections.Count == 0) { - if (detector.TargetEnt == null) - return; - detector.Distance = -1; - detector.TargetEnt = null; - var noDetectEvent = new ProximityTargetUpdatedEvent(detector, null, -1); - RaiseLocalEvent(owner, ref noDetectEvent); - var newTargetEvent = new NewProximityTargetEvent(detector, null); - RaiseLocalEvent(owner, ref newTargetEvent); - Dirty(owner, detector); + ClearTarget((owner, detector)); return; } var closestDistance = detections[0].Distance; @@ -198,6 +195,7 @@ private void UpdateTargetFromClosest(EntityUid owner, ProximityDetectorComponent var newData = newTarget || detector.Distance != closestDistance; detector.TargetEnt = closestEnt; detector.Distance = closestDistance; + Dirty(owner, detector); if (newTarget) { var newTargetEvent = new NewProximityTargetEvent(detector, closestEnt); diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 974755f0004f..62ad2f3be0de 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -572,8 +572,6 @@ public bool TryGetMapGridData(EntityCoordinates location, [NotNullWhen(true)] ou return false; } - gridUid = mapGrid.Owner; - var tile = _mapSystem.GetTileRef(gridUid.Value, mapGrid, location); var position = _mapSystem.TileIndicesFor(gridUid.Value, mapGrid, location); mapGridData = new MapGridData(gridUid.Value, mapGrid, location, tile, position); diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index cfa553661a39..7b050273db61 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -239,14 +239,14 @@ public void AddChannelsExamine(HashSet channels, string? defaultChannel, { var msg = Loc.GetString("examine-headset-default-channel", ("prefix", SharedChatSystem.DefaultChannelPrefix), - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } if (HasComp(examineEvent.Examined)) { var msg = Loc.GetString("examine-encryption-default-channel", - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } diff --git a/Content.Shared/Radio/RadioChannelPrototype.cs b/Content.Shared/Radio/RadioChannelPrototype.cs index cc65f885375c..166db0577eac 100644 --- a/Content.Shared/Radio/RadioChannelPrototype.cs +++ b/Content.Shared/Radio/RadioChannelPrototype.cs @@ -9,7 +9,7 @@ public sealed partial class RadioChannelPrototype : IPrototype /// Human-readable name for the channel. /// [DataField("name")] - public string Name { get; private set; } = string.Empty; + public LocId Name { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); diff --git a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs index 0b618a262db4..376e91743d07 100644 --- a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs +++ b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Dataset; using Content.Shared.FixedPoint; @@ -87,6 +88,26 @@ public static T Pick(this IRobustRandom random, Dictionary weights) throw new InvalidOperationException("Invalid weighted pick"); } + public static T PickAndTake(this IRobustRandom random, Dictionary weights) + where T : notnull + { + var pick = Pick(random, weights); + weights.Remove(pick); + return pick; + } + + public static bool TryPickAndTake(this IRobustRandom random, Dictionary weights, [NotNullWhen(true)] out T? pick) + where T : notnull + { + if (weights.Count == 0) + { + pick = default; + return false; + } + pick = PickAndTake(random, weights); + return true; + } + public static (string reagent, FixedPoint2 quantity) Pick(this WeightedRandomFillSolutionPrototype prototype, IRobustRandom? random = null) { var randomFill = prototype.PickRandomFill(random); diff --git a/Content.Shared/Random/Rules/AlwaysTrue.cs b/Content.Shared/Random/Rules/AlwaysTrue.cs new file mode 100644 index 000000000000..98b81fae793f --- /dev/null +++ b/Content.Shared/Random/Rules/AlwaysTrue.cs @@ -0,0 +1,12 @@ +namespace Content.Shared.Random.Rules; + +/// +/// Always returns true. Used for fallbacks. +/// +public sealed partial class AlwaysTrueRule : RulesRule +{ + public override bool Check(EntityManager entManager, EntityUid uid) + { + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/GridInRange.cs b/Content.Shared/Random/Rules/GridInRange.cs new file mode 100644 index 000000000000..8cbbef1cdc21 --- /dev/null +++ b/Content.Shared/Random/Rules/GridInRange.cs @@ -0,0 +1,39 @@ +using System.Numerics; +using Robust.Shared.Map; + +namespace Content.Shared.Random.Rules; + +/// +/// Returns true if on a grid or in range of one. +/// +public sealed partial class GridInRangeRule : RulesRule +{ + [DataField] + public float Range = 10f; + + public override bool Check(EntityManager entManager, EntityUid uid) + { + if (!entManager.TryGetComponent(uid, out TransformComponent? xform)) + { + return false; + } + + if (xform.GridUid != null) + { + return !Inverted; + } + + var transform = entManager.System(); + var mapManager = IoCManager.Resolve(); + + var worldPos = transform.GetWorldPosition(xform); + var gridRange = new Vector2(Range, Range); + + foreach (var _ in mapManager.FindGridsIntersecting(xform.MapID, new Box2(worldPos - gridRange, worldPos + gridRange))) + { + return !Inverted; + } + + return false; + } +} diff --git a/Content.Shared/Random/Rules/InSpace.cs b/Content.Shared/Random/Rules/InSpace.cs new file mode 100644 index 000000000000..8163e1f6be9a --- /dev/null +++ b/Content.Shared/Random/Rules/InSpace.cs @@ -0,0 +1,18 @@ +namespace Content.Shared.Random.Rules; + +/// +/// Returns true if the attached entity is in space. +/// +public sealed partial class InSpaceRule : RulesRule +{ + public override bool Check(EntityManager entManager, EntityUid uid) + { + if (!entManager.TryGetComponent(uid, out TransformComponent? xform) || + xform.GridUid != null) + { + return Inverted; + } + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/NearbyAccess.cs b/Content.Shared/Random/Rules/NearbyAccess.cs new file mode 100644 index 000000000000..2a8ad077c6e4 --- /dev/null +++ b/Content.Shared/Random/Rules/NearbyAccess.cs @@ -0,0 +1,77 @@ +using Content.Shared.Access; +using Content.Shared.Access.Components; +using Content.Shared.Access.Systems; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Random.Rules; + +/// +/// Checks for an entity nearby with the specified access. +/// +public sealed partial class NearbyAccessRule : RulesRule +{ + // This exists because of door electronics contained inside doors. + /// + /// Does the access entity need to be anchored. + /// + [DataField] + public bool Anchored = true; + + /// + /// Count of entities that need to be nearby. + /// + [DataField] + public int Count = 1; + + [DataField(required: true)] + public List> Access = new(); + + [DataField] + public float Range = 10f; + + public override bool Check(EntityManager entManager, EntityUid uid) + { + var xformQuery = entManager.GetEntityQuery(); + + if (!xformQuery.TryGetComponent(uid, out var xform) || + xform.MapUid == null) + { + return false; + } + + var transform = entManager.System(); + var lookup = entManager.System(); + var reader = entManager.System(); + + var found = false; + var worldPos = transform.GetWorldPosition(xform, xformQuery); + var count = 0; + + // TODO: Update this when we get the callback version + var entities = new HashSet>(); + lookup.GetEntitiesInRange(xform.MapID, worldPos, Range, entities); + foreach (var comp in entities) + { + if (!reader.AreAccessTagsAllowed(Access, comp) || + Anchored && + (!xformQuery.TryGetComponent(comp, out var compXform) || + !compXform.Anchored)) + { + continue; + } + + count++; + + if (count < Count) + continue; + + found = true; + break; + } + + if (!found) + return Inverted; + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/NearbyComponents.cs b/Content.Shared/Random/Rules/NearbyComponents.cs new file mode 100644 index 000000000000..13108e88d6cb --- /dev/null +++ b/Content.Shared/Random/Rules/NearbyComponents.cs @@ -0,0 +1,71 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Random.Rules; + +public sealed partial class NearbyComponentsRule : RulesRule +{ + /// + /// Does the entity need to be anchored. + /// + [DataField] + public bool Anchored; + + [DataField] + public int Count; + + [DataField(required: true)] + public ComponentRegistry Components = default!; + + [DataField] + public float Range = 10f; + + public override bool Check(EntityManager entManager, EntityUid uid) + { + var inRange = new HashSet>(); + var xformQuery = entManager.GetEntityQuery(); + + if (!xformQuery.TryGetComponent(uid, out var xform) || + xform.MapUid == null) + { + return false; + } + + var transform = entManager.System(); + var lookup = entManager.System(); + + var found = false; + var worldPos = transform.GetWorldPosition(xform); + var count = 0; + + foreach (var compType in Components.Values) + { + inRange.Clear(); + lookup.GetEntitiesInRange(compType.Component.GetType(), xform.MapID, worldPos, Range, inRange); + foreach (var comp in inRange) + { + if (Anchored && + (!xformQuery.TryGetComponent(comp, out var compXform) || + !compXform.Anchored)) + { + continue; + } + + count++; + + if (count < Count) + continue; + + found = true; + break; + } + + if (found) + break; + } + + if (!found) + return Inverted; + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/NearbyEntities.cs b/Content.Shared/Random/Rules/NearbyEntities.cs new file mode 100644 index 000000000000..0754750bc470 --- /dev/null +++ b/Content.Shared/Random/Rules/NearbyEntities.cs @@ -0,0 +1,58 @@ +using Content.Shared.Whitelist; + +namespace Content.Shared.Random.Rules; + +/// +/// Checks for entities matching the whitelist in range. +/// This is more expensive than so prefer that! +/// +public sealed partial class NearbyEntitiesRule : RulesRule +{ + /// + /// How many of the entity need to be nearby. + /// + [DataField] + public int Count = 1; + + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); + + [DataField] + public float Range = 10f; + + public override bool Check(EntityManager entManager, EntityUid uid) + { + if (!entManager.TryGetComponent(uid, out TransformComponent? xform) || + xform.MapUid == null) + { + return false; + } + + var transform = entManager.System(); + var lookup = entManager.System(); + var whitelistSystem = entManager.System(); + + var found = false; + var worldPos = transform.GetWorldPosition(xform); + var count = 0; + + foreach (var ent in lookup.GetEntitiesInRange(xform.MapID, worldPos, Range)) + { + if (whitelistSystem.IsWhitelistFail(Whitelist, ent)) + continue; + + count++; + + if (count < Count) + continue; + + found = true; + break; + } + + if (!found) + return Inverted; + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/NearbyTilesPercent.cs b/Content.Shared/Random/Rules/NearbyTilesPercent.cs new file mode 100644 index 000000000000..465ac8dc5c69 --- /dev/null +++ b/Content.Shared/Random/Rules/NearbyTilesPercent.cs @@ -0,0 +1,79 @@ +using Content.Shared.Maps; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Random.Rules; + +public sealed partial class NearbyTilesPercentRule : RulesRule +{ + /// + /// If there are anchored entities on the tile do we ignore the tile. + /// + [DataField] + public bool IgnoreAnchored; + + [DataField(required: true)] + public float Percent; + + [DataField(required: true)] + public List> Tiles = new(); + + [DataField] + public float Range = 10f; + + public override bool Check(EntityManager entManager, EntityUid uid) + { + if (!entManager.TryGetComponent(uid, out TransformComponent? xform) || + !entManager.TryGetComponent(xform.GridUid, out var grid)) + { + return false; + } + + var transform = entManager.System(); + var tileDef = IoCManager.Resolve(); + + var physicsQuery = entManager.GetEntityQuery(); + var tileCount = 0; + var matchingTileCount = 0; + + foreach (var tile in grid.GetTilesIntersecting(new Circle(transform.GetWorldPosition(xform), + Range))) + { + // Only consider collidable anchored (for reasons some subfloor stuff has physics but non-collidable) + if (IgnoreAnchored) + { + var gridEnum = grid.GetAnchoredEntitiesEnumerator(tile.GridIndices); + var found = false; + + while (gridEnum.MoveNext(out var ancUid)) + { + if (!physicsQuery.TryGetComponent(ancUid, out var physics) || + !physics.CanCollide) + { + continue; + } + + found = true; + break; + } + + if (found) + continue; + } + + tileCount++; + + if (!Tiles.Contains(tileDef[tile.Tile.TypeId].ID)) + continue; + + matchingTileCount++; + } + + if (tileCount == 0 || matchingTileCount / (float) tileCount < Percent) + return Inverted; + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/OnMapGrid.cs b/Content.Shared/Random/Rules/OnMapGrid.cs new file mode 100644 index 000000000000..bea841872eb0 --- /dev/null +++ b/Content.Shared/Random/Rules/OnMapGrid.cs @@ -0,0 +1,19 @@ +namespace Content.Shared.Random.Rules; + +/// +/// Returns true if griduid and mapuid match (AKA on 'planet'). +/// +public sealed partial class OnMapGridRule : RulesRule +{ + public override bool Check(EntityManager entManager, EntityUid uid) + { + if (!entManager.TryGetComponent(uid, out TransformComponent? xform) || + xform.GridUid != xform.MapUid || + xform.MapUid == null) + { + return Inverted; + } + + return !Inverted; + } +} diff --git a/Content.Shared/Random/Rules/RulesSystem.cs b/Content.Shared/Random/Rules/RulesSystem.cs new file mode 100644 index 000000000000..1957beab5105 --- /dev/null +++ b/Content.Shared/Random/Rules/RulesSystem.cs @@ -0,0 +1,39 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Random.Rules; + +/// +/// Rules-based item selection. Can be used for any sort of conditional selection +/// Every single condition needs to be true for this to be selected. +/// e.g. "choose maintenance audio if 90% of tiles nearby are maintenance tiles" +/// +[Prototype("rules")] +public sealed partial class RulesPrototype : IPrototype +{ + [IdDataField] public string ID { get; } = string.Empty; + + [DataField("rules", required: true)] + public List Rules = new(); +} + +[ImplicitDataDefinitionForInheritors] +public abstract partial class RulesRule +{ + [DataField] + public bool Inverted; + public abstract bool Check(EntityManager entManager, EntityUid uid); +} + +public sealed class RulesSystem : EntitySystem +{ + public bool IsTrue(EntityUid uid, RulesPrototype rules) + { + foreach (var rule in rules.Rules) + { + if (!rule.Check(EntityManager, uid)) + return false; + } + + return true; + } +} diff --git a/Content.Shared/Random/RulesPrototype.cs b/Content.Shared/Random/RulesPrototype.cs deleted file mode 100644 index 20961af8e72f..000000000000 --- a/Content.Shared/Random/RulesPrototype.cs +++ /dev/null @@ -1,141 +0,0 @@ -using Content.Shared.Access; -using Content.Shared.Maps; -using Content.Shared.Whitelist; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Random; - -/// -/// Rules-based item selection. Can be used for any sort of conditional selection -/// Every single condition needs to be true for this to be selected. -/// e.g. "choose maintenance audio if 90% of tiles nearby are maintenance tiles" -/// -[Prototype("rules")] -public sealed partial class RulesPrototype : IPrototype -{ - [IdDataField] public string ID { get; } = string.Empty; - - [DataField("rules", required: true)] - public List Rules = new(); -} - -[ImplicitDataDefinitionForInheritors] -public abstract partial class RulesRule -{ - -} - -/// -/// Returns true if the attached entity is in space. -/// -public sealed partial class InSpaceRule : RulesRule -{ - -} - -/// -/// Checks for entities matching the whitelist in range. -/// This is more expensive than so prefer that! -/// -public sealed partial class NearbyEntitiesRule : RulesRule -{ - /// - /// How many of the entity need to be nearby. - /// - [DataField("count")] - public int Count = 1; - - [DataField("whitelist", required: true)] - public EntityWhitelist Whitelist = new(); - - [DataField("range")] - public float Range = 10f; -} - -public sealed partial class NearbyTilesPercentRule : RulesRule -{ - /// - /// If there are anchored entities on the tile do we ignore the tile. - /// - [DataField("ignoreAnchored")] public bool IgnoreAnchored; - - [DataField("percent", required: true)] - public float Percent; - - [DataField("tiles", required: true, customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List Tiles = new(); - - [DataField("range")] - public float Range = 10f; -} - -/// -/// Always returns true. Used for fallbacks. -/// -public sealed partial class AlwaysTrueRule : RulesRule -{ - -} - -/// -/// Returns true if on a grid or in range of one. -/// -public sealed partial class GridInRangeRule : RulesRule -{ - [DataField("range")] - public float Range = 10f; - - [DataField("inverted")] - public bool Inverted = false; -} - -/// -/// Returns true if griduid and mapuid match (AKA on 'planet'). -/// -public sealed partial class OnMapGridRule : RulesRule -{ - -} - -/// -/// Checks for an entity nearby with the specified access. -/// -public sealed partial class NearbyAccessRule : RulesRule -{ - // This exists because of doorelectronics contained inside doors. - /// - /// Does the access entity need to be anchored. - /// - [DataField("anchored")] - public bool Anchored = true; - - /// - /// Count of entities that need to be nearby. - /// - [DataField("count")] - public int Count = 1; - - [DataField("access", required: true)] - public List> Access = new(); - - [DataField("range")] - public float Range = 10f; -} - -public sealed partial class NearbyComponentsRule : RulesRule -{ - /// - /// Does the entity need to be anchored. - /// - [DataField("anchored")] - public bool Anchored; - - [DataField("count")] public int Count; - - [DataField("components", required: true)] - public ComponentRegistry Components = default!; - - [DataField("range")] - public float Range = 10f; -} diff --git a/Content.Shared/Random/RulesSystem.cs b/Content.Shared/Random/RulesSystem.cs deleted file mode 100644 index 58d67c268e3a..000000000000 --- a/Content.Shared/Random/RulesSystem.cs +++ /dev/null @@ -1,247 +0,0 @@ -using System.Numerics; -using Content.Shared.Access.Components; -using Content.Shared.Access.Systems; -using Content.Shared.Whitelist; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; -using Robust.Shared.Physics.Components; - -namespace Content.Shared.Random; - -public sealed class RulesSystem : EntitySystem -{ - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly ITileDefinitionManager _tileDef = default!; - [Dependency] private readonly AccessReaderSystem _reader = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; - public bool IsTrue(EntityUid uid, RulesPrototype rules) - { - var inRange = new HashSet>(); - foreach (var rule in rules.Rules) - { - switch (rule) - { - case AlwaysTrueRule: - break; - case GridInRangeRule griddy: - { - if (!TryComp(uid, out TransformComponent? xform)) - { - return false; - } - - if (xform.GridUid != null) - { - return !griddy.Inverted; - } - - var worldPos = _transform.GetWorldPosition(xform); - var gridRange = new Vector2(griddy.Range, griddy.Range); - - foreach (var _ in _mapManager.FindGridsIntersecting( - xform.MapID, - new Box2(worldPos - gridRange, worldPos + gridRange))) - { - return !griddy.Inverted; - } - - break; - } - case InSpaceRule: - { - if (!TryComp(uid, out TransformComponent? xform) || - xform.GridUid != null) - { - return false; - } - - break; - } - case NearbyAccessRule access: - { - var xformQuery = GetEntityQuery(); - - if (!xformQuery.TryGetComponent(uid, out var xform) || - xform.MapUid == null) - { - return false; - } - - var found = false; - var worldPos = _transform.GetWorldPosition(xform, xformQuery); - var count = 0; - - // TODO: Update this when we get the callback version - var entities = new HashSet>(); - _lookup.GetEntitiesInRange(xform.MapID, worldPos, access.Range, entities); - foreach (var comp in entities) - { - if (!_reader.AreAccessTagsAllowed(access.Access, comp) || - access.Anchored && - (!xformQuery.TryGetComponent(comp, out var compXform) || - !compXform.Anchored)) - { - continue; - } - - count++; - - if (count < access.Count) - continue; - - found = true; - break; - } - - if (!found) - return false; - - break; - } - case NearbyComponentsRule nearbyComps: - { - var xformQuery = GetEntityQuery(); - - if (!xformQuery.TryGetComponent(uid, out var xform) || - xform.MapUid == null) - { - return false; - } - - var found = false; - var worldPos = _transform.GetWorldPosition(xform); - var count = 0; - - foreach (var compType in nearbyComps.Components.Values) - { - inRange.Clear(); - _lookup.GetEntitiesInRange(compType.Component.GetType(), xform.MapID, worldPos, nearbyComps.Range, inRange); - foreach (var comp in inRange) - { - if (nearbyComps.Anchored && - (!xformQuery.TryGetComponent(comp, out var compXform) || - !compXform.Anchored)) - { - continue; - } - - count++; - - if (count < nearbyComps.Count) - continue; - - found = true; - break; - } - - if (found) - break; - } - - if (!found) - return false; - - break; - } - case NearbyEntitiesRule entity: - { - if (!TryComp(uid, out TransformComponent? xform) || - xform.MapUid == null) - { - return false; - } - - var found = false; - var worldPos = _transform.GetWorldPosition(xform); - var count = 0; - - foreach (var ent in _lookup.GetEntitiesInRange(xform.MapID, worldPos, entity.Range)) - { - if (_whitelistSystem.IsWhitelistFail(entity.Whitelist, ent)) - continue; - - count++; - - if (count < entity.Count) - continue; - - found = true; - break; - } - - if (!found) - return false; - - break; - } - case NearbyTilesPercentRule tiles: - { - if (!TryComp(uid, out TransformComponent? xform) || - !TryComp(xform.GridUid, out var grid)) - { - return false; - } - - var physicsQuery = GetEntityQuery(); - var tileCount = 0; - var matchingTileCount = 0; - - foreach (var tile in grid.GetTilesIntersecting(new Circle(_transform.GetWorldPosition(xform), - tiles.Range))) - { - // Only consider collidable anchored (for reasons some subfloor stuff has physics but non-collidable) - if (tiles.IgnoreAnchored) - { - var gridEnum = grid.GetAnchoredEntitiesEnumerator(tile.GridIndices); - var found = false; - - while (gridEnum.MoveNext(out var ancUid)) - { - if (!physicsQuery.TryGetComponent(ancUid, out var physics) || - !physics.CanCollide) - { - continue; - } - - found = true; - break; - } - - if (found) - continue; - } - - tileCount++; - - if (!tiles.Tiles.Contains(_tileDef[tile.Tile.TypeId].ID)) - continue; - - matchingTileCount++; - } - - if (tileCount == 0 || matchingTileCount / (float) tileCount < tiles.Percent) - return false; - - break; - } - case OnMapGridRule: - { - if (!TryComp(uid, out TransformComponent? xform) || - xform.GridUid != xform.MapUid || - xform.MapUid == null) - { - return false; - } - - break; - } - default: - throw new NotImplementedException(); - } - } - - return true; - } -} diff --git a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs index e1776873da91..de0fe0bce381 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs @@ -15,12 +15,6 @@ namespace Content.Shared.Silicons.Borgs.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem)), AutoGenerateComponentState] public sealed partial class BorgChassisComponent : Component { - /// - /// Whether or not the borg is activated, meaning it has access to modules and a heightened movement speed - /// - [DataField("activated"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Activated; - #region Brain /// /// A whitelist for which entities count as valid brains @@ -68,7 +62,7 @@ public sealed partial class BorgChassisComponent : Component /// /// The currently selected module /// - [DataField("selectedModule")] + [DataField("selectedModule"), AutoNetworkedField] public EntityUid? SelectedModule; #region Visuals diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs index 2983c0d642f2..48d235783681 100644 --- a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs +++ b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Item.ItemToggle; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Popups; @@ -18,6 +19,7 @@ public abstract partial class SharedBorgSystem : EntitySystem { [Dependency] protected readonly SharedContainerSystem Container = default!; [Dependency] protected readonly ItemSlotsSystem ItemSlots = default!; + [Dependency] protected readonly ItemToggleSystem Toggle = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; /// @@ -96,7 +98,7 @@ protected virtual void OnRemoved(EntityUid uid, BorgChassisComponent component, private void OnRefreshMovementSpeedModifiers(EntityUid uid, BorgChassisComponent component, RefreshMovementSpeedModifiersEvent args) { - if (component.Activated) + if (Toggle.IsActivated(uid)) return; if (!TryComp(uid, out var movement)) diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index d10b86c2417d..5924c95cdc1c 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Silicons.Laws; [Virtual, DataDefinition] [Serializable, NetSerializable] -public partial class SiliconLaw : IComparable +public partial class SiliconLaw : IComparable, IEquatable { /// /// A locale string which is the actual text of the law. @@ -39,13 +39,27 @@ public int CompareTo(SiliconLaw? other) return Order.CompareTo(other.Order); } - public bool Equals(SiliconLaw other) + public bool Equals(SiliconLaw? other) { + if (other == null) + return false; return LawString == other.LawString && Order == other.Order && LawIdentifierOverride == other.LawIdentifierOverride; } + public override bool Equals(object? obj) + { + if (obj == null) + return false; + return Equals(obj as SiliconLaw); + } + + public override int GetHashCode() + { + return HashCode.Combine(LawString, Order, LawIdentifierOverride); + } + /// /// Return a shallow clone of this law. /// diff --git a/Content.Shared/Slippery/SlipperyComponent.cs b/Content.Shared/Slippery/SlipperyComponent.cs index b80a9b57e4d4..154ca6c51a45 100644 --- a/Content.Shared/Slippery/SlipperyComponent.cs +++ b/Content.Shared/Slippery/SlipperyComponent.cs @@ -25,14 +25,14 @@ public sealed partial class SlipperyComponent : Component /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float ParalyzeTime = 3f; + public float ParalyzeTime = 1.5f; /// /// The entity's speed will be multiplied by this to slip it forwards. /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float LaunchForwardsMultiplier = 1f; + public float LaunchForwardsMultiplier = 1.5f; /// /// If this is true, any slipping entity loses its friction until diff --git a/Content.Shared/Storage/Components/ItemCounterComponent.cs b/Content.Shared/Storage/Components/ItemCounterComponent.cs index 890bc84e721b..6a1444ebf629 100644 --- a/Content.Shared/Storage/Components/ItemCounterComponent.cs +++ b/Content.Shared/Storage/Components/ItemCounterComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Storage.EntitySystems; +using Content.Shared.Storage.EntitySystems; using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components diff --git a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs index cfa082a9eebb..7ae821d8d91b 100644 --- a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs @@ -4,106 +4,109 @@ using JetBrains.Annotations; using Robust.Shared.Containers; -namespace Content.Shared.Storage.EntitySystems +namespace Content.Shared.Storage.EntitySystems; + +/// +/// ItemMapperSystem is a system that on each initialization, insertion, removal of an entity from +/// given (with appropriate storage attached) will check each stored item to see +/// if its tags/component, and overall quantity match . +/// +[UsedImplicitly] +public abstract class SharedItemMapperSystem : EntitySystem { - /// - /// ItemMapperSystem is a system that on each initialization, insertion, removal of an entity from - /// given (with appropriate storage attached) will check each stored item to see - /// if its tags/component, and overall quantity match . - /// - [UsedImplicitly] - public abstract class SharedItemMapperSystem : EntitySystem + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + + /// + public override void Initialize() { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + base.Initialize(); + SubscribeLocalEvent(InitLayers); + SubscribeLocalEvent(MapperEntityInserted); + SubscribeLocalEvent(MapperEntityRemoved); + } - /// - public override void Initialize() + private void InitLayers(EntityUid uid, ItemMapperComponent component, ComponentInit args) + { + foreach (var (layerName, val) in component.MapLayers) { - base.Initialize(); - SubscribeLocalEvent(InitLayers); - SubscribeLocalEvent(MapperEntityInserted); - SubscribeLocalEvent(MapperEntityRemoved); + val.Layer = layerName; } - private void InitLayers(EntityUid uid, ItemMapperComponent component, ComponentInit args) + if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent)) { - foreach (var (layerName, val) in component.MapLayers) - { - val.Layer = layerName; - } + var list = new List(component.MapLayers.Keys); + _appearance.SetData(uid, StorageMapVisuals.InitLayers, new ShowLayerData(list), appearanceComponent); + } - if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent)) - { - var list = new List(component.MapLayers.Keys); - _appearance.SetData(uid, StorageMapVisuals.InitLayers, new ShowLayerData(list), appearanceComponent); - } + // Ensure appearance is correct with current contained entities. + UpdateAppearance(uid, component); + } - // Ensure appearance is correct with current contained entities. - UpdateAppearance(uid, component); - } + private void MapperEntityRemoved(EntityUid uid, ItemMapperComponent itemMapper, EntRemovedFromContainerMessage args) + { + if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) + return; - private void MapperEntityRemoved(EntityUid uid, ItemMapperComponent itemMapper, - EntRemovedFromContainerMessage args) - { - if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) - return; + UpdateAppearance(uid, itemMapper); + } - UpdateAppearance(uid, itemMapper); - } + private void MapperEntityInserted(EntityUid uid, + ItemMapperComponent itemMapper, + EntInsertedIntoContainerMessage args) + { + if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) + return; - private void MapperEntityInserted(EntityUid uid, ItemMapperComponent itemMapper, - EntInsertedIntoContainerMessage args) - { - if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) - return; + UpdateAppearance(uid, itemMapper); + } - UpdateAppearance(uid, itemMapper); - } + private void UpdateAppearance(EntityUid uid, ItemMapperComponent? itemMapper = null) + { + if (!Resolve(uid, ref itemMapper)) + return; - private void UpdateAppearance(EntityUid uid, ItemMapperComponent? itemMapper = null) + if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent) + && TryGetLayers(uid, itemMapper, out var containedLayers)) { - if(!Resolve(uid, ref itemMapper)) - return; - - if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent) - && TryGetLayers(uid, itemMapper, out var containedLayers)) - { - _appearance.SetData(uid, StorageMapVisuals.LayerChanged, new ShowLayerData(containedLayers), appearanceComponent); - } + _appearance.SetData(uid, + StorageMapVisuals.LayerChanged, + new ShowLayerData(containedLayers), + appearanceComponent); } + } - /// - /// Method that iterates over storage of the entity in and sets according to - /// definition. It will have O(n*m) time behavior (n - number of entities in container, and m - number of - /// definitions in . - /// - /// EntityUid used to search the storage - /// component that contains definition used to map whitelist in - /// mapLayers to string. - /// - /// list of layers that should be visible - /// false if msg.Container.Owner is not a storage, true otherwise. - private bool TryGetLayers(EntityUid uid, - ItemMapperComponent itemMapper, - out List showLayers) - { - var containedLayers = _container.GetAllContainers(uid) - .Where(c => itemMapper.ContainerWhitelist?.Contains(c.ID) ?? true).SelectMany(cont => cont.ContainedEntities).ToArray(); + /// + /// Method that iterates over storage of the entity in and sets + /// according to definition. It will have O(n*m) time behavior + /// (n - number of entities in container, and m - number of definitions in ). + /// + /// EntityUid used to search the storage + /// component that contains definition used to map + /// Whitelist in to string. + /// + /// list of layers that should be visible + /// false if msg.Container.Owner is not a storage, true otherwise. + private bool TryGetLayers(EntityUid uid, ItemMapperComponent itemMapper, out List showLayers) + { + var containedLayers = _container.GetAllContainers(uid) + .Where(c => itemMapper.ContainerWhitelist?.Contains(c.ID) ?? true) + .SelectMany(cont => cont.ContainedEntities) + .ToArray(); - var list = new List(); - foreach (var mapLayerData in itemMapper.MapLayers.Values) + var list = new List(); + foreach (var mapLayerData in itemMapper.MapLayers.Values) + { + var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPassOrNull(mapLayerData.Whitelist, + ent)); + if (count >= mapLayerData.MinCount && count <= mapLayerData.MaxCount) { - var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPass(mapLayerData.Whitelist, ent)); - if (count >= mapLayerData.MinCount && count <= mapLayerData.MaxCount) - { - list.Add(mapLayerData.Layer); - } + list.Add(mapLayerData.Layer); } - - showLayers = list; - return true; } + + showLayers = list; + return true; } } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c2e0080a69f..7a207fb47cfb 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -22,6 +22,7 @@ using Content.Shared.Timing; using Content.Shared.Verbs; using Content.Shared.Whitelist; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -65,6 +66,9 @@ public abstract class SharedStorageSystem : EntitySystem public const string DefaultStorageMaxItemSize = "Normal"; public const float AreaInsertDelayPerItem = 0.075f; + private static AudioParams _audioParams = AudioParams.Default + .WithMaxDistance(7f) + .WithVolume(-2f); private ItemSizePrototype _defaultStorageMaxItemSize = default!; @@ -542,7 +546,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf // If we picked up at least one thing, play a sound and do a cool animation! if (successfullyInserted.Count > 0) { - Audio.PlayPredicted(component.StorageInsertSound, uid, args.User); + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User, _audioParams); EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), @@ -603,7 +607,7 @@ private void OnInteractWithItem(StorageInteractWithItemEvent msg, EntitySessionE { if (_sharedHandsSystem.TryPickupAnyHand(player, entity, handsComp: hands) && storageComp.StorageRemoveSound != null) - Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player); + Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player, _audioParams); { return; } @@ -663,7 +667,7 @@ private void OnRemoveItem(StorageRemoveItemEvent msg, EntitySessionEventArgs arg return; TransformSystem.DropNextTo(itemEnt, player); - Audio.PlayPredicted(storageComp.StorageRemoveSound, storageEnt, player); + Audio.PlayPredicted(storageComp.StorageRemoveSound, storageEnt, player, _audioParams); } private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args) @@ -806,7 +810,11 @@ public void UpdateAppearance(Entity ent _appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance); _appearance.SetData(uid, StorageVisuals.Open, isOpen, appearance); _appearance.SetData(uid, SharedBagOpenVisuals.BagState, isOpen ? SharedBagState.Open : SharedBagState.Closed, appearance); - _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); + + // HideClosedStackVisuals true sets the StackVisuals.Hide to the open state of the storage. + // This is for containers that only show their contents when open. (e.g. donut boxes) + if (storage.HideStackVisualsWhenClosed) + _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); } /// @@ -832,7 +840,7 @@ public void TransferEntities(EntityUid source, EntityUid target, EntityUid? user Insert(target, entity, out _, user: user, targetComp, playSound: false); } - Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user); + Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user, _audioParams); } /// @@ -1011,7 +1019,7 @@ public bool Insert( return false; if (playSound) - Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user); + Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; } @@ -1041,7 +1049,7 @@ public bool Insert( } if (playSound) - Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user); + Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; } diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2860f8dacfe8..a666169f5294 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -123,6 +123,14 @@ public sealed partial class StorageComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public StorageDefaultOrientation? DefaultStorageOrientation; + /// + /// If true, sets StackVisuals.Hide to true when the container is closed + /// Used in cases where there are sprites that are shown when the container is open but not + /// when it is closed + /// + [DataField] + public bool HideStackVisualsWhenClosed = true; + [Serializable, NetSerializable] public enum StorageUiKey : byte { diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index 58c249fec54f..a5ad77d43bf0 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -150,8 +150,19 @@ public void DoTeleport(Entity ent) return; } - var teleEnt = GetTeleportingEntity((uid, xform)); - var otherTeleEnt = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + var (teleEnt, cont) = GetTeleportingEntity((uid, xform)); + var (otherTeleEnt, otherCont) = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + + if (otherCont != null && !_container.CanInsert(teleEnt, otherCont) || + cont != null && !_container.CanInsert(otherTeleEnt, cont)) + { + _popup.PopupEntity(Loc.GetString("swap-teleporter-popup-teleport-fail", + ("entity", Identity.Entity(linkedEnt, EntityManager))), + teleEnt, + teleEnt, + PopupType.MediumCaution); + return; + } _popup.PopupEntity(Loc.GetString("swap-teleporter-popup-teleport-other", ("entity", Identity.Entity(linkedEnt, EntityManager))), @@ -184,20 +195,20 @@ public void DestroyLink(Entity ent, EntityUid? user) DestroyLink(linked, user); // the linked one is shown globally } - private EntityUid GetTeleportingEntity(Entity ent) + private (EntityUid, BaseContainer?) GetTeleportingEntity(Entity ent) { var parent = ent.Comp.ParentUid; if (_container.TryGetOuterContainer(ent, ent, out var container)) parent = container.Owner; if (HasComp(parent) || HasComp(parent)) - return ent; + return (ent, container); if (!_xformQuery.TryGetComponent(parent, out var parentXform) || parentXform.Anchored) - return ent; + return (ent, container); if (!TryComp(parent, out var body) || body.BodyType == BodyType.Static) - return ent; + return (ent, container); return GetTeleportingEntity((parent, parentXform)); } diff --git a/Content.Shared/Throwing/ThrowAttemptEvent.cs b/Content.Shared/Throwing/ThrowAttemptEvent.cs index bf8cad6c7462..dfb3dca5c7d5 100644 --- a/Content.Shared/Throwing/ThrowAttemptEvent.cs +++ b/Content.Shared/Throwing/ThrowAttemptEvent.cs @@ -13,6 +13,14 @@ public ThrowAttemptEvent(EntityUid uid, EntityUid itemUid) public EntityUid ItemUid { get; } } + /// + /// Raised on the item entity that is thrown. + /// + /// The user that threw this entity. + /// Whether or not the throw should be cancelled. + [ByRefEvent] + public record struct ThrowItemAttemptEvent(EntityUid User, bool Cancelled = false); + /// /// Raised when we try to pushback an entity from throwing /// diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 56bbf4c2bf3d..549473278e40 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -26,11 +26,6 @@ public sealed class ThrowingSystem : EntitySystem public const float PushbackDefault = 2f; - /// - /// The minimum amount of time an entity needs to be thrown before the timer can be run. - /// Anything below this threshold never enters the air. - /// - public const float MinFlyTime = 0.15f; public const float FlyTimePercentage = 0.8f; private float _frictionModifier; @@ -168,9 +163,6 @@ public void TryThrow(EntityUid uid, var flyTime = direction.Length() / baseThrowSpeed; if (compensateFriction) flyTime *= FlyTimePercentage; - - if (flyTime < MinFlyTime) - flyTime = 0f; comp.ThrownTime = _gameTiming.CurTime; comp.LandTime = comp.ThrownTime + TimeSpan.FromSeconds(flyTime); comp.PlayLandSound = playSound; diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index 0d368495f182..97ed908ed3af 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -124,7 +124,7 @@ private void OnAfterInteract(EntityUid uid, FloorTileComponent component, AfterI if (mapGrid != null) { - var gridUid = mapGrid.Owner; + var gridUid = location.EntityId; if (!CanPlaceTile(gridUid, mapGrid, out var reason)) { @@ -154,12 +154,11 @@ private void OnAfterInteract(EntityUid uid, FloorTileComponent component, AfterI if (_netManager.IsClient) return; - mapGrid = _mapManager.CreateGrid(locationMap.MapId); - var gridUid = mapGrid.Owner; - var gridXform = Transform(gridUid); + var grid = _mapManager.CreateGridEntity(locationMap.MapId); + var gridXform = Transform(grid); _transform.SetWorldPosition(gridXform, locationMap.Position); - location = new EntityCoordinates(gridUid, Vector2.Zero); - PlaceAt(args.User, gridUid, mapGrid, location, _tileDefinitionManager[component.OutputTiles[0]].TileId, component.PlaceTileSound, mapGrid.TileSize / 2f); + location = new EntityCoordinates(grid, Vector2.Zero); + PlaceAt(args.User, grid, grid.Comp, location, _tileDefinitionManager[component.OutputTiles[0]].TileId, component.PlaceTileSound, grid.Comp.TileSize / 2f); return; } } diff --git a/Content.Shared/Toggleable/ToggleActionEvent.cs b/Content.Shared/Toggleable/ToggleActionEvent.cs index 1283b6699bf5..f28e62e7dd1c 100644 --- a/Content.Shared/Toggleable/ToggleActionEvent.cs +++ b/Content.Shared/Toggleable/ToggleActionEvent.cs @@ -4,9 +4,12 @@ namespace Content.Shared.Toggleable; /// -/// Generic action-event for toggle-able components. +/// Generic action-event for toggle-able components. /// -public sealed partial class ToggleActionEvent : InstantActionEvent { } +/// +/// If you are using ItemToggleComponent subscribe to ItemToggledEvent instead. +/// +public sealed partial class ToggleActionEvent : InstantActionEvent; /// /// Generic enum keys for toggle-visualizer appearance data & sprite layers. diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 56ce81413fb5..201eb19a88ba 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -24,7 +24,7 @@ public abstract partial class SharedToolSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedInteractionSystem InteractionSystem = default!; - [Dependency] protected readonly SharedItemToggleSystem ItemToggle = default!; + [Dependency] protected readonly ItemToggleSystem ItemToggle = default!; [Dependency] private readonly SharedMapSystem _maps = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainerSystem = default!; diff --git a/Content.Shared/UserInterface/ActivatableUISystem.Power.cs b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs index b8a815c7a810..e494253c8321 100644 --- a/Content.Shared/UserInterface/ActivatableUISystem.Power.cs +++ b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs @@ -1,3 +1,5 @@ +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell; using Robust.Shared.Containers; @@ -5,6 +7,7 @@ namespace Content.Shared.UserInterface; public sealed partial class ActivatableUISystem { + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedPowerCellSystem _cell = default!; private void InitializePower() @@ -12,27 +15,22 @@ private void InitializePower() SubscribeLocalEvent(OnBatteryOpenAttempt); SubscribeLocalEvent(OnBatteryOpened); SubscribeLocalEvent(OnBatteryClosed); - - SubscribeLocalEvent(OnPowerCellRemoved); + SubscribeLocalEvent(OnToggled); } - private void OnPowerCellRemoved(EntityUid uid, PowerCellDrawComponent component, EntRemovedFromContainerMessage args) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - _cell.SetPowerCellDrawEnabled(uid, false); - - if (!HasComp(uid) || - !TryComp(uid, out ActivatableUIComponent? activatable)) - { + // only close ui when losing power + if (!TryComp(ent, out var activatable) || args.Activated) return; - } if (activatable.Key == null) { - Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(uid)}"); + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(ent)}"); return; } - _uiSystem.CloseUi(uid, activatable.Key); + _uiSystem.CloseUi(ent.Owner, activatable.Key); } private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIOpenedEvent args) @@ -42,7 +40,7 @@ private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellCompon if (!args.UiKey.Equals(activatable.Key)) return; - _cell.SetPowerCellDrawEnabled(uid, true); + _toggle.TryActivate(uid); } private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIClosedEvent args) @@ -54,7 +52,7 @@ private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellCompon // Stop drawing power if this was the last person with the UI open. if (!_uiSystem.IsUiOpen(uid, activatable.Key)) - _cell.SetPowerCellDrawEnabled(uid, false); + _toggle.TryDeactivate(uid); } /// diff --git a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs index 2800e3b34dae..cbcadcd19f96 100644 --- a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs @@ -4,4 +4,4 @@ namespace Content.Shared.Weapons.Melee.Events; /// Raised directed on a weapon when attempt a melee attack. /// [ByRefEvent] -public record struct AttemptMeleeEvent(bool Cancelled, string? Message); +public record struct AttemptMeleeEvent(EntityUid User, bool Cancelled = false, string? Message = null); diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index b67acdea4f99..42b6a3c9c742 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -12,7 +12,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory; -using Content.Shared.Item; +using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Physics; using Content.Shared.Popups; @@ -27,7 +27,6 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Robust.Shared.Toolshed.Syntax; using ItemToggleMeleeWeaponComponent = Content.Shared.Item.ItemToggle.Components.ItemToggleMeleeWeaponComponent; namespace Content.Shared.Weapons.Melee; @@ -276,7 +275,8 @@ public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen return true; } - return false; + if (!HasComp(held)) + return false; } // Use hands clothing if applicable. diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 9123661c8e96..503459cefd99 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -86,6 +86,9 @@ private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderCompon private void OnBallisticAmmoFillDoAfter(EntityUid uid, BallisticAmmoProviderComponent component, AmmoFillDoAfterEvent args) { + if (args.Handled || args.Cancelled) + return; + if (Deleted(args.Target) || !TryComp(args.Target, out var target) || target.Whitelist == null) diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs index adae26a223a1..d6f45ba77df0 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs @@ -108,7 +108,7 @@ private void UseChambered(EntityUid uid, ChamberMagazineAmmoProviderComponent co else { // Similar to below just due to prediction. - TransformSystem.DetachParentToNull(chamberEnt.Value, Transform(chamberEnt.Value)); + TransformSystem.DetachEntity(chamberEnt.Value, Transform(chamberEnt.Value)); } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 47648a07ad44..794237b145a0 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -476,7 +476,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAn return; var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle); - CreateEffect(gun, ev, user); + CreateEffect(gun, ev, gun); } public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates toCoordinates, EntityUid user, PhysicsComponent userPhysics) diff --git a/Content.Shared/Weapons/Reflect/ReflectComponent.cs b/Content.Shared/Weapons/Reflect/ReflectComponent.cs index 8e7b8975d9d1..8418c1f3efbe 100644 --- a/Content.Shared/Weapons/Reflect/ReflectComponent.cs +++ b/Content.Shared/Weapons/Reflect/ReflectComponent.cs @@ -5,16 +5,11 @@ namespace Content.Shared.Weapons.Reflect; /// /// Entities with this component have a chance to reflect projectiles and hitscan shots +/// Uses ItemToggleComponent to control reflection. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ReflectComponent : Component { - /// - /// Can only reflect when enabled - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Enabled = true; - /// /// What we reflect. /// diff --git a/Content.Shared/Weapons/Reflect/ReflectSystem.cs b/Content.Shared/Weapons/Reflect/ReflectSystem.cs index 7a2e733bf7c7..881b547f27f8 100644 --- a/Content.Shared/Weapons/Reflect/ReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/ReflectSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Hands; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -27,10 +28,11 @@ namespace Content.Shared.Weapons.Reflect; /// public sealed class ReflectSystem : EntitySystem { + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -93,7 +95,7 @@ private void OnReflectCollide(EntityUid uid, ReflectComponent component, ref Pro private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid projectile, ProjectileComponent? projectileComp = null, ReflectComponent? reflect = null) { if (!Resolve(reflector, ref reflect, false) || - !reflect.Enabled || + !_toggle.IsActivated(reflector) || !TryComp(projectile, out var reflective) || (reflect.Reflects & reflective.Reflective) == 0x0 || !_random.Prob(reflect.ReflectProb) || @@ -162,7 +164,7 @@ private bool TryReflectHitscan( [NotNullWhen(true)] out Vector2? newDirection) { if (!TryComp(reflector, out var reflect) || - !reflect.Enabled || + !_toggle.IsActivated(reflector) || !_random.Prob(reflect.ReflectProb)) { newDirection = null; @@ -214,8 +216,8 @@ private void OnReflectHandUnequipped(EntityUid uid, ReflectComponent component, private void OnToggleReflect(EntityUid uid, ReflectComponent comp, ref ItemToggledEvent args) { - comp.Enabled = args.Activated; - Dirty(uid, comp); + if (args.User is {} user) + RefreshReflectUser(user); } /// @@ -225,7 +227,7 @@ private void RefreshReflectUser(EntityUid user) { foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(user, SlotFlags.All & ~SlotFlags.POCKET)) { - if (!HasComp(ent)) + if (!HasComp(ent) || !_toggle.IsActivated(ent)) continue; EnsureComp(user); diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 1d270f3c0ee6..56b708a79e37 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -359,5 +359,13 @@ Entries: id: 44 time: '2024-06-30T12:26:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29582 +- author: Chief-Engineer + changes: + - message: Baby jail no longer prevents accounts with no prior connections from + connecting + type: Fix + id: 45 + time: '2024-07-11T05:14:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29896 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d9c904f79021..8770976c9a0b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,639 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: botanist can now mutate blood tomatoes into killer tomatoes! they will - be personal pets, aggressively defending the owner from any social interactions. - type: Add - id: 6386 - time: '2024-04-18T11:21:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26053 -- author: TheShuEd - changes: - - message: Now winter around Europa is different every round - type: Tweak - id: 6387 - time: '2024-04-18T11:27:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26510 -- author: Flareguy - changes: - - message: The Research Director's hardsuit is now 5x5 in the inventory instead - of 2x2. You'll need a duffelbag to store it now. - type: Tweak - id: 6388 - time: '2024-04-18T18:05:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27094 -- author: Dutch-VanDerLinde - changes: - - message: Roboticist gear in now available in the scientist loadout. - type: Tweak - id: 6389 - time: '2024-04-18T23:38:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27045 -- author: Whisper - changes: - - message: Raised the difficulty class of RD hardsuit objective, it will be less - likely to get it with other hard objectives. - type: Tweak - id: 6390 - time: '2024-04-18T23:41:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27103 -- author: iztokbajcar - changes: - - message: Glass textures are now less transparent. - type: Tweak - id: 6391 - time: '2024-04-18T23:43:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26948 -- author: SlamBamActionman - changes: - - message: Snouts and noses no longer disappear with toggled masks. - type: Fix - id: 6392 - time: '2024-04-19T05:39:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25716 -- author: shampunj - changes: - - message: 'Now for crafting stunprod you need: igniter, cable cuffs, small power - cell, metal rod.' - type: Tweak - - message: Stunprod deals 35 stamina damage per hit and 5 shock damage. The battery - charge is enough for 3 hits. - type: Tweak - id: 6393 - time: '2024-04-19T05:50:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25922 -- author: EmoGarbage404 - changes: - - message: Halved passive fuel consumption of welding tools. - type: Tweak - - message: Completing an action with a welding tool now directly drains the fuel. - type: Tweak - id: 6394 - time: '2024-04-19T23:20:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27030 -- author: superjj18 - changes: - - message: Pneumatic cannon inventory reduced in size to 2x2, item blacklist removed - type: Tweak - id: 6395 - time: '2024-04-19T23:22:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26878 -- author: Aquif - changes: - - message: The Communication Console will no longer cut off your messages. - type: Fix - id: 6396 - time: '2024-04-20T01:07:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27145 -- author: osjarw - changes: - - message: Wallmount substation electronics can now be created at an autolathe. - type: Add - id: 6397 - time: '2024-04-20T01:14:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27138 -- author: Gyrandola - changes: - - message: Pepper sprites are now properly centered! - type: Fix - id: 6398 - time: '2024-04-20T02:06:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25971 -- author: ElectroJr - changes: - - message: Fixed a bug causing the emergency shuttle to not spawn - type: Fix - id: 6399 - time: '2024-04-20T02:10:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27144 -- author: slarticodefast - changes: - - message: The internal volume of cryopods has been increased from 101.3 to 1000L. - This speeds up cooling patients inside. - type: Tweak - id: 6400 - time: '2024-04-20T03:44:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27148 -- author: UBlueberry - changes: - - message: Changed the guidebook entry for the Space Ninja, bringing it up to the - same quality as the other antagonist entries. - type: Tweak - id: 6401 - time: '2024-04-20T06:10:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26650 -- author: Vermidia - changes: - - message: You can now bless many more containers with a bible. - type: Tweak - id: 6402 - time: '2024-04-20T06:16:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26526 -- author: SoulFN - changes: - - message: Various types of glass shards now causes diffrent damage - type: Tweak - id: 6403 - time: '2024-04-20T06:21:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26783 -- author: Vermidia - changes: - - message: Most medical roles now can choose to start with nitrile or latex gloves, - or a sterile mask in their loadout, Medical Doctors can also start with a nurse - hat. - type: Add - id: 6404 - time: '2024-04-20T06:22:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27029 -- author: MilenVolf - changes: - - message: Most crates can now go through plastic flaps. - type: Fix - id: 6405 - time: '2024-04-20T06:23:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27137 -- author: MilenVolf - changes: - - message: Electronics inside windoors now has proper accesses. - type: Fix - id: 6406 - time: '2024-04-20T06:26:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27133 -- author: Bhijn and Myr - changes: - - message: An option to tie your viewport's scaling to your vertical screenspace - has been added, enabled by default! In laymen's terms, this means that manual - configuration is no longer necessary to avoid letterboxing on aspect ratios - tighter than 16:9, as the viewport will now default to cutting off any excess - horizontal width instead of letterboxing vertically when the screen is too tight. - type: Add - id: 6407 - time: '2024-04-20T06:46:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27061 -- author: Whisper - changes: - - message: All mobs should now properly burn to ash. - type: Fix - id: 6408 - time: '2024-04-20T14:44:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27158 -- author: IProduceWidgets - changes: - - message: New map Oasis. - type: Add - id: 6409 - time: '2024-04-21T05:59:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25736 -- author: KittenColony - changes: - - message: Added a new lizard snout, featuring a split muzzle and snoot that can - be coloured independently - type: Add - id: 6410 - time: '2024-04-21T06:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27143 -- author: SpeltIncorrectyl - changes: - - message: Security Officers, Head of Security, and Warden can now choose to start - with a security webbing instead of a belt in their loadout menu. - type: Add - id: 6411 - time: '2024-04-21T06:19:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27189 -- author: ElectroJr - changes: - - message: Fixed the nukie station not getting properly initialized. - type: Fix - id: 6412 - time: '2024-04-21T06:52:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27201 -- author: Blackern5000 - changes: - - message: '"Experienced" passengers can now wear a rainbow jumpsuit using loadouts.' - type: Add - id: 6413 - time: '2024-04-21T11:53:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27211 -- author: PJB3005 - changes: - - message: The item status menu has been moved to the side of the hands. There is - now one for each hand. - type: Add - - message: The item status menu fits with the rest of the HUD theme now. - type: Add - - message: Improved, fixed and otherwise added a bunch of item status menus. - type: Add - id: 6414 - time: '2024-04-21T13:16:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22986 -- author: FairlySadPanda - changes: - - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact - Analyzers to make artifact gameplay a bit more controlled. - type: Tweak - - message: The T2 Abnormal Artifact Manipulation tech has been made cheaper to compensate - for losing an unlock. - type: Tweak - - message: The Xenoarchaeology guidebook entry has been rewritten to be more useful - and comprehensive for newbies. - type: Tweak - id: 6415 - time: '2024-04-21T16:09:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26545 -- author: deltanedas - changes: - - message: Flaming mice no longer completely engulf people they touch. - type: Tweak - id: 6416 - time: '2024-04-22T08:42:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27202 -- author: Weax - changes: - - message: The CLF3 reaction now requires heating first before you can engulf chemistry - in fiery death. - type: Tweak - id: 6417 - time: '2024-04-22T08:44:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27187 -- author: Potato1234_x - changes: - - message: Added Psicodine, Mannitol, Lipolicide and Happiness. - type: Add - id: 6418 - time: '2024-04-22T08:45:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27134 -- author: Terraspark4941 - changes: - - message: Updated the engineering section of the guidebook! - type: Tweak - id: 6419 - time: '2024-04-22T08:58:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26851 -- author: eclips_e - changes: - - message: Slimepeople can now morph into a "geras"--a smaller slime form that can - pass under grilles, at the cost of dropping all of their inventory. They can - also be picked up with two hands and placed into duffelbags. - type: Add - - message: Slimepeople now have an internal 2x2 storage that they (and anyone around - them) can access. It is not dropped when morphing into a geras! - type: Add - - message: Slimepeople now have slightly increased regeneration and a slightly meatier - punch, but slower attacks. - type: Add - id: 6420 - time: '2024-04-22T10:03:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23425 -- author: FungiFellow - changes: - - message: Syndi-Cats are now 6TC, Insulated, Available to Syndies, Can Move in - Space, Open Doors, and Hit Harder - type: Tweak - id: 6421 - time: '2024-04-22T12:18:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27222 -- author: Tayrtahn - changes: - - message: Ghosts can no longer trigger artifacts by examining them. - type: Fix - id: 6422 - time: '2024-04-22T22:46:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27249 -- author: Tyzemol - changes: - - message: Slimes no longer absorb all items used on them - type: Fix - id: 6423 - time: '2024-04-23T08:48:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27260 -- author: Rainbeon - changes: - - message: Suit sensor vitals now function again. - type: Fix - id: 6424 - time: '2024-04-23T08:57:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27259 -- author: Ghagliiarghii - changes: - - message: Security can now find replacements for their trusty Combat Knife in the - SecVend, or craft them with the Sec Lathe. - type: Tweak - id: 6425 - time: '2024-04-23T11:24:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27224 -- author: Whisper - changes: - - message: Fire stack limit reduced from 20 to 10. Fire transfers will be less effective, - and fires will not last as long. - type: Tweak - id: 6426 - time: '2024-04-23T11:30:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27159 -- author: brainfood1183 - changes: - - message: Directional Exit signs for maints! - type: Add - id: 6427 - time: '2024-04-23T11:31:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26831 -- author: pigeonpeas - changes: - - message: Adds the ability to purchase emitters in cargo. - type: Add - id: 6428 - time: '2024-04-23T11:34:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27229 -- author: EmoGarbage404 - changes: - - message: Fixed cargo telepads not teleporting in orders from linked consoles. - type: Fix - id: 6429 - time: '2024-04-23T12:07:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27255 -- author: Plykiya - changes: - - message: Do-after bars of other players are now shaded and harder to see in the - dark. - type: Tweak - id: 6430 - time: '2024-04-24T02:42:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27273 -- author: Blackern5000 - changes: - - message: The cargo telepad is now tier 2 technology rather than tier 3. - type: Tweak - id: 6431 - time: '2024-04-24T13:21:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26270 -- author: FungiFellow - changes: - - message: Truncheon now fits in SecBelt - type: Tweak - id: 6432 - time: '2024-04-24T13:43:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27281 -- author: pigeonpeas - changes: - - message: Adds a trash bag to the advanced cleaning module. - type: Add - id: 6433 - time: '2024-04-24T21:27:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27226 -- author: Beck Thompson - changes: - - message: Radio jammer now has 3 selectable power operating levels and a battery - level led indicator! - type: Tweak - id: 6434 - time: '2024-04-25T02:19:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25912 -- author: cooldolphin - changes: - - message: Three variants of glasses are now available in the loadout menu. - type: Add - id: 6435 - time: '2024-04-25T23:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27286 -- author: EmoGarbage404 - changes: - - message: Traitors now have the correct number of objectives. - type: Fix - - message: Declaring war now gives TC again. - type: Fix - - message: Latejoining antagonists will now properly exclude command and security - staff. - type: Fix - id: 6436 - time: '2024-04-26T00:25:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27319 -- author: Tayrtahn - changes: - - message: Fixed Bibles not healing. - type: Fix - - message: Fixed quick insert and area insert not working on ore/plant/trash bags. - type: Fix - id: 6437 - time: '2024-04-26T02:25:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27234 -- author: SkaldetSkaeg - changes: - - message: The handheld radio no longer plays a message spoken into it. - type: Tweak - id: 6438 - time: '2024-04-26T07:34:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27046 -- author: FungiFellow - changes: - - message: Added SecBelt whitelist to Sec webbing - type: Tweak - - message: Added more Ammo holders to SecBelt whitelist - type: Tweak - id: 6439 - time: '2024-04-26T07:44:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27303 -- author: IlyaElDunaev - changes: - - message: Ammonia heal blood loss in the Rat King - type: Add - id: 6440 - time: '2024-04-26T07:47:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26887 -- author: FungiFellow - changes: - - message: Added Quiver Recipe, go wild Robin Hood. - type: Add - id: 6441 - time: '2024-04-26T07:48:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27198 -- author: Boaz1111 - changes: - - message: Refactored Cluster's medbay, including cryo in the bottom left room - type: Tweak - id: 6442 - time: '2024-04-26T08:01:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27293 -- author: metalgearsloth - changes: - - message: Add predicted UI opening for storage and PDAs. - type: Add - id: 6443 - time: '2024-04-26T08:16:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27214 -- author: DrSmugleaf - changes: - - message: Fixed mobs that are able to pry doors not being able to do so by just - left clicking on them. - type: Fix - id: 6444 - time: '2024-04-26T12:17:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27349 -- author: WarMechanic - changes: - - message: Fixed unwielding overruling gun cycling - type: Fix - id: 6445 - time: '2024-04-26T12:31:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27307 -- author: wafehling - changes: - - message: You can now reopen the end of round summary window with F9. - type: Tweak - id: 6446 - time: '2024-04-26T12:39:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25884 -- author: DrSmugleaf - changes: - - message: Fixed the game never starting again if it fails to start once. - type: Fix - id: 6447 - time: '2024-04-26T13:02:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27359 -- author: Dutch-VanDerLinde - changes: - - message: Monkey reinforcement teleporters can now select between kobold and monkey - operative with a verb. - type: Tweak - - message: Monkey reinforcement teleporters have been renamed to "genetic ancestor - reinforcement teleporter". - type: Tweak - id: 6448 - time: '2024-04-26T13:06:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25982 -- author: fujiwaranao - changes: - - message: Players may now select the Creepy Long hairstyle and an appropriately - creepy dress to go with it can be found in theatrical performances crates. - type: Add - id: 6449 - time: '2024-04-26T18:51:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27333 -- author: Pgriha - changes: - - message: Increase limit of characters 10 -> 30. - type: Tweak - id: 6450 - time: '2024-04-26T22:58:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27361 -- author: AllenTheGreat - changes: - - message: The Agent ID card will no longer reset the selected job icon between - UI loads - type: Fix - id: 6451 - time: '2024-04-27T05:13:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27379 -- author: Slava0135 - changes: - - message: added cancer mouse! (for real this time) - type: Add - id: 6452 - time: '2024-04-27T05:46:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26768 -- author: EmoGarbage404 - changes: - - message: Added the welding gas mask to salvage equipment research. - type: Add - id: 6453 - time: '2024-04-27T05:47:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27108 -- author: VigersRay - changes: - - message: Angered NPC now can unbuckle, unpull and escape from containers. - type: Fix - id: 6454 - time: '2024-04-27T05:58:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26868 -- author: Lukasz825700516 - changes: - - message: Fixed undeconstructable objects showing deconstruct verb. - type: Fix - id: 6455 - time: '2024-04-27T06:30:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27387 -- author: ps3moira - changes: - - message: Added Canes to the CuraDrobe and Cane Blades for Syndicate Librarians - type: Add - id: 6456 - time: '2024-04-27T10:22:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25873 -- author: Lukasz825700516 - changes: - - message: Fixed books containing localization keys. - type: Fix - id: 6457 - time: '2024-04-27T10:23:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27390 -- author: Errant - changes: - - message: Vox now take significant damage over time while inhaling oxygen. - type: Tweak - id: 6458 - time: '2024-04-27T10:33:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26705 -- author: TheShuEd - changes: - - message: Added tomato killers in floral anomaly berries - type: Add - - message: tweak size and damage of killer tomatoes - type: Tweak - id: 6459 - time: '2024-04-27T10:35:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27265 -- author: Plykiya - changes: - - message: You can no longer print singular bullets at the security techfab. - type: Remove - - message: The security techfab now has recipes for ammunition boxes and pre-filled - magazines of every type of ammo. - type: Add - - message: You can now print empty magazines at the security techfab. - type: Add - - message: Material costs for printing all ammo and mags were rebalanced. - type: Tweak - id: 6460 - time: '2024-04-27T10:38:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26178 -- author: Ramlik - changes: - - message: Added security walkie talkies to the vendor. - type: Add - id: 6461 - time: '2024-04-27T13:27:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25913 -- author: brainfood1183 - changes: - - message: Centcom advises all crewmembers to please stop putting rodents in the - fax machines (rodents can now be inserted into fax machine). - type: Add - id: 6462 - time: '2024-04-27T13:50:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/21461 -- author: MilenVolf - changes: - - message: Glass Box now can be constructed and deconstructed! - type: Add - - message: Glass Box now makes an alarm sound on destruction. - type: Tweak - - message: Now Antique Laser can be put back in the Glass Box. - type: Fix - id: 6463 - time: '2024-04-27T13:53:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25365 -- author: metalgearsloth - changes: - - message: Fix a lot of UI bugs. - type: Fix - id: 6464 - time: '2024-04-27T16:32:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27401 -- author: RiceMar1244 - changes: - - message: Resprited the captain's antique laser pistol. - type: Tweak - id: 6465 - time: '2024-04-27T19:08:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27037 - author: SlamBamActionman changes: - message: Hardsuits and other helmets/hoods should no longer make you bald after @@ -3830,3 +3195,595 @@ id: 6885 time: '2024-07-08T09:03:53.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29726 +- author: Errant + changes: + - message: Vox now have their entry in the guidebook. + type: Fix + id: 6886 + time: '2024-07-09T00:28:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29713 +- author: Whisper + changes: + - message: Light toggle actions now have a 1 second cooldown between uses. + type: Tweak + id: 6887 + time: '2024-07-09T04:14:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29833 +- author: Cojoke-dot + changes: + - message: Shotgun loading doafter now does something + type: Fix + id: 6888 + time: '2024-07-09T04:23:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29827 +- author: slarticodefast + changes: + - message: The construction menu and building preview now show the correct passive + vent sprite. + type: Fix + id: 6889 + time: '2024-07-09T13:39:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29820 +- author: Cojoke-dot + changes: + - message: Pacifists can now use foam weaponry + type: Tweak + id: 6890 + time: '2024-07-09T13:46:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29835 +- author: Plykiya + changes: + - message: You can now drop food and drinks to stop consuming it. + type: Fix + id: 6891 + time: '2024-07-09T23:12:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29854 +- author: Boaz1111 + changes: + - message: Guitars can now be worn in the suit storage slot + type: Add + id: 6892 + time: '2024-07-09T23:28:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29048 +- author: Winkarst-cpu + changes: + - message: Fixed popup spam when trying to open borg's UI while the borg is locked. + type: Fix + id: 6893 + time: '2024-07-09T23:48:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29861 +- author: Lokachop + changes: + - message: Scarves now count as warm clothing for the warm clothing cargo bounty. + type: Tweak + id: 6894 + time: '2024-07-10T05:26:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29779 +- author: Aquif + changes: + - message: It is now possible to "lock" admin faxes such that they cannot be edited + by cybersun pens or any other IC means. + type: Add + id: 6895 + time: '2024-07-10T05:28:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28972 +- author: Ghagliiarghii + changes: + - message: The Librarian's Books Bag can now hold D&D related items such as dice + and battlemats. + type: Tweak + id: 6896 + time: '2024-07-10T05:51:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29863 +- author: Beck Thompson, Tayrtahn + changes: + - message: Typing indicators now correctly stack and will not overwrite your default + species indicator. + type: Fix + id: 6897 + time: '2024-07-10T05:51:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29492 +- author: Winkarst-cpu + changes: + - message: Now confirmation popup is displayed and item panel status is updated + after setting a custom solution transfer volume. + type: Fix + id: 6898 + time: '2024-07-10T10:32:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29852 +- author: Winkarst-cpu + changes: + - message: Added exit confirmation for character setup menu with unsaved changes. + type: Add + id: 6899 + time: '2024-07-11T00:24:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29875 +- author: ShadowCommander + changes: + - message: Players can now use melee attacks and shoves while dragging an entity + in their active hand. + type: Tweak + id: 6900 + time: '2024-07-11T04:48:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29703 +- author: Cojoke-dot + changes: + - message: You can no longer shoot out of crates with guns + type: Fix + id: 6901 + time: '2024-07-11T05:14:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28961 +- author: Cojoke-dot + changes: + - message: The Spray Painter can now be used to paint glass airlocks to look like + regular glass airlocks. + type: Tweak + id: 6902 + time: '2024-07-11T05:33:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29869 +- author: MFMessage + changes: + - message: Picking a ghost role as an admin will now deadmin. + type: Fix + id: 6903 + time: '2024-07-11T05:53:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29790 +- author: Winkarst-cpu + changes: + - message: Admin notes popups are now more readable. + type: Tweak + id: 6904 + time: '2024-07-11T14:03:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29909 +- author: jonathanargo + changes: + - message: Muskets are now wieldable. + type: Tweak + id: 6905 + time: '2024-07-12T09:16:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29910 +- author: themias + changes: + - message: Notice boards can now be built on walls + type: Fix + id: 6906 + time: '2024-07-12T09:18:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29851 +- author: slarticodefast + changes: + - message: Stun batons, stun prods and banana cream pies now fly like other throwing + weapons when thrown. + type: Fix + id: 6907 + time: '2024-07-12T09:19:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29883 +- author: Plykiya + changes: + - message: Dropping an item while in a container now places the item in the container. + type: Fix + id: 6908 + time: '2024-07-12T09:24:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29900 +- author: coffeeware, slarticodefast + changes: + - message: Fixed items thrown very fast not being in the air. In particular this + fixes the pneumatic cannon. + type: Fix + - message: Buffed base hand throwing speed by 10% to be more similar to before the + recent throwing changes. + type: Tweak + id: 6909 + time: '2024-07-12T10:32:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29935 +- author: themias + changes: + - message: Timers can now be deconstructed + type: Fix + id: 6910 + time: '2024-07-12T11:38:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29917 +- author: jonathanargo + changes: + - message: Hard hat icon sprites are now centered correctly. + type: Fix + id: 6911 + time: '2024-07-12T15:00:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29953 +- author: lzk228 + changes: + - message: Secure windoors now use reinforced glass damage modifier. + type: Fix + id: 6912 + time: '2024-07-13T04:03:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29941 +- author: Tayrtahn + changes: + - message: Antag objective total difficulty is now properly capped. + type: Fix + id: 6913 + time: '2024-07-13T04:14:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29830 +- author: EmoGarbage404 + changes: + - message: Added wristwatches for telling time. + type: Add + id: 6914 + time: '2024-07-13T06:09:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29550 +- author: TheShuEd + changes: + - message: Added diamonds ore! + type: Add + - message: Diamonds can now be sold at a bargain price. + type: Add + id: 6915 + time: '2024-07-13T12:15:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25750 +- author: coffeeware + changes: + - message: Lizards will no longer lose their snouts when equipping head bandanas + type: Fix + id: 6916 + time: '2024-07-14T02:59:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29979 +- author: SlamBamActionman + changes: + - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. + type: Fix + id: 6917 + time: '2024-07-14T10:26:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30023 +- author: Winkarst-cpu + changes: + - message: Now grappling gun is clumsy proof. + type: Tweak + id: 6918 + time: '2024-07-14T10:26:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29904 +- author: HahayesSiH + changes: + - message: It is now possible to pet cyborgs. + type: Add + - message: Clicking on cyborgs and opening the strip menu no longer unlocks them. + type: Tweak + id: 6919 + time: '2024-07-14T14:09:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30037 +- author: deltanedas + changes: + - message: Fixed ninja shoes not working as magboots. + type: Fix + id: 6920 + time: '2024-07-14T15:11:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28586 +- author: lzk228 + changes: + - message: Scarves are eatable again. + type: Fix + id: 6921 + time: '2024-07-14T15:12:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29959 +- author: Winkarst-cpu + changes: + - message: Now addgamerule command processes only valid game rules. + type: Fix + id: 6922 + time: '2024-07-15T19:18:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29912 +- author: Jezithyr + changes: + - message: Removed the Geras ability from Slimes + type: Remove + id: 6923 + time: '2024-07-16T22:50:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29731 +- author: K-Dynamic + changes: + - message: nerfed paraylze timer of all slippable objects (including soaps, water + puddles, and clown-related items) + type: Tweak + id: 6924 + time: '2024-07-16T23:26:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27879 +- author: EmoGarbage404 + changes: + - message: Resprited wall signs. + type: Tweak + id: 6925 + time: '2024-07-17T04:35:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29806 +- author: lzk228 + changes: + - message: Added health examine for caustic and cold damage. + type: Add + id: 6926 + time: '2024-07-17T06:19:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29989 +- author: lzk228 + changes: + - message: Surgery saws now are normal-sized (no more pocket circular saw). + type: Tweak + id: 6927 + time: '2024-07-17T06:26:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29995 +- author: Winkarst-cpu + changes: + - message: The super door remote is now able to control Syndicate doors. + type: Fix + id: 6928 + time: '2024-07-17T13:50:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30033 +- author: Errant + changes: + - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle + ghostroles, until code supports giving them species-specific gear. + type: Tweak + id: 6929 + time: '2024-07-17T22:04:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30099 +- author: Cojoke-dot + changes: + - message: You can no longer teleport objects that should not be in other objects + into other objects with the Quantum Spin Inverter + type: Fix + id: 6930 + time: '2024-07-18T00:40:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29200 +- author: Plykiya + changes: + - message: Stun batons no longer use up charges when hitting objects without stamina. + type: Fix + id: 6931 + time: '2024-07-18T00:48:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30136 +- author: Sh18RW + changes: + - message: Moth can't eat boots with an item more + type: Fix + id: 6932 + time: '2024-07-18T22:34:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30019 +- author: portfiend + changes: + - message: Reptilians display correct mask sprites in character customization screen. + type: Fix + id: 6933 + time: '2024-07-18T22:36:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30095 +- author: Plykiya + changes: + - message: You no longer deal double damage to your first target when throwing an + item. + type: Fix + id: 6934 + time: '2024-07-19T01:08:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30115 +- author: deepdarkdepths + changes: + - message: Removed the description about geras in the Slime guidebook section. + type: Remove + id: 6935 + time: '2024-07-19T09:04:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30140 +- author: Blackern5000 + changes: + - message: Nuclear operatives are now able to purchase durable armor which is NOT + space-proof. + type: Add + id: 6936 + time: '2024-07-19T09:38:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29845 +- author: Plykiya, slarticodefast + changes: + - message: Explosive pens now correctly embed into their target. + type: Fix + id: 6937 + time: '2024-07-19T09:42:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30112 +- author: ThatOneEnby1337 + changes: + - message: News Reporters are now able to use markup tags in their reports without + bricking the PDAs of readers + type: Fix + id: 6938 + time: '2024-07-19T14:18:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30169 +- author: themias + changes: + - message: Mailing units are functional again + type: Fix + id: 6939 + time: '2024-07-20T02:31:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30174 +- author: Ghagliiarghii + changes: + - message: Nuclear Operatives' Reinforcements now have a PDA! + type: Tweak + id: 6940 + time: '2024-07-20T02:59:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28088 +- author: Plykiya + changes: + - message: Chameleon scarves now work again. + type: Fix + id: 6941 + time: '2024-07-20T03:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30156 +- author: Aidenkrz + changes: + - message: The mass hallucinations event no longer affects non-humanoids. + type: Fix + id: 6942 + time: '2024-07-20T05:53:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28748 +- author: buntobaggins + changes: + - message: Increased light radius on the Spationaut Hardsuit + type: Tweak + id: 6943 + time: '2024-07-21T03:29:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30049 +- author: EmoGarbage404 + changes: + - message: Fixed wires not updating UI on the Particle Accelerator. + type: Fix + id: 6944 + time: '2024-07-21T05:27:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28750 +- author: CroilBird + changes: + - message: 6-pack of cola displays correctly when not being handled + type: Fix + id: 6945 + time: '2024-07-21T05:49:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29309 +- author: metalgearsloth + changes: + - message: Fix muzzle flashes not tracking properly. + type: Fix + id: 6946 + time: '2024-07-21T06:09:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30163 +- author: metalgearsloth + changes: + - message: Fix being able to throw items while your cursor is off-screen. + type: Fix + id: 6947 + time: '2024-07-21T06:13:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30164 +- author: metalgearsloth + changes: + - message: Reset the scroll bar in the ghost warp menu whenever you search for a + role. Previously it remained at your previous position and you would have to + scroll up to see the first entry. + type: Tweak + id: 6948 + time: '2024-07-21T06:38:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30159 +- author: Blackern5000 + changes: + - message: The syndicate agent's cyborg weapons module now uses syndicate weaponry + rather than NT weaponry. + type: Tweak + id: 6949 + time: '2024-07-21T07:04:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26947 +- author: Winkarst-cpu + changes: + - message: Added ambience to the camera routers and telecommunication servers. + type: Add + - message: Now server's and router's ambience stops once they are unpowered. + type: Fix + id: 6950 + time: '2024-07-21T07:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30091 +- author: Scott Dimeling + changes: + - message: Reduced the number of botanists in some stations, for optimal _workflow_ + type: Tweak + id: 6951 + time: '2024-07-21T07:23:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29581 +- author: metalgearsloth + changes: + - message: Escape pods won't show up on shuttle map anymore. + type: Tweak + id: 6952 + time: '2024-07-21T07:23:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29758 +- author: IProduceWidgets + changes: + - message: an arabian lamp! + type: Add + id: 6953 + time: '2024-07-21T07:24:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27270 +- author: osjarw + changes: + - message: NPCs no longer get stuck trying to pick up anchored pipes. + type: Fix + id: 6954 + time: '2024-07-21T07:28:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30061 +- author: The Hands Leader - JoJo cat + changes: + - message: Train map is back into rotation + type: Tweak + id: 6955 + time: '2024-07-21T07:44:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30145 +- author: Plykiya + changes: + - message: Syndicate traitor reinforcements are now specialized to be medics, spies, + or thieves. + type: Add + - message: Reinforcement radios with options now have a radial menu, similar to + RCDs. + type: Tweak + id: 6956 + time: '2024-07-21T10:32:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29853 +- author: Cojoke-dot + changes: + - message: Dead Space Dragons no long despawn + type: Fix + id: 6957 + time: '2024-07-21T10:46:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29842 +- author: slarticodefast + changes: + - message: Fixed microwave construction. + type: Fix + id: 6958 + time: '2024-07-21T16:20:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30232 +- author: Sphiral&Kezu + changes: + - message: 'Added a variety of new wall based storages: Shelfs! Build some today!' + type: Add + id: 6959 + time: '2024-07-21T17:16:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27858 +- author: valquaint, slarticodefast + changes: + - message: Fixed borgs being unable to state laws with an activated flashlight. + type: Fix + id: 6960 + time: '2024-07-22T03:55:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30183 +- author: Lank + changes: + - message: Darts can now pop balloons. Keep them away from any monkeys. + type: Add + id: 6961 + time: '2024-07-22T05:38:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30088 +- author: Plykiya + changes: + - message: You can now eat or drink and swap hands without it being interrupted. + type: Tweak + id: 6962 + time: '2024-07-22T09:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30060 +- author: IProduceWidgets + changes: + - message: Zookeepers can now possess Nonlethal shotguns according to spacelaw. + type: Tweak + id: 6963 + time: '2024-07-22T09:33:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30237 +- author: Plykiya + changes: + - message: Bag sounds can now only be heard from half the distance and is quieter + in general. + type: Tweak + id: 6964 + time: '2024-07-22T09:54:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30225 +- author: osjarw + changes: + - message: Syringes are now 0.5 seconds faster. + type: Tweak + id: 6965 + time: '2024-07-22T10:20:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29825 diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 807b21b46947..4f1b616fb256 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -5,6 +5,7 @@ desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true soft_max_players = 80 +panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f3d458e04689..47b90c9a1667 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, Futuristic-OK, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem diff --git a/Resources/Locale/en-US/actions/ui/actionmenu.ftl b/Resources/Locale/en-US/actions/ui/actionmenu.ftl index a6f0dee53421..47fdb43f6992 100644 --- a/Resources/Locale/en-US/actions/ui/actionmenu.ftl +++ b/Resources/Locale/en-US/actions/ui/actionmenu.ftl @@ -9,3 +9,8 @@ ui-actionmenu-clear-button = Clear ui-actionsui-function-lock-action-slots = (Un)lock dragging and clearing action slots ui-actionsui-function-open-abilities-menu = Open action menu +ui-actionmenu-enabled = Enabled +ui-actionmenu-item = Item +ui-actionmenu-innate = Innate +ui-actionmenu-instant = Instant +ui-actionmenu-targeted = Targeted diff --git a/Resources/Locale/en-US/administration/commands/aghost.ftl b/Resources/Locale/en-US/administration/commands/aghost.ftl index 4de0639981ef..30cd893dc8f8 100644 --- a/Resources/Locale/en-US/administration/commands/aghost.ftl +++ b/Resources/Locale/en-US/administration/commands/aghost.ftl @@ -1,3 +1,3 @@ -aghost-description = Makes you an admin ghost. +cmd-aghost-desc = Makes you or others an admin ghost. aghost-no-mind-self = You can't ghost here! aghost-no-mind-other = They can't ghost here! diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 38b12251bec6..75ff4351c1d2 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -19,6 +19,7 @@ chat-manager-no-such-channel = There is no channel with key '{$key}'! chat-manager-whisper-headset-on-message = You can't whisper on the radio! chat-manager-server-wrap-message = [bold]{$message}[/bold] +chat-manager-sender-announcement = Central Command chat-manager-sender-announcement-wrap-message = [font size=14][bold]{$sender} Announcement:[/font][font size=12] {$message}[/bold][/font] chat-manager-entity-say-wrap-message = [BubbleHeader][bold][Name]{$entityName}[/Name][/bold][/BubbleHeader] {$verb}, [font={$fontType} size={$fontSize}]"[BubbleContent]{$message}[/BubbleContent]"[/font] diff --git a/Resources/Locale/en-US/commands/colornetwork-command.ftl b/Resources/Locale/en-US/commands/colornetwork-command.ftl new file mode 100644 index 000000000000..3fd60bcb89f8 --- /dev/null +++ b/Resources/Locale/en-US/commands/colornetwork-command.ftl @@ -0,0 +1,3 @@ +cmd-colornetwork-desc = Paints the atmos devices in the specified color +cmd-colornetwork-help = colornetwork Pipe +cmd-colornetwork-no-access = You are not currently able to use mapping commands. diff --git a/Resources/Locale/en-US/commands/job-whitelist-command.ftl b/Resources/Locale/en-US/commands/job-whitelist-command.ftl index 7fa20f03dec5..a188f9ba5cec 100644 --- a/Resources/Locale/en-US/commands/job-whitelist-command.ftl +++ b/Resources/Locale/en-US/commands/job-whitelist-command.ftl @@ -9,12 +9,12 @@ cmd-jobwhitelistadd-already-whitelisted = {$player} is already whitelisted to pl cmd-jobwhitelistadd-added = Added {$player} to the {$jobId} ({$jobName}) whitelist. cmd-jobwhitelistget-desc = Gets all the jobs that a player has been whitelisted for. -cmd-jobwhitelistget-help = Usage: jobwhitelistadd +cmd-jobwhitelistget-help = Usage: jobwhitelistget cmd-jobwhitelistget-whitelisted-none = Player {$player} is not whitelisted for any jobs. cmd-jobwhitelistget-whitelisted-for = "Player {$player} is whitelisted for: {$jobs}" cmd-jobwhitelistremove-desc = Removes a player's ability to play a whitelisted job. -cmd-jobwhitelistremove-help = Usage: jobwhitelistadd +cmd-jobwhitelistremove-help = Usage: jobwhitelistremove cmd-jobwhitelistremove-was-not-whitelisted = {$player} was not whitelisted to play as {$jobId} ({$jobName}). cmd-jobwhitelistremove-removed = Removed {$player} from the whitelist for {$jobId} ({$jobName}). diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index bead43df286f..d3200914b3cc 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -5,6 +5,7 @@ comms-console-menu-announcement-button = Announce comms-console-menu-broadcast-button = Broadcast comms-console-menu-call-shuttle = Call emergency shuttle comms-console-menu-recall-shuttle = Recall emergency shuttle +comms-console-menu-time-remaining = Time remaining: {$time} # Popup comms-console-permission-denied = Permission denied diff --git a/Resources/Locale/en-US/devices/clock.ftl b/Resources/Locale/en-US/devices/clock.ftl new file mode 100644 index 000000000000..6d0aef1eb766 --- /dev/null +++ b/Resources/Locale/en-US/devices/clock.ftl @@ -0,0 +1 @@ +clock-examine = The time reads: [color=white]{$time}[/color] diff --git a/Resources/Locale/en-US/fax/fax-admin.ftl b/Resources/Locale/en-US/fax/fax-admin.ftl index eff7e15fe8b6..8a8f37809e16 100644 --- a/Resources/Locale/en-US/fax/fax-admin.ftl +++ b/Resources/Locale/en-US/fax/fax-admin.ftl @@ -12,3 +12,5 @@ admin-fax-message-placeholder = Your message here... admin-fax-stamp = Stamp icon: admin-fax-stamp-color = Stamp color: admin-fax-send = Send +admin-fax-lock-page = Lock Page +admin-fax-lock-page-tooltip = Lock the paper such that it cannot be edited even by things such as cybersun pens. diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 98f31e0ab074..b2082f772805 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -197,6 +197,16 @@ ghost-role-information-syndicate-reinforcement-name = Syndicate Agent ghost-role-information-syndicate-reinforcement-description = Someone needs reinforcements. You, the first person the syndicate could find, will help them. ghost-role-information-syndicate-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. +ghost-role-information-syndicate-reinforcement-medic-name = Syndicate Medic +ghost-role-information-syndicate-reinforcement-medic-description = Someone needs reinforcements. Your task is to keep the agent who called you alive. + +ghost-role-information-syndicate-reinforcement-spy-name = Syndicate Spy +ghost-role-information-syndicate-reinforcement-spy-description = Someone needs reinforcements. Your speciality lies in espionage, do not be discovered. + +ghost-role-information-syndicate-reinforcement-thief-name = Syndicate Thief +ghost-role-information-syndicate-reinforcement-thief-description = Someone needs reinforcements. Your job is to break in and retrieve something valuable for your agent. + + ghost-role-information-syndicate-monkey-reinforcement-name = Syndicate Monkey Agent ghost-role-information-syndicate-monkey-reinforcement-description = Someone needs reinforcements. You, a trained monkey, will help them. ghost-role-information-syndicate-monkey-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. diff --git a/Resources/Locale/en-US/health-examinable/health-examinable-carbon.ftl b/Resources/Locale/en-US/health-examinable/health-examinable-carbon.ftl index ddd6de236738..ac536a1e25a3 100644 --- a/Resources/Locale/en-US/health-examinable/health-examinable-carbon.ftl +++ b/Resources/Locale/en-US/health-examinable/health-examinable-carbon.ftl @@ -16,3 +16,11 @@ health-examinable-carbon-Heat-50 = [color=orange]{ CAPITALIZE(SUBJECT($target)) health-examinable-carbon-Heat-75 = [color=orange]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } severe third-degree burns across { POSS-ADJ($target) } body![/color] health-examinable-carbon-Shock-50 = [color=lightgoldenrodyellow]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } electrical shock marks across { POSS-ADJ($target) } body![/color] + +health-examinable-carbon-Cold-25 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } minor frostbite across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Cold-50 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } major frostbite across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Cold-75 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } severe third-degree frostbite across { POSS-ADJ($target) } body![/color] + +health-examinable-carbon-Caustic-25 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } minor chemical burns.[/color] +health-examinable-carbon-Caustic-50 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } chemical burns across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Caustic-75 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } severe chemical burns all over { POSS-ADJ($target) } body![/color] diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index 55be1fb3b976..10773d6de843 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -60,12 +60,26 @@ petting-success-honkbot = You pet {THE($target)} on {POSS-ADJ($target)} slippery petting-success-mimebot = You pet {THE($target)} on {POSS-ADJ($target)} cold metal head. petting-success-cleanbot = You pet {THE($target)} on {POSS-ADJ($target)} damp metal head. petting-success-medibot = You pet {THE($target)} on {POSS-ADJ($target)} sterile metal head. +petting-success-generic-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} metal head. +petting-success-salvage-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} dirty metal head. +petting-success-engineer-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} reflective metal head. +petting-success-janitor-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} damp metal head. +petting-success-medical-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} sterile metal head. +petting-success-service-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} dapper looking metal head. +petting-success-syndicate-cyborg = You pet {THE($target)} on {POSS-ADJ($target)} menacing metal head. petting-success-recycler = You pet {THE($target)} on {POSS-ADJ($target)} mildly threatening steel exterior. petting-failure-honkbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BASIC($target, "honk", "honks")} in refusal! petting-failure-cleanbot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy mopping! petting-failure-mimebot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy miming! petting-failure-medibot = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} syringe nearly stabs your hand! +petting-failure-generic-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy stating laws! +petting-failure-salvage-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy drilling! +petting-failure-engineer-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy repairing! +petting-failure-janitor-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy cleaning! +petting-failure-medical-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy saving lives! +petting-failure-service-cyborg = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy serving others! +petting-failure-syndicate-cyborg = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} treacherous affiliation makes you reconsider. ## Rattling fences diff --git a/Resources/Locale/en-US/lobby/lobby-state.ftl b/Resources/Locale/en-US/lobby/lobby-state.ftl index 2e60b66bde1a..0c4c401daa37 100644 --- a/Resources/Locale/en-US/lobby/lobby-state.ftl +++ b/Resources/Locale/en-US/lobby/lobby-state.ftl @@ -9,7 +9,14 @@ lobby-state-player-status-not-ready = Not Ready lobby-state-player-status-ready = Ready lobby-state-player-status-observer = Observer lobby-state-player-status-round-not-started = The round hasn't started yet -lobby-state-player-status-round-time = The round time is: {$hours} hours and {$minutes} minutes +lobby-state-player-status-round-time = + The round time is: {$hours} {$hours -> + [1]hour + *[other]hours + } and {$minutes} {$minutes -> + [1]minute + *[other]minutes + } lobby-state-song-text = Playing: [color=white]{$songTitle}[/color] by [color=white]{$songArtist}[/color] lobby-state-song-no-song-text = No lobby song playing. lobby-state-song-unknown-title = [color=dimgray]Unknown title[/color] diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index a354423d2b7d..0fc716bda530 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -25,6 +25,7 @@ materials-meat = meat materials-web = silk materials-bones = bone materials-coal = coal +materials-diamond = diamond materials-gunpowder = gunpowder # Ores @@ -36,3 +37,4 @@ materials-raw-plasma = raw plasma materials-raw-uranium = raw uranium materials-raw-bananium = raw bananium materials-raw-salt = raw salt +materials-raw-diamond = raw diamond diff --git a/Resources/Locale/en-US/medical/components/healing-component.ftl b/Resources/Locale/en-US/medical/components/healing-component.ftl index 5c2aaaabd9bc..1deb39db091a 100644 --- a/Resources/Locale/en-US/medical/components/healing-component.ftl +++ b/Resources/Locale/en-US/medical/components/healing-component.ftl @@ -1,3 +1,4 @@ medical-item-finished-using = You have finished healing with the {$item} medical-item-cant-use = There is no damage you can heal with the {$item} medical-item-stop-bleeding = They have stopped bleeding +medical-item-popup-target = {CAPITALIZE(THE($user))} is trying to heal you with the {$item}! diff --git a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl index 8460bcc27b06..121e50b923e6 100644 --- a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl @@ -14,3 +14,5 @@ health-analyzer-window-scan-mode-active = ACTIVE health-analyzer-window-scan-mode-inactive = INACTIVE health-analyzer-window-malnutrition = Severely malnourished + +health-analyzer-popup-scan-target = {CAPITALIZE(THE($user))} is trying to scan you! diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index a62616631f4a..c2d9d5712bf6 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -12,3 +12,5 @@ paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE( paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. paper-ui-save-button = Save ({$keybind}) + +paper-tamper-proof-modified-message = This page was written using tamper-proof ink. diff --git a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl index 6bc3ec50684a..da3221e4f85e 100644 --- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl +++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl @@ -2,15 +2,21 @@ particle-accelerator-control-menu-on-button = On particle-accelerator-control-menu-off-button = Off particle-accelerator-control-menu-service-manual-reference = Refer to p.132 of service manual particle-accelerator-control-menu-device-version-label = Mark 2 Particle Accelerator -particle-accelerator-control-menu-power-label = Power: -particle-accelerator-control-menu-strength-label = Strength: -particle-accelerator-control-menu-alarm-control = PARTICLE STRENGTH - LIMITER FAILURE +particle-accelerator-control-menu-power-label = [bold]Power:[/bold] +particle-accelerator-control-menu-strength-label = [bold]Strength:[/bold] +particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE STRENGTH[/bold][/color] +particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color] particle-accelerator-control-menu-scan-parts-button = Scan Parts particle-accelerator-control-menu-check-containment-field-warning = Ensure containment field is active before operation particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ -particle-accelerator-control-menu-status-label = Status: {$status} -particle-accelerator-control-menu-status-operational = Operational -particle-accelerator-control-menu-status-incomplete = Incomplete -particle-accelerator-control-menu-draw-not-available = Draw: N/A -particle-accelerator-control-menu-draw = Draw: {$watts}/{$lastReceive} \ No newline at end of file +particle-accelerator-control-menu-status-label = [bold]Status:[/bold] +particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold] +particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Operational[/color][/bold] +particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=red]Incomplete[/color][/bold] +particle-accelerator-control-menu-draw = [bold]Draw:[/bold] +particle-accelerator-control-menu-draw-value = [font="Monospace"]{$watts}/{$lastReceive}[/font] +particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]N/A[/color][/font] + +particle-accelerator-radio-message-on = PA power has been switched on. +particle-accelerator-radio-message-off = PA power has been switched off. +particle-accelerator-radio-message-num = PA strength has been set to level {$level}. diff --git a/Resources/Locale/en-US/portal/swap-teleporter.ftl b/Resources/Locale/en-US/portal/swap-teleporter.ftl index f13fa9be423b..0040ad0a88b5 100644 --- a/Resources/Locale/en-US/portal/swap-teleporter.ftl +++ b/Resources/Locale/en-US/portal/swap-teleporter.ftl @@ -5,6 +5,7 @@ swap-teleporter-popup-link-destroyed = Quantum link destroyed! swap-teleporter-popup-teleport-cancel-time = It's still recharging! swap-teleporter-popup-teleport-cancel-link = It's not linked with another device! swap-teleporter-popup-teleport-other = {CAPITALIZE(THE($entity))} activates, and you find yourself somewhere else. +swap-teleporter-popup-teleport-fail = {CAPITALIZE(THE($entity))} activates and fails to transport you anywhere. swap-teleporter-verb-destroy-link = Destroy Quantum Link diff --git a/Resources/Locale/en-US/prayers/prayers.ftl b/Resources/Locale/en-US/prayers/prayers.ftl index 532ba4954f09..313de6322fd6 100644 --- a/Resources/Locale/en-US/prayers/prayers.ftl +++ b/Resources/Locale/en-US/prayers/prayers.ftl @@ -1,16 +1,19 @@ prayer-verbs-subtle-message = Subtle Message prayer-verbs-pray = Pray prayer-verbs-call = Call +prayer-verbs-rub = Rub prayer-chat-notify-pray = PRAYER prayer-chat-notify-honkmother = HONKMOTHER prayer-chat-notify-centcom = CENTCOM prayer-chat-notify-syndicate = SYNDICATE +prayer-chat-notify-lamp = LAMP prayer-popup-subtle-default = You hear a voice in your head... prayer-popup-notify-honkmother-sent = You left a voicemail message for the Honkmother... prayer-popup-notify-centcom-sent = You left a voicemail message for Central Command... prayer-popup-notify-syndicate-sent = You left a voicemail message for Syndicate High Command... +prayer-popup-notify-lamp-sent = Your thoughts seem to echo... prayer-popup-notify-pray-sent = Your message has been sent to the gods... prayer-popup-notify-pray-locked = You don't feel worthy enough... prayer-popup-notify-pray-ui-message = Message diff --git a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl index b85d7be38ed1..325d7cb538db 100644 --- a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl +++ b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl @@ -6,3 +6,8 @@ character-setup-gui-create-new-character-button = Create new slot... character-setup-gui-create-new-character-button-tooltip = A maximum of {$maxCharacters} characters are allowed. character-setup-gui-character-picker-button-delete-button = Delete character-setup-gui-character-picker-button-confirm-delete-button = Confirm + +character-setup-gui-save-panel-title = Unsaved character changes +character-setup-gui-save-panel-save = Save +character-setup-gui-save-panel-nosave = Don't save +character-setup-gui-save-panel-cancel = Cancel \ No newline at end of file diff --git a/Resources/Locale/en-US/replays/replays.ftl b/Resources/Locale/en-US/replays/replays.ftl index 7a7e551b3e94..4722f4c56b9a 100644 --- a/Resources/Locale/en-US/replays/replays.ftl +++ b/Resources/Locale/en-US/replays/replays.ftl @@ -41,3 +41,5 @@ replay-verb-spectate = Spectate cmd-replay-spectate-help = replay_spectate [optional entity] cmd-replay-spectate-desc = Attaches or detaches the local player to a given entity uid. cmd-replay-spectate-hint = Optional EntityUid + +cmd-replay-toggleui-desc = Toggles the replay control UI. diff --git a/Resources/Locale/en-US/salvage/salvage-magnet.ftl b/Resources/Locale/en-US/salvage/salvage-magnet.ftl index 7ce2a486de9e..c60bafcc138a 100644 --- a/Resources/Locale/en-US/salvage/salvage-magnet.ftl +++ b/Resources/Locale/en-US/salvage/salvage-magnet.ftl @@ -13,6 +13,7 @@ salvage-magnet-resources = {$resource -> [OreQuartz] Quartz [OreSalt] Salt [OreGold] Gold + [OreDiamond] Diamond [OreSilver] Silver [OrePlasma] Plasma [OreUranium] Uranium diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 2598970cefbe..85a64c71ae18 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -124,8 +124,10 @@ uplink-black-jetpack-desc = A black jetpack. It allows you to fly around in spac uplink-reinforcement-radio-ancestor-name = Genetic Ancestor Reinforcement Teleporter uplink-reinforcement-radio-ancestor-desc = Call in a trained ancestor of your choosing to assist you. Comes with a single syndicate cigarette. + uplink-reinforcement-radio-name = Reinforcement Teleporter -uplink-reinforcement-radio-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. +uplink-reinforcement-radio-traitor-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. Call in a medic or spy or thief to help you out. Good luck. +uplink-reinforcement-radio-nukeops-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. uplink-reinforcement-radio-cyborg-assault-name = Syndicate Assault Cyborg Teleporter uplink-reinforcement-radio-cyborg-assault-desc = A lean, mean killing machine with access to an Energy Sword, LMG, Cryptographic Sequencer, and a Pinpointer. @@ -318,6 +320,9 @@ uplink-hardsuit-carp-desc = Looks like an ordinary carp suit, except fully space uplink-hardsuit-syndie-name = Syndicate Hardsuit uplink-hardsuit-syndie-desc = The Syndicate's well known armored blood red hardsuit, capable of space walks and bullet resistant. +uplink-syndie-raid-name = Syndicate Raid Suit +uplink-syndie-raid-desc = A very durable and reasonably flexible suit of blood-red armor, reinforced against all common forms of damage but not capable of space walks. Comes with a sick helmet. + uplink-hardsuit-syndieelite-name = Syndicate Elite Hardsuit uplink-hardsuit-syndieelite-desc = An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders. diff --git a/Resources/Maps/Dungeon/snowy_labs.yml b/Resources/Maps/Dungeon/snowy_labs.yml index 1211d7a6642f..3ce318951c91 100644 --- a/Resources/Maps/Dungeon/snowy_labs.yml +++ b/Resources/Maps/Dungeon/snowy_labs.yml @@ -10731,7 +10731,7 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 1653 -- proto: MagicalLamp +- proto: ArabianLamp entities: - uid: 1204 components: diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 20fb68f2ccd1..2e7f60c91dfa 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1625,8 +1625,6 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding - - type: BecomesStation - id: SyndicateOutpost - uid: 1295 components: - type: MetaData @@ -11002,13 +11000,6 @@ entities: - type: Transform pos: 18.918644,6.663283 parent: 104 -- proto: SyndicateMicrowave - entities: - - uid: 10 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 104 - proto: KitchenReagentGrinder entities: - uid: 1257 @@ -13234,6 +13225,13 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Weeh +- proto: SyndicateMicrowave + entities: + - uid: 10 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 104 - proto: SyndicatePersonalAI entities: - uid: 160 diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_cluster.yml similarity index 76% rename from Resources/Maps/Shuttles/emergency_transit.yml rename to Resources/Maps/Shuttles/emergency_cluster.yml index 811ef3ecd872..3cc14505feeb 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_cluster.yml @@ -13,6 +13,7 @@ tilemap: 108: FloorWhite 113: FloorWhiteMono 114: FloorWhiteOffset + 1: FloorWood 120: Lattice 121: Plating entities: @@ -21,7 +22,7 @@ entities: - uid: 2 components: - type: MetaData - name: NT Evac Transit + name: NT Evac Cluster - type: Transform pos: -4.3957214,6.3308363 parent: invalid @@ -29,15 +30,15 @@ entities: chunks: 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAACIgAAAAACIgAAAAADIgAAAAACJgAAAAABTQAAAAAATQAAAAAATQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAACZAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAADeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAACHQAAAAACZAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADHQAAAAADZAAAAAAAeQAAAAAAZAAAAAAAHQAAAAADeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADHQAAAAABZAAAAAAAeQAAAAAAZAAAAAADHQAAAAADeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAHQAAAAABZAAAAAADeQAAAAAAZAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADHQAAAAACZAAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAABIgAAAAADJgAAAAABJgAAAAADIgAAAAADeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAIgAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABIgAAAAACIgAAAAACZAAAAAACZAAAAAAAIgAAAAAAZAAAAAAAZAAAAAACIgAAAAACIgAAAAADHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAABeQAAAAAAeQAAAAAAJgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA version: 6 0,0: ind: 0,0 @@ -45,7 +46,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -71,254 +72,279 @@ entities: version: 2 nodes: - node: - angle: -6.283185307179586 rad color: '#FFFFFFFF' id: Bot decals: - 21: 12,-18 - 22: 13,-18 + 0: 11,-1 + 1: 12,-1 + 2: 9,-1 + 3: 7,-1 + 4: 6,-1 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 0: 7,-8 - 1: 10,-8 - 2: 8,-8 - 3: 11,-8 - 4: 5,-12 - 5: 5,-14 - 6: 5,-13 - 7: 5,-15 - 8: 5,-16 - 9: 3,-18 - 10: 3,-19 - 11: 3,-20 - 12: 11,-1 - 13: 12,-1 - 14: 9,-1 - 15: 7,-1 - 16: 6,-1 - 17: 9,-13 - 18: 9,-14 - 19: 9,-15 - 23: 7,-12 - 24: 7,-13 - 25: 7,-14 - 26: 7,-15 - 27: 7,-16 + 69: 6,-8 + 70: 7,-8 + 71: 8,-8 + 72: 10,-8 + 73: 11,-8 + 74: 12,-8 + 75: 8,-10 + 76: 7,-10 + 77: 6,-10 + 78: 9,-19 + 79: 10,-19 + 80: 11,-19 + 81: 12,-19 + 82: 13,-19 - node: color: '#00FFFF6F' id: BotGreyscale decals: - 52: 11,-6 + 29: 11,-6 - node: - angle: -1.5707963267948966 rad + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BotLeft decals: - 64: 3,-9 + 83: 3,-9 + 84: 15,-9 + 85: 15,-17 - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe decals: - 65: 15,-9 + 112: 7,-12 + 118: 5,-12 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 32: 7,-4 + 9: 7,-4 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 109: 4,-12 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 111: 7,-14 + 117: 5,-14 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 33: 7,-6 + 10: 7,-6 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 110: 4,-14 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 28: 10,-5 + 5: 10,-5 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 29: 8,-5 + 6: 8,-5 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 49: 7,-6 + 26: 7,-6 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 113: 7,-13 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 115: 8,-13 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 48: 7,-4 + 25: 7,-4 - node: - color: '#52B4E996' - id: BrickTileWhiteLineE + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe decals: - 41: 7,-5 + 114: 7,-13 - node: - color: '#EFB34196' + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 116: 8,-13 + - node: + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 91: 7,-19 - 92: 7,-18 - 93: 7,-20 - 94: 7,-21 - 118: 13,-20 - 119: 13,-19 + 18: 7,-5 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 95: 5,-4 - 96: 13,-4 - 108: 8,-1 - 109: 10,-1 - 110: 13,-1 - 111: 5,-1 + 30: 5,-4 + 31: 13,-4 + 43: 8,-1 + 44: 10,-1 + 45: 13,-1 + 46: 5,-1 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 34: 8,-4 - 35: 9,-4 - 36: 10,-4 - 42: 8,-6 - 43: 9,-6 - 44: 10,-6 - - node: - angle: -3.141592653589793 rad - color: '#B02E26FF' - id: BrickTileWhiteLineN - decals: - 20: 11,-16 + 11: 8,-4 + 12: 9,-4 + 13: 10,-4 + 19: 8,-6 + 20: 9,-6 + 21: 10,-6 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 67: 9,-12 - 68: 10,-12 - 69: 11,-12 - 70: 12,-12 - 71: 13,-12 + 108: 6,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 31: 9,-5 + 8: 9,-5 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 97: 4,-2 - 98: 5,-2 - 99: 6,-2 - 100: 7,-2 - 101: 8,-2 - 102: 9,-2 - 103: 10,-2 - 104: 11,-2 - 105: 12,-2 - 106: 13,-2 - 107: 14,-2 + 32: 4,-2 + 33: 5,-2 + 34: 6,-2 + 35: 7,-2 + 36: 8,-2 + 37: 9,-2 + 38: 10,-2 + 39: 11,-2 + 40: 12,-2 + 41: 13,-2 + 42: 14,-2 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 37: 8,-6 - 38: 9,-6 - 39: 10,-6 - 45: 8,-4 - 46: 9,-4 - 47: 10,-4 + 14: 8,-6 + 15: 9,-6 + 16: 10,-6 + 22: 8,-4 + 23: 9,-4 + 24: 10,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 72: 10,-16 - 73: 9,-16 + 106: 6,-14 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 30: 9,-5 + 7: 9,-5 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 40: 7,-5 + 17: 7,-5 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 120: 9,-20 - 121: 9,-19 - 122: 9,-18 + 107: 4,-13 - node: - color: '#D4D4D40C' - id: CheckerNESW - decals: - 74: 6,-12 - 75: 6,-13 - 76: 6,-14 - 77: 6,-15 - 78: 6,-16 - 79: 14,-8 - 80: 14,-9 - 81: 14,-10 - 82: 4,-8 - 83: 4,-9 - 84: 4,-10 - 85: 6,-18 - 86: 6,-19 - 87: 5,-19 - 88: 5,-20 - 89: 6,-20 - 90: 5,-18 - - node: - color: '#D4D4D40C' + color: '#FFFFFF0C' id: CheckerNWSE decals: - 112: 10,-20 - 113: 10,-19 - 114: 11,-19 - 115: 12,-19 - 116: 12,-20 - 117: 11,-20 + 86: 9,-12 + 87: 9,-13 + 88: 9,-14 + 89: 10,-12 + 90: 10,-13 + 91: 10,-14 + 92: 11,-12 + 93: 11,-13 + 94: 11,-14 + 95: 9,-8 + 96: 12,-10 + 97: 14,-8 + 98: 14,-9 + 99: 14,-10 + 100: 4,-8 + 101: 4,-9 + 102: 4,-10 + 103: 14,-16 + 104: 14,-17 + 105: 14,-18 - node: - color: '#D4D4D428' + color: '#FFFFFF7F' id: Delivery decals: - 53: 5,-17 - 54: 6,-17 - 55: 7,-17 - 56: 7,-11 - 57: 6,-11 - 58: 5,-11 - 59: 5,-7 - 60: 13,-7 + 49: 13,-7 + 50: 5,-7 + 51: 11,-11 + 52: 10,-11 + 53: 9,-11 + 54: 9,-15 + 55: 10,-15 + 56: 11,-15 + 57: 2,-10 + 58: 2,-8 + 59: 16,-8 + 60: 16,-10 + 61: 16,-16 + 62: 16,-18 - node: color: '#00FFFF6F' id: DeliveryGreyscale decals: - 50: 11,-5 - 51: 11,-4 + 27: 11,-5 + 28: 11,-4 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 63: 15,-10 + 63: 15,-18 + 64: 15,-16 + 65: 15,-10 66: 15,-8 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 61: 3,-8 - 62: 3,-10 + 67: 3,-8 + 68: 3,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 47: 11,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 48: 11,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 119: 11,-14 + 120: 11,-13 + 121: 11,-12 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -436,13 +462,11 @@ entities: - type: GridPathfinding - proto: AirCanister entities: - - uid: 4 + - uid: 348 components: - type: Transform - pos: 12.5,-20.5 + pos: 4.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: AirlockCommandLocked entities: - uid: 5 @@ -457,36 +481,48 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 7 + - uid: 157 components: - type: Transform - pos: 8.5,-18.5 + pos: 8.5,-17.5 parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 8 + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + rot: 1.5707963267948966 rad + pos: 16.5,-7.5 parent: 2 - - uid: 9 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 10 + - uid: 317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-7.5 + pos: 16.5,-17.5 parent: 2 - - uid: 11 + - uid: 435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-9.5 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: @@ -495,68 +531,67 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 -- proto: AirlockSecurityLocked +- proto: AirlockSecurityGlassLocked entities: - - uid: 13 + - uid: 33 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 parent: 2 -- proto: APCHighCapacity +- proto: APCBasic entities: - - uid: 14 + - uid: 31 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 parent: 2 - - uid: 15 + - uid: 459 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-10.5 + pos: 8.5,-18.5 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 584 + - uid: 472 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 473 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 585 + - uid: 475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + pos: 16.5,-9.5 parent: 2 - - uid: 586 + - uid: 476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 + pos: 16.5,-15.5 parent: 2 - - uid: 587 + - uid: 477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + pos: 16.5,-17.5 parent: 2 -- proto: Bed - entities: - - uid: 16 + - uid: 586 components: - type: Transform - pos: 13.5,-15.5 + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 parent: 2 -- proto: BedsheetBrown +- proto: Bed entities: - - uid: 17 + - uid: 344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 + pos: 4.5,-13.5 parent: 2 - proto: BedsheetMedical entities: @@ -572,6 +607,14 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 - proto: BlastDoorOpen entities: - uid: 373 @@ -579,89 +622,56 @@ entities: - type: Transform pos: 9.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 374 components: - type: Transform pos: 6.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 379 components: - type: Transform pos: 7.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 380 components: - type: Transform pos: 8.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 429 components: - type: Transform pos: 11.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 436 components: - type: Transform pos: 10.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 437 components: - type: Transform pos: 5.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 565 components: - type: Transform pos: 5.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 601 components: - type: Transform pos: 12.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 602 components: - type: Transform pos: 13.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - uid: 603 components: - type: Transform pos: 13.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 604 - proto: BoxBodyBag entities: - uid: 591 @@ -676,13 +686,6 @@ entities: - type: Transform pos: 7.4030514,-5.3416786 parent: 2 -- proto: BrigTimer - entities: - - uid: 592 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 2 - proto: CableApcExtension entities: - uid: 20 @@ -695,100 +698,25 @@ entities: - type: Transform pos: 11.5,-5.5 parent: 2 - - uid: 22 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 2 - uid: 28 components: - type: Transform - pos: 7.5,-17.5 + pos: 5.5,-16.5 parent: 2 - uid: 29 components: - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 30 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - uid: 31 - components: - - type: Transform - pos: 7.5,-20.5 + pos: 11.5,-16.5 parent: 2 - uid: 32 components: - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 33 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 34 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 2 - - uid: 35 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 36 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - uid: 37 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 10.5,-7.5 + pos: 15.5,-17.5 parent: 2 - uid: 40 components: - type: Transform - pos: 9.5,-7.5 + pos: 5.5,-2.5 parent: 2 - uid: 41 components: @@ -813,12 +741,7 @@ entities: - uid: 45 components: - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 46 - components: - - type: Transform - pos: 7.5,-3.5 + pos: 5.5,-3.5 parent: 2 - uid: 47 components: @@ -828,7 +751,7 @@ entities: - uid: 48 components: - type: Transform - pos: 11.5,-17.5 + pos: 13.5,1.5 parent: 2 - uid: 49 components: @@ -843,62 +766,42 @@ entities: - uid: 51 components: - type: Transform - pos: 8.5,-2.5 + pos: 9.5,1.5 parent: 2 - uid: 52 components: - type: Transform - pos: 7.5,-2.5 + pos: 8.5,1.5 parent: 2 - uid: 53 components: - type: Transform - pos: 6.5,-2.5 + pos: 7.5,1.5 parent: 2 - uid: 54 components: - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 4.5,-2.5 + pos: 3.5,-1.5 parent: 2 - uid: 56 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 57 + - uid: 60 components: - type: Transform - pos: 14.5,-10.5 + pos: 5.5,1.5 parent: 2 - - uid: 58 + - uid: 61 components: - type: Transform - pos: 15.5,-10.5 + pos: 16.5,-8.5 parent: 2 - - uid: 59 + - uid: 62 components: - type: Transform - pos: 16.5,-10.5 - parent: 2 - - uid: 60 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 2 - - uid: 62 - components: - - type: Transform - pos: 16.5,-7.5 + pos: 16.5,-7.5 parent: 2 - uid: 63 components: @@ -948,152 +851,37 @@ entities: - uid: 72 components: - type: Transform - pos: 12.5,-1.5 + pos: 10.5,1.5 parent: 2 - uid: 73 components: - type: Transform - pos: 11.5,-1.5 + pos: 11.5,1.5 parent: 2 - uid: 74 components: - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 75 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 2 - - uid: 77 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - uid: 78 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 79 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 80 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - - uid: 81 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 82 - components: - - type: Transform - pos: 5.5,-10.5 + pos: 12.5,1.5 parent: 2 - uid: 83 components: - type: Transform - pos: 4.5,-10.5 + pos: 15.5,-19.5 parent: 2 - uid: 84 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 85 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 86 - components: - - type: Transform - pos: 7.5,-10.5 + pos: 5.5,-12.5 parent: 2 - uid: 87 components: - type: Transform - pos: 8.5,-10.5 - parent: 2 - - uid: 88 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 89 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 90 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - - uid: 91 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 92 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 93 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - uid: 94 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - uid: 95 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 96 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 97 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 98 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 2 - - uid: 99 - components: - - type: Transform - pos: 3.5,-6.5 + pos: 4.5,-18.5 parent: 2 - uid: 100 components: - type: Transform - pos: 2.5,-6.5 - parent: 2 - - uid: 101 - components: - - type: Transform - pos: 13.5,-8.5 + pos: 6.5,1.5 parent: 2 - uid: 102 components: @@ -1130,11 +918,6 @@ entities: - type: Transform pos: 3.5,0.5 parent: 2 - - uid: 109 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - uid: 110 components: - type: Transform @@ -1183,390 +966,427 @@ entities: - uid: 119 components: - type: Transform - pos: 14.5,-11.5 + pos: 9.5,-7.5 parent: 2 - - uid: 120 + - uid: 126 components: - type: Transform - pos: 14.5,-15.5 + pos: 4.5,-16.5 parent: 2 - - uid: 121 + - uid: 145 components: - type: Transform - pos: 13.5,-15.5 + pos: 14.5,1.5 parent: 2 - - uid: 122 + - uid: 146 components: - type: Transform - pos: 12.5,-15.5 + pos: 5.5,-1.5 parent: 2 - - uid: 123 + - uid: 150 components: - type: Transform - pos: 4.5,-15.5 + pos: 9.5,-9.5 parent: 2 - - uid: 124 + - uid: 151 components: - type: Transform - pos: 5.5,-15.5 + pos: 9.5,-8.5 parent: 2 - - uid: 125 + - uid: 163 components: - type: Transform - pos: 5.5,-16.5 + pos: 5.5,-4.5 parent: 2 - - uid: 126 + - uid: 171 components: - type: Transform - pos: 5.5,-17.5 + pos: 3.5,-18.5 parent: 2 - - uid: 127 + - uid: 172 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 128 + - uid: 173 components: - type: Transform - pos: 6.5,-18.5 + pos: 15.5,-18.5 parent: 2 - - uid: 129 + - uid: 214 components: - type: Transform - pos: 3.5,-15.5 + pos: 11.5,-12.5 parent: 2 - - uid: 130 + - uid: 215 components: - type: Transform - pos: 3.5,-21.5 + pos: 8.5,-10.5 parent: 2 - - uid: 131 + - uid: 216 components: - type: Transform - pos: 3.5,-20.5 + pos: 2.5,-8.5 parent: 2 - - uid: 132 + - uid: 227 components: - type: Transform - pos: 4.5,-20.5 + pos: 5.5,-5.5 parent: 2 - - uid: 133 + - uid: 228 components: - type: Transform - pos: 5.5,-20.5 + pos: 9.5,-12.5 parent: 2 - - uid: 134 + - uid: 229 components: - type: Transform - pos: 7.5,-21.5 + pos: 7.5,-12.5 parent: 2 - - uid: 135 + - uid: 230 components: - type: Transform - pos: 8.5,-21.5 + pos: 9.5,-14.5 parent: 2 - - uid: 136 + - uid: 231 components: - type: Transform - pos: 3.5,-11.5 + pos: 9.5,-10.5 parent: 2 - - uid: 428 + - uid: 232 components: - type: Transform - pos: 14.5,-16.5 + pos: 9.5,-16.5 parent: 2 - - uid: 471 + - uid: 233 components: - type: Transform - pos: 15.5,-15.5 + pos: 8.5,-17.5 parent: 2 - - uid: 549 + - uid: 234 components: - type: Transform - pos: 10.5,-21.5 + pos: 9.5,-17.5 parent: 2 - - uid: 550 + - uid: 235 components: - type: Transform - pos: 11.5,-21.5 + pos: 7.5,-17.5 parent: 2 - - uid: 551 + - uid: 236 components: - type: Transform - pos: 12.5,-21.5 + pos: 6.5,-17.5 parent: 2 - - uid: 552 + - uid: 244 components: - type: Transform - pos: 13.5,-21.5 + pos: 4.5,-6.5 parent: 2 - - uid: 553 + - uid: 245 components: - type: Transform - pos: 14.5,-21.5 + pos: 9.5,-13.5 parent: 2 - - uid: 554 + - uid: 246 components: - type: Transform - pos: 14.5,-20.5 + pos: 10.5,-12.5 parent: 2 - - uid: 555 + - uid: 248 components: - type: Transform - pos: 14.5,-19.5 + pos: 12.5,-12.5 parent: 2 - - uid: 556 + - uid: 249 components: - type: Transform - pos: 15.5,-21.5 + pos: 13.5,-16.5 parent: 2 - - uid: 562 + - uid: 250 components: - type: Transform - pos: 10.5,0.5 + pos: 14.5,-16.5 parent: 2 - - uid: 563 + - uid: 251 components: - type: Transform - pos: 9.5,0.5 + pos: 15.5,-16.5 parent: 2 - - uid: 564 + - uid: 264 components: - type: Transform - pos: 8.5,0.5 + pos: 8.5,-12.5 parent: 2 - - uid: 570 + - uid: 267 components: - type: Transform - pos: 10.5,-17.5 + pos: 13.5,-12.5 parent: 2 - - uid: 571 + - uid: 270 components: - type: Transform - pos: 12.5,-17.5 + pos: 6.5,-12.5 parent: 2 - - uid: 572 + - uid: 271 components: - type: Transform - pos: 12.5,-18.5 + pos: 10.5,-16.5 parent: 2 - - uid: 573 + - uid: 274 components: - type: Transform - pos: 12.5,-19.5 + pos: 2.5,-6.5 parent: 2 - - uid: 574 + - uid: 275 components: - type: Transform - pos: 12.5,-20.5 + pos: 5.5,-17.5 parent: 2 - - uid: 644 + - uid: 277 components: - type: Transform - pos: 9.5,-17.5 + pos: 3.5,-6.5 parent: 2 -- proto: CableHV - entities: - - uid: 137 + - uid: 281 components: - type: Transform - pos: 15.5,-19.5 + pos: 12.5,-16.5 parent: 2 - - uid: 139 + - uid: 283 components: - type: Transform - pos: 15.5,-17.5 + pos: 5.5,-6.5 parent: 2 - - uid: 299 + - uid: 361 components: - type: Transform - pos: 15.5,-17.5 + pos: 9.5,-15.5 parent: 2 - - uid: 576 + - uid: 366 components: - type: Transform - pos: 15.5,-18.5 + pos: 16.5,-16.5 parent: 2 -- proto: CableMV - entities: - - uid: 140 + - uid: 448 components: - type: Transform - pos: 8.5,-11.5 + pos: 2.5,-7.5 parent: 2 - - uid: 141 + - uid: 460 components: - type: Transform - pos: 8.5,-12.5 + pos: 8.5,-18.5 parent: 2 - - uid: 142 + - uid: 563 components: - type: Transform - pos: 8.5,-13.5 + pos: 9.5,0.5 parent: 2 - - uid: 143 +- proto: CableHV + entities: + - uid: 79 components: - type: Transform - pos: 8.5,-14.5 + pos: 6.5,-18.5 parent: 2 - - uid: 144 + - uid: 82 components: - type: Transform - pos: 8.5,-10.5 + pos: 6.5,-15.5 parent: 2 - - uid: 145 + - uid: 128 components: - type: Transform - pos: 8.5,-15.5 + pos: 7.5,-18.5 parent: 2 - - uid: 146 + - uid: 129 components: - type: Transform - pos: 15.5,-17.5 + pos: 6.5,-17.5 parent: 2 - - uid: 147 + - uid: 180 components: - type: Transform - pos: 12.5,-10.5 + pos: 8.5,-15.5 parent: 2 - - uid: 148 + - uid: 301 components: - type: Transform - pos: 14.5,-16.5 + pos: 7.5,-15.5 parent: 2 - - uid: 149 + - uid: 316 components: - type: Transform - pos: 13.5,-16.5 + pos: 8.5,-16.5 parent: 2 - - uid: 150 + - uid: 339 components: - type: Transform - pos: 12.5,-16.5 + pos: 6.5,-16.5 parent: 2 - - uid: 151 +- proto: CableMV + entities: + - uid: 30 components: - type: Transform - pos: 11.5,-16.5 + pos: 8.5,-17.5 parent: 2 - - uid: 152 + - uid: 197 components: - type: Transform - pos: 10.5,-16.5 + pos: 8.5,-16.5 parent: 2 - - uid: 153 + - uid: 198 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 464 components: - type: Transform pos: 9.5,-16.5 parent: 2 - - uid: 154 + - uid: 465 components: - type: Transform - pos: 8.5,-17.5 + pos: 9.5,-15.5 parent: 2 - - uid: 155 + - uid: 466 components: - type: Transform - pos: 8.5,-16.5 + pos: 9.5,-14.5 parent: 2 - - uid: 156 + - uid: 467 components: - type: Transform - pos: 11.5,-10.5 + pos: 9.5,-13.5 parent: 2 - - uid: 157 + - uid: 468 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 469 components: - type: Transform - pos: 10.5,-10.5 + pos: 9.5,-11.5 parent: 2 - - uid: 158 + - uid: 470 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 159 + - uid: 471 components: - type: Transform - pos: 13.5,-10.5 + pos: 8.5,-10.5 parent: 2 - - uid: 160 +- proto: CableTerminal + entities: + - uid: 124 components: - type: Transform - pos: 15.5,-16.5 + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 parent: 2 - proto: Catwalk entities: - - uid: 617 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + pos: 7.5,-16.5 parent: 2 - - uid: 618 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 2 - - uid: 619 + - uid: 289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + rot: 3.141592653589793 rad + pos: 3.5,-19.5 parent: 2 - - uid: 620 + - uid: 315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-15.5 + pos: 5.5,-17.5 parent: 2 - - uid: 621 + - uid: 318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-15.5 + rot: 3.141592653589793 rad + pos: 16.5,-13.5 parent: 2 - - uid: 622 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-15.5 + pos: 5.5,-15.5 parent: 2 - - uid: 623 + - uid: 337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-11.5 + pos: 7.5,-17.5 parent: 2 - - uid: 624 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-11.5 + pos: 5.5,-16.5 parent: 2 - - uid: 625 + - uid: 340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: 6.5,-15.5 parent: 2 - - uid: 626 + - uid: 341 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: 6.5,-17.5 parent: 2 - - uid: 627 + - uid: 343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 + rot: 3.141592653589793 rad + pos: 16.5,-11.5 parent: 2 - - uid: 628 + - uid: 400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 parent: 2 - uid: 629 components: @@ -1628,38 +1448,14 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 - - uid: 639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 2 - - uid: 640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 2 - uid: 641 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-7.5 parent: 2 - - uid: 642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 2 - proto: ChairOfficeLight entities: - - uid: 162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 2 - uid: 371 components: - type: Transform @@ -1672,73 +1468,53 @@ entities: parent: 2 - proto: ChairPilotSeat entities: - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 2 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - - uid: 167 + - uid: 17 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-14.5 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 parent: 2 - - uid: 168 + - uid: 27 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 parent: 2 - - uid: 169 + - uid: 36 components: - type: Transform - pos: 11.5,-7.5 + rot: 3.141592653589793 rad + pos: 14.5,-13.5 parent: 2 - - uid: 170 + - uid: 38 components: - type: Transform - pos: 10.5,-7.5 + rot: 3.141592653589793 rad + pos: 9.5,-18.5 parent: 2 - - uid: 171 + - uid: 90 components: - type: Transform - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 7.5,-9.5 parent: 2 - - uid: 172 + - uid: 127 components: - type: Transform - pos: 7.5,-7.5 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 2 - - uid: 173 + - uid: 132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 + rot: 3.141592653589793 rad + pos: 10.5,-18.5 parent: 2 - - uid: 174 + - uid: 135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: 11.5,-18.5 parent: 2 - uid: 175 components: @@ -1770,121 +1546,123 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 2 - - uid: 180 + - uid: 205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 + pos: 13.5,-11.5 parent: 2 - - uid: 181 + - uid: 207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 5.5,-15.5 parent: 2 - - uid: 182 + - uid: 243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: 13.5,-18.5 parent: 2 - - uid: 183 + - uid: 298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + pos: 6.5,-15.5 parent: 2 - - uid: 184 + - uid: 310 components: - type: Transform - pos: 12.5,-17.5 + rot: 3.141592653589793 rad + pos: 12.5,-18.5 parent: 2 - - uid: 185 + - uid: 347 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 349 components: - type: Transform - pos: 13.5,-17.5 + pos: 12.5,-11.5 parent: 2 - - uid: 361 + - uid: 369 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 - - uid: 594 + - uid: 375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 + pos: 10.5,-7.5 parent: 2 - - uid: 595 + - uid: 376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 12.5,-7.5 parent: 2 - - uid: 596 + - uid: 391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 + pos: 6.5,-7.5 parent: 2 - - uid: 597 + - uid: 398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 + rot: 3.141592653589793 rad + pos: 6.5,-13.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 186 + - uid: 421 components: - type: Transform - pos: 15.5,-8.5 + pos: 14.5,-11.5 parent: 2 - - uid: 187 + - uid: 424 components: - type: Transform - pos: 3.5,-8.5 + rot: 3.141592653589793 rad + pos: 12.5,-13.5 parent: 2 - - uid: 188 + - uid: 428 components: - type: Transform - pos: 5.5,-20.5 + pos: 8.5,-7.5 parent: 2 - - uid: 189 + - uid: 431 components: - type: Transform - pos: 9.5,-15.5 + pos: 7.5,-7.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 6.5,-11.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 +- proto: ClosetEmergencyFilledRandom + entities: - uid: 190 components: - type: Transform pos: 14.5,-1.5 parent: 2 -- proto: ClosetFireFilled + - uid: 252 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 +- proto: ClosetWallOrange entities: - - uid: 191 + - uid: 396 components: - type: Transform - pos: 9.5,-17.5 + pos: 4.5,-10.5 parent: 2 - proto: ComputerCrewMonitoring entities: @@ -1940,11 +1718,6 @@ entities: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 195 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - proto: FireAxeCabinetFilled entities: - uid: 605 @@ -1953,651 +1726,692 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-2.5 parent: 2 -- proto: Flash - entities: - - uid: 208 - components: - - type: Transform - pos: 11.444105,-11.399542 - parent: 2 - - uid: 209 - components: - - type: Transform - pos: 11.787855,-11.508917 - parent: 2 -- proto: FlashlightSeclite - entities: - - uid: 210 - components: - - type: Transform - pos: 12.444105,-11.36624 - parent: 2 - proto: GasOutletInjector entities: - - uid: 211 + - uid: 354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: 3.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveVent entities: - - uid: 212 + - uid: 206 components: - type: Transform - pos: 16.5,-15.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 425 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-20.5 + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 214 + - uid: 153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 + pos: 9.5,-7.5 parent: 2 - - uid: 215 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 2 - - uid: 216 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-20.5 + pos: 10.5,-17.5 parent: 2 - - uid: 217 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 203 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-2.5 + pos: 11.5,-18.5 parent: 2 - - uid: 219 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 + pos: 11.5,-6.5 parent: 2 - - uid: 220 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 + rot: 3.141592653589793 rad + pos: 5.5,-17.5 parent: 2 - - uid: 221 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 + pos: 5.5,-15.5 parent: 2 - - uid: 222 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 7 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-12.5 + pos: 9.5,-14.5 parent: 2 - - uid: 223 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 parent: 2 - - uid: 224 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-1.5 + pos: 14.5,-12.5 parent: 2 - - uid: 360 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 39 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 parent: 2 - - uid: 575 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 91 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: 10.5,-2.5 parent: 2 -- proto: GasPipeStraight - entities: - - uid: 225 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 98 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-17.5 + pos: 11.5,-9.5 parent: 2 - - uid: 226 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-17.5 + pos: 13.5,-12.5 parent: 2 - - uid: 227 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 8.5,-11.5 parent: 2 - - uid: 228 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 6.5,-17.5 parent: 2 - - uid: 229 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 + pos: 9.5,-9.5 parent: 2 - - uid: 230 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 + pos: 8.5,-0.5 parent: 2 - - uid: 231 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 + pos: 10.5,-1.5 parent: 2 - - uid: 232 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-18.5 + pos: 8.5,-3.5 parent: 2 - - uid: 233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-17.5 + pos: 8.5,-1.5 parent: 2 - - uid: 234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-16.5 + pos: 9.5,-10.5 parent: 2 - - uid: 235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-15.5 + pos: 9.5,-8.5 parent: 2 - - uid: 236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 + pos: 11.5,-10.5 parent: 2 - - uid: 237 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-13.5 + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 parent: 2 - - uid: 238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 + pos: 11.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-10.5 + pos: 11.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 + pos: 11.5,-14.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 11.5,-15.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 10.5,-4.5 parent: 2 - - uid: 243 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 254 components: - type: Transform - pos: 5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,-13.5 parent: 2 - - uid: 244 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 255 components: - type: Transform - pos: 5.5,-4.5 + pos: 9.5,-12.5 parent: 2 - - uid: 245 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 265 components: - type: Transform - pos: 5.5,-5.5 + pos: 10.5,-3.5 parent: 2 - - uid: 246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 287 components: - type: Transform - pos: 5.5,-6.5 + pos: 8.5,-4.5 parent: 2 - - uid: 248 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 2 - - uid: 249 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 parent: 2 - - uid: 250 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 + rot: 3.141592653589793 rad + pos: 8.5,-6.5 parent: 2 - - uid: 251 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 + pos: 9.5,-11.5 parent: 2 - - uid: 252 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-18.5 + pos: 8.5,-2.5 parent: 2 - - uid: 253 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 7.5,-17.5 + pos: 12.5,-12.5 parent: 2 - - uid: 255 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 360 components: - type: Transform - pos: 7.5,-16.5 + pos: 9.5,-16.5 parent: 2 - - uid: 256 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 365 components: - type: Transform - pos: 7.5,-15.5 + pos: 11.5,-8.5 parent: 2 - - uid: 257 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 368 components: - type: Transform - pos: 7.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 2 - - uid: 258 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 parent: 2 - - uid: 259 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-12.5 + pos: 10.5,-11.5 parent: 2 - - uid: 260 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-12.5 + pos: 10.5,-16.5 parent: 2 - - uid: 261 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 7.5,-17.5 parent: 2 - - uid: 262 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + pos: 10.5,-0.5 parent: 2 - - uid: 263 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 434 components: - type: Transform - pos: 7.5,-13.5 + pos: 9.5,-15.5 parent: 2 - - uid: 264 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 442 components: - type: Transform - pos: 7.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 265 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 4 components: - type: Transform - pos: 7.5,-10.5 + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 parent: 2 - - uid: 266 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 11.5,-12.5 parent: 2 - - uid: 267 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 93 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-13.5 parent: 2 - - uid: 268 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 parent: 2 - - uid: 269 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 2 - - uid: 270 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: 10.5,-5.5 parent: 2 - - uid: 271 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-2.5 + pos: 9.5,-17.5 parent: 2 - - uid: 272 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-3.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - - uid: 273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 parent: 2 - - uid: 274 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 449 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-5.5 + pos: 8.5,-7.5 parent: 2 - - uid: 275 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 2 - - uid: 276 +- proto: GasVentPump + entities: + - uid: 137 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-7.5 + pos: 10.5,-18.5 parent: 2 - - uid: 278 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-18.5 + pos: 6.5,-16.5 parent: 2 - - uid: 293 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 parent: 2 - - uid: 375 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 260 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-9.5 + pos: 7.5,-13.5 parent: 2 - - uid: 599 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 + pos: 8.5,0.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 279 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 262 components: - type: Transform - pos: 9.5,-19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 parent: 2 - - uid: 280 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 13 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-20.5 + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 parent: 2 - - uid: 281 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - - uid: 282 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-8.5 + pos: 7.5,-16.5 parent: 2 - - uid: 283 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 parent: 2 - - uid: 284 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 + pos: 10.5,0.5 parent: 2 - - uid: 285 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 2 - - uid: 286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 + pos: 7.5,-11.5 parent: 2 - - uid: 343 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 + pos: 6.5,-18.5 parent: 2 - - uid: 344 + - uid: 273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + pos: 7.5,-18.5 parent: 2 -- proto: GasPort +- proto: GravityGeneratorMini entities: - - uid: 287 + - uid: 130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 + pos: 5.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasVentPump +- proto: Grille entities: - - uid: 288 + - uid: 46 components: - type: Transform - pos: 6.5,-19.5 + pos: 12.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 289 + - uid: 94 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 16.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 290 + - uid: 95 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 14.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 291 + - uid: 120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-19.5 + pos: 13.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 292 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 588 + - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 + pos: 15.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 598 + - uid: 148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 11.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasVentScrubber - entities: - - uid: 294 + - uid: 149 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 295 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 + pos: 15.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 296 + - uid: 164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 + pos: 12.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 297 + - uid: 165 components: - type: Transform - pos: 12.5,-7.5 + pos: 12.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 298 + - uid: 166 components: - type: Transform - pos: 13.5,-11.5 + pos: 16.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 583 + - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 + pos: 15.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 138 + - uid: 168 components: - type: Transform - pos: 15.5,-18.5 + pos: 14.5,-10.5 parent: 2 - - uid: 300 + - uid: 169 components: - type: Transform - pos: 15.5,-19.5 + pos: 13.5,-10.5 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 301 + - uid: 211 components: - type: Transform - pos: 14.5,-19.5 + pos: 6.5,-19.5 parent: 2 -- proto: Grille - entities: - - uid: 302 + - uid: 213 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 303 + - uid: 221 components: - type: Transform - pos: 16.5,-8.5 + pos: 10.5,-19.5 parent: 2 - uid: 304 components: @@ -2629,46 +2443,6 @@ entities: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 310 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - - uid: 311 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 312 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 314 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 2 - - uid: 318 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 319 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 320 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - uid: 321 components: - type: Transform @@ -2757,108 +2531,38 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-6.5 parent: 2 - - uid: 336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 2 - - uid: 337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 2 - - uid: 338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 2 - - uid: 339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 2 - - uid: 340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 2 - - uid: 421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 2 - - uid: 529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 2 - - uid: 567 + - uid: 478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-19.5 + pos: 3.5,-11.5 parent: 2 - - uid: 579 + - uid: 480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 + pos: 3.5,-12.5 parent: 2 - - uid: 580 + - uid: 481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-13.5 + pos: 3.5,-13.5 parent: 2 - - uid: 581 + - uid: 482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 8.5,-13.5 parent: 2 - - uid: 582 + - uid: 500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 8.5,-11.5 parent: 2 - proto: Gyroscope entities: - - uid: 341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 2 - - type: Thruster - enabled: False -- proto: InflatableDoorStack - entities: - - uid: 367 - components: - - type: Transform - pos: 11.490703,-17.425648 - parent: 2 -- proto: InflatableWallStack - entities: - - uid: 348 - components: - - type: Transform - pos: 11.178203,-17.415234 - parent: 2 -- proto: LockerSecurityFilled - entities: - - uid: 593 + - uid: 296 components: - type: Transform - pos: 9.5,-11.5 + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 parent: 2 - proto: MedicalBed entities: @@ -2888,29 +2592,23 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 2 - - uid: 350 + - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 parent: 2 - - uid: 351 + - uid: 78 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: 3.5,-17.5 parent: 2 - - uid: 352 + - uid: 125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - proto: PlushieLizard entities: @@ -2919,104 +2617,128 @@ entities: - type: Transform pos: 7.3750105,0.676074 parent: 2 -- proto: PortableScrubber +- proto: PosterContrabandVoteWeh entities: - - uid: 354 + - uid: 355 components: - type: Transform - pos: 13.5,-20.5 + pos: 12.5,-4.5 parent: 2 -- proto: PosterContrabandVoteWeh +- proto: PosterLegitHelpOthers entities: - - uid: 355 + - uid: 357 components: - type: Transform - pos: 12.5,-4.5 + pos: 6.5,-4.5 parent: 2 -- proto: PosterLegitBuild +- proto: PosterLegitLoveIan entities: - - uid: 356 + - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-20.5 + pos: 4.5,-0.5 parent: 2 -- proto: PosterLegitHelpOthers +- proto: PottedPlantRandom entities: - - uid: 357 + - uid: 26 components: - type: Transform - pos: 6.5,-4.5 + pos: 5.5,-9.5 parent: 2 -- proto: PosterLegitLoveIan + - uid: 237 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 +- proto: Poweredlight entities: - - uid: 358 + - uid: 24 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 6.5,-11.5 parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 359 + - uid: 34 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-12.5 + pos: 10.5,-3.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 362 + - uid: 85 components: - type: Transform - pos: 13.5,-0.5 + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 parent: 2 - - uid: 363 + - uid: 86 components: - type: Transform - pos: 5.5,-0.5 + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - - uid: 365 + - uid: 88 components: - type: Transform - pos: 6.5,-7.5 + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 parent: 2 - - uid: 366 + - uid: 89 components: - type: Transform - pos: 12.5,-7.5 + rot: 3.141592653589793 rad + pos: 6.5,-13.5 parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 218 + - uid: 158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,0.5 + pos: 3.5,-8.5 parent: 2 - - uid: 364 + - uid: 161 components: - type: Transform - pos: 10.5,-17.5 + rot: -1.5707963267948966 rad + pos: 15.5,-16.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 368 + - uid: 170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 parent: 2 - - uid: 369 + - uid: 285 components: - type: Transform - pos: 10.5,-17.5 + rot: 3.141592653589793 rad + pos: 7.5,-9.5 parent: 2 - - uid: 376 + - uid: 336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 + rot: 3.141592653589793 rad + pos: 9.5,-1.5 parent: 2 - uid: 377 components: @@ -3040,12 +2762,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 2 - - uid: 383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 2 - uid: 384 components: - type: Transform @@ -3055,23 +2771,22 @@ entities: - uid: 457 components: - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 460 - components: - - type: Transform - pos: 6.5,-7.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 578 +- proto: PoweredSmallLight + entities: + - uid: 25 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 parent: 2 - - uid: 600 + - uid: 96 components: - type: Transform - pos: 9.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 parent: 2 - proto: Rack entities: @@ -3080,186 +2795,202 @@ entities: - type: Transform pos: 8.5,-3.5 parent: 2 -- proto: RandomVendingDrinks +- proto: RandomVending entities: - - uid: 577 + - uid: 159 components: - type: Transform - pos: 7.5,-20.5 + pos: 13.5,-9.5 parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 590 + - uid: 276 components: - type: Transform - pos: 6.5,-20.5 + pos: 13.5,-15.5 parent: 2 - proto: Screen entities: - - uid: 161 + - uid: 268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 9.5,-2.5 parent: 2 - - uid: 196 + - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 + rot: 3.141592653589793 rad + pos: 8.5,-15.5 parent: 2 - - uid: 197 + - uid: 463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + rot: 3.141592653589793 rad + pos: 7.5,-10.5 parent: 2 - - uid: 198 +- proto: ShuttleWindow + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 75 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-2.5 + pos: 16.5,-16.5 parent: 2 -- proto: ShotGunCabinetFilled - entities: - - uid: 609 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-14.5 + pos: 16.5,-8.5 parent: 2 -- proto: ShuttleWindow - entities: - - uid: 213 + - uid: 92 components: - type: Transform - pos: 16.5,-18.5 + pos: 2.5,-8.5 parent: 2 - - uid: 277 + - uid: 97 components: - type: Transform - pos: 16.5,-17.5 + rot: -1.5707963267948966 rad + pos: 12.5,-19.5 parent: 2 - - uid: 315 + - uid: 123 components: - type: Transform - pos: 16.5,-19.5 + pos: 8.5,-11.5 parent: 2 - - uid: 347 + - uid: 138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 - - uid: 385 + - uid: 140 components: - type: Transform - pos: 4.5,-12.5 + rot: 3.141592653589793 rad + pos: 3.5,-12.5 parent: 2 - - uid: 386 + - uid: 183 components: - type: Transform - pos: 14.5,-4.5 + pos: 8.5,-13.5 parent: 2 - - uid: 387 + - uid: 186 components: - type: Transform - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 7.5,-19.5 parent: 2 - - uid: 388 + - uid: 191 components: - type: Transform - pos: 4.5,-4.5 + pos: 14.5,-14.5 parent: 2 - - uid: 389 + - uid: 266 components: - type: Transform - pos: 14.5,-3.5 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 parent: 2 - - uid: 390 + - uid: 291 components: - type: Transform - pos: 4.5,-3.5 + rot: -1.5707963267948966 rad + pos: 6.5,-19.5 parent: 2 - - uid: 392 + - uid: 299 components: - type: Transform - pos: 6.5,1.5 + pos: 13.5,-14.5 parent: 2 - - uid: 393 + - uid: 302 components: - type: Transform - pos: 12.5,1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 parent: 2 - - uid: 395 + - uid: 313 components: - type: Transform - pos: 7.5,-6.5 + pos: 12.5,-14.5 parent: 2 - - uid: 396 + - uid: 314 components: - type: Transform - pos: 8.5,-12.5 + pos: 14.5,-10.5 parent: 2 - - uid: 397 + - uid: 356 components: - type: Transform - pos: 8.5,-6.5 + pos: 13.5,-10.5 parent: 2 - - uid: 398 + - uid: 386 components: - type: Transform - pos: 4.5,-14.5 + pos: 14.5,-4.5 parent: 2 - - uid: 399 + - uid: 387 components: - type: Transform - pos: 4.5,-11.5 + pos: 4.5,-5.5 parent: 2 - - uid: 401 + - uid: 388 components: - type: Transform - pos: 2.5,-19.5 + pos: 4.5,-4.5 parent: 2 - - uid: 402 + - uid: 389 components: - type: Transform - pos: 2.5,-17.5 + pos: 14.5,-3.5 parent: 2 - - uid: 403 + - uid: 390 components: - type: Transform - pos: 2.5,-18.5 + pos: 4.5,-3.5 parent: 2 - - uid: 404 + - uid: 392 components: - type: Transform - pos: 4.5,-15.5 + pos: 6.5,1.5 parent: 2 - - uid: 405 + - uid: 393 components: - type: Transform - pos: 4.5,-13.5 + pos: 12.5,1.5 parent: 2 - - uid: 406 + - uid: 395 components: - type: Transform - pos: 8.5,-13.5 + pos: 7.5,-6.5 parent: 2 - - uid: 407 + - uid: 397 components: - type: Transform - pos: 8.5,-11.5 + pos: 8.5,-6.5 parent: 2 - - uid: 408 + - uid: 405 components: - type: Transform - pos: 12.5,-10.5 + rot: 3.141592653589793 rad + pos: 15.5,-11.5 parent: 2 - - uid: 409 + - uid: 407 components: - type: Transform - pos: 11.5,-10.5 + rot: 3.141592653589793 rad + pos: 15.5,-12.5 parent: 2 - uid: 410 components: @@ -3291,63 +3022,40 @@ entities: - type: Transform pos: 14.5,-5.5 parent: 2 - - uid: 417 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 418 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 419 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 422 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 423 + - uid: 417 components: - type: Transform - pos: 5.5,1.5 + pos: 13.5,1.5 parent: 2 - - uid: 424 + - uid: 418 components: - type: Transform - pos: 16.5,-8.5 + pos: 7.5,1.5 parent: 2 - - uid: 426 + - uid: 419 components: - type: Transform - pos: 2.5,-8.5 + pos: 10.5,1.5 parent: 2 - - uid: 427 + - uid: 420 components: - type: Transform - pos: 11.5,1.5 + pos: 12.5,-10.5 parent: 2 - - uid: 566 + - uid: 422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 5.5,0.5 parent: 2 - - uid: 568 + - uid: 423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 5.5,1.5 parent: 2 - - uid: 569 + - uid: 427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-13.5 + pos: 11.5,1.5 parent: 2 - proto: SignalButtonDirectional entities: @@ -3381,36 +3089,6 @@ entities: - Pressed: Toggle 603: - Pressed: Toggle -- proto: SignAtmos - entities: - - uid: 342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 2 -- proto: SignDoors - entities: - - uid: 612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 2 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 -- proto: SignElectricalMed - entities: - - uid: 614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 2 - proto: SignMedical entities: - uid: 615 @@ -3419,21 +3097,19 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 -- proto: SignPrison +- proto: SinkStemlessWater entities: - - uid: 606 + - uid: 23 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 + pos: 5.5,-11.5 parent: 2 -- proto: SignSecurity +- proto: SMESBasic entities: - - uid: 616 + - uid: 195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + pos: 7.5,-15.5 parent: 2 - proto: StasisBed entities: @@ -3442,38 +3118,20 @@ entities: - type: Transform pos: 11.5,-5.5 parent: 2 -- proto: SubstationBasic +- proto: SubstationWallBasic entities: - - uid: 431 + - uid: 208 components: - type: Transform - pos: 15.5,-17.5 + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 parent: 2 - proto: Table entities: - - uid: 432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 2 - - uid: 433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 2 - - uid: 434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-17.5 - parent: 2 - - uid: 435 + - uid: 385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-17.5 + pos: 4.5,-16.5 parent: 2 - proto: TableGlass entities: @@ -3513,13 +3171,43 @@ entities: rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 2 +- proto: TableWood + entities: + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 - proto: Thruster entities: - - uid: 442 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 415 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-21.5 + pos: 3.5,-19.5 parent: 2 - uid: 443 components: @@ -3544,35 +3232,19 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 - - uid: 447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 2 - - uid: 448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - - uid: 449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 2 - uid: 450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-15.5 + pos: 16.5,-19.5 parent: 2 - uid: 451 components: - type: Transform pos: 3.5,-5.5 parent: 2 + - type: Thruster + enabled: False - uid: 452 components: - type: Transform @@ -3589,12 +3261,6 @@ entities: - type: Transform pos: 4.5,1.5 parent: 2 - - uid: 455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 2 - proto: VendingMachineBooze entities: - uid: 456 @@ -3611,128 +3277,246 @@ entities: parent: 2 - proto: VendingMachineSec entities: - - uid: 459 + - uid: 220 components: - type: Transform - pos: 13.5,-11.5 + pos: 7.5,-13.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 3 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 2.5,-10.5 parent: 2 - - uid: 316 + - uid: 226 components: - type: Transform - pos: 16.5,-20.5 + pos: 4.5,-14.5 parent: 2 - - uid: 317 + - uid: 269 components: - type: Transform - pos: 16.5,-16.5 + pos: 8.5,-14.5 parent: 2 - - uid: 461 + - uid: 272 components: - type: Transform - pos: 3.5,-1.5 + pos: 14.5,-18.5 parent: 2 - - uid: 462 + - uid: 279 components: - type: Transform - pos: 14.5,-21.5 + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 parent: 2 - - uid: 463 + - uid: 286 components: - type: Transform - pos: 13.5,-21.5 + rot: 1.5707963267948966 rad + pos: 16.5,-18.5 parent: 2 - - uid: 464 + - uid: 288 components: - type: Transform - pos: 12.5,-21.5 + pos: 3.5,-18.5 parent: 2 - - uid: 465 + - uid: 294 components: - type: Transform - pos: 11.5,-21.5 + pos: 6.5,-10.5 parent: 2 - - uid: 466 + - uid: 295 components: - type: Transform - pos: 10.5,-21.5 + pos: 5.5,-10.5 parent: 2 - - uid: 467 + - uid: 311 components: - type: Transform - pos: 9.5,-21.5 + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 parent: 2 - - uid: 468 + - uid: 352 components: - type: Transform - pos: 8.5,-21.5 + pos: 7.5,-10.5 parent: 2 - - uid: 469 + - uid: 359 components: - type: Transform - pos: 8.5,-20.5 + pos: 4.5,-10.5 parent: 2 - - uid: 470 + - uid: 364 components: - type: Transform - pos: 8.5,-19.5 + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - - uid: 472 + - uid: 383 components: - type: Transform - pos: 15.5,-20.5 + rot: 3.141592653589793 rad + pos: 15.5,-14.5 parent: 2 - - uid: 473 + - uid: 394 components: - type: Transform - pos: 14.5,-20.5 + pos: 4.5,-19.5 parent: 2 - - uid: 474 + - uid: 399 components: - type: Transform - pos: 15.5,-6.5 + pos: 4.5,-18.5 parent: 2 - - uid: 475 + - uid: 401 components: - type: Transform - pos: 15.5,-10.5 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 - - uid: 476 + - uid: 406 components: - type: Transform - pos: 3.5,-6.5 + rot: 3.141592653589793 rad + pos: 15.5,-10.5 parent: 2 - - uid: 477 + - uid: 408 components: - type: Transform - pos: 3.5,-10.5 + rot: 3.141592653589793 rad + pos: 16.5,-10.5 parent: 2 - - uid: 478 + - uid: 426 components: - type: Transform - pos: 4.5,-10.5 + pos: 8.5,-10.5 parent: 2 - - uid: 479 + - uid: 461 components: - type: Transform - pos: 14.5,-6.5 + pos: 3.5,-1.5 parent: 2 - - uid: 480 + - uid: 474 components: - type: Transform - pos: 14.5,-10.5 + pos: 15.5,-6.5 parent: 2 - - uid: 481 + - uid: 479 components: - type: Transform - pos: 14.5,-11.5 + pos: 14.5,-6.5 parent: 2 - uid: 483 components: @@ -3819,86 +3603,11 @@ entities: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 500 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 2 - - uid: 501 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - - uid: 502 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 2 - - uid: 503 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 504 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 505 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 2 - - uid: 506 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 2 - - uid: 507 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - - uid: 508 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - uid: 509 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 511 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 2 - - uid: 512 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 2 - - uid: 513 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 2 - - uid: 514 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - uid: 515 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - uid: 516 components: - type: Transform @@ -3934,143 +3643,11 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 2 - - uid: 524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 2 - - uid: 525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 2 - - uid: 526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - uid: 527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 2 - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-14.5 - parent: 2 - - uid: 530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 - parent: 2 - - uid: 532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 2 - uid: 533 components: - type: Transform pos: 16.5,-6.5 parent: 2 - - uid: 534 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 2 - - uid: 535 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 536 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - uid: 537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - uid: 538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 2 - - uid: 539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-16.5 - parent: 2 - - uid: 540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 2 - - uid: 541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 542 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WarningAir - entities: - - uid: 543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 2 - proto: WeaponCapacitorRecharger entities: - uid: 544 @@ -4078,41 +3655,26 @@ entities: - type: Transform pos: 11.5,0.5 parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 546 + - uid: 204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 2 - - uid: 548 + - uid: 155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-17.5 + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 parent: 2 -- proto: Wrench - entities: - - uid: 643 + - uid: 156 components: - type: Transform - pos: 12.37612,-20.675648 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 parent: 2 ... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index ca885d584bd0..520a4da5ae75 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -385,11 +385,11 @@ entities: - type: Transform - type: Map - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AirAlarm entities: - uid: 800 @@ -401,8 +401,6 @@ entities: - type: DeviceList devices: - 801 - - type: AtmosDevice - joinedGrid: 179 - proto: AirCanister entities: - uid: 458 @@ -410,8 +408,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Airlock entities: - uid: 48 @@ -901,33 +897,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - uid: 697 components: - type: Transform pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 698 components: - type: Transform pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 984 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - proto: BoozeDispenser entities: - uid: 752 @@ -2660,13 +2644,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 179 -- proto: chem_master - entities: - - uid: 311 - components: - - type: Transform - pos: 8.5,11.5 - parent: 179 - proto: ChemDispenser entities: - uid: 583 @@ -2704,6 +2681,13 @@ entities: - type: Transform pos: 6.4651074,9.828774 parent: 179 +- proto: ChemMaster + entities: + - uid: 311 + components: + - type: Transform + pos: 8.5,11.5 + parent: 179 - proto: ChemMasterMachineCircuitboard entities: - uid: 718 @@ -3031,27 +3015,18 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 463 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 677 components: - type: Transform @@ -3063,61 +3038,40 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 990 components: - type: Transform pos: -2.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 991 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - proto: CrateEngineeringToolbox entities: - uid: 692 @@ -3575,8 +3529,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasMixer entities: - uid: 747 @@ -3585,8 +3537,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasOutletInjector entities: - uid: 429 @@ -3595,8 +3545,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPipeBend entities: - uid: 727 @@ -3635,8 +3583,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPressurePump entities: - uid: 171 @@ -3645,8 +3591,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasValve entities: - uid: 168 @@ -3655,8 +3599,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentPump entities: - uid: 729 @@ -3665,8 +3607,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentScrubber entities: - uid: 452 @@ -3675,8 +3615,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVolumePump entities: - uid: 160 @@ -3685,8 +3623,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GeigerCounter entities: - uid: 759 @@ -4223,9 +4159,6 @@ entities: - type: Transform pos: 12.5,24.5 parent: 179 - - type: DeviceLinkSink - links: - - 1083 - proto: MachineFrame entities: - uid: 533 @@ -4379,8 +4312,6 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Ointment entities: - uid: 148 @@ -4400,8 +4331,6 @@ entities: - type: Transform pos: 7.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PaperBin10 entities: - uid: 977 @@ -4435,8 +4364,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PlasticFlapsAirtightClear entities: - uid: 997 @@ -5112,7 +5039,7 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 179 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 751 components: @@ -5164,20 +5091,6 @@ entities: - type: Transform pos: -3.5,4.5 parent: 179 -- proto: SpawnVehicleATV - entities: - - uid: 1176 - components: - - type: Transform - pos: -7.5,1.5 - parent: 179 -- proto: SpawnVehicleJanicart - entities: - - uid: 904 - components: - - type: Transform - pos: 5.5,16.5 - parent: 179 - proto: Spear entities: - uid: 185 @@ -5809,20 +5722,6 @@ entities: - type: Transform pos: -7.5,4.5 parent: 179 -- proto: VehicleKeyATV - entities: - - uid: 1187 - components: - - type: Transform - pos: -6.8905525,1.5128828 - parent: 179 -- proto: VehicleKeyJanicart - entities: - - uid: 14 - components: - - type: Transform - pos: 6.5,16.5 - parent: 179 - proto: VendingMachineCigs entities: - uid: 870 diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index 5a2a7d1c3c4a..e376a1a91ee9 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -3718,9 +3718,6 @@ entities: - type: Transform pos: -9.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5310 - type: DeviceLinkSource linkedPorts: 5310: @@ -3730,9 +3727,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 1339 - type: DeviceLinkSource linkedPorts: 1339: @@ -3742,9 +3736,6 @@ entities: - type: Transform pos: -37.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5993 - type: DeviceLinkSource linkedPorts: 5993: @@ -3754,9 +3745,6 @@ entities: - type: Transform pos: -37.5,20.5 parent: 30 - - type: DeviceLinkSink - links: - - 5990 - type: DeviceLinkSource linkedPorts: 5990: @@ -3767,12 +3755,24 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-22.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8258: + - DoorStatus: DoorBolt - uid: 8258 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-20.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8223: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 7628 @@ -3844,9 +3844,6 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 - - type: DeviceLinkSink - links: - - 4577 - type: DeviceLinkSource linkedPorts: 4577: @@ -3856,9 +3853,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 4576 - type: DeviceLinkSource linkedPorts: 4576: @@ -3869,12 +3863,24 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,0.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7904: + - DoorStatus: DoorBolt - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-1.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6809: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 5503 @@ -4302,9 +4308,6 @@ entities: - type: Transform pos: 3.5,-1.5 parent: 30 - - type: DeviceLinkSink - links: - - 7475 - uid: 2403 components: - type: Transform @@ -4497,8 +4500,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 893 components: - type: MetaData @@ -4565,8 +4566,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 3101 components: - type: MetaData @@ -4669,8 +4668,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - proto: APCHyperCapacity entities: - uid: 8318 @@ -4712,18 +4709,13 @@ entities: - type: Transform pos: -50.5,12.5 parent: 30 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 750 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 30 - - uid: 2442 - components: - - type: Transform - pos: -15.5,4.5 + pos: 22.5,34.5 parent: 30 - uid: 6874 components: @@ -4740,45 +4732,48 @@ entities: - uid: 6968 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 30 - uid: 6971 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-24.5 parent: 30 - uid: 6990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 + pos: 23.5,-24.5 parent: 30 - uid: 7003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + pos: 21.5,-24.5 parent: 30 - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,34.5 + pos: 15.5,34.5 parent: 30 - - uid: 8507 + - uid: 8364 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 30 - - uid: 8508 + - uid: 8507 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 30 +- proto: AtmosDeviceFanTiny + entities: + - uid: 2442 + components: + - type: Transform + pos: -15.5,4.5 + parent: 30 - proto: AtmosFixBlockerMarker entities: - uid: 4894 @@ -5344,139 +5339,87 @@ entities: - type: Transform pos: 23.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 346 - uid: 1590 components: - type: Transform pos: -29.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 4291 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7519 - uid: 4651 components: - type: Transform pos: -27.5,-23.5 parent: 30 - - type: DeviceLinkSink - links: - - 6651 - uid: 5196 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7520 - uid: 5836 components: - type: Transform pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5838 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5929 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5935 components: - type: Transform pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5971 components: - type: Transform pos: -39.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5972 components: - type: Transform pos: -40.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5973 components: - type: Transform pos: -41.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5974 components: - type: Transform pos: -42.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5975 components: - type: Transform pos: -43.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 6223 components: - type: Transform pos: -28.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 8171 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8208 - uid: 8660 components: - type: Transform pos: 7.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8661 - - 6089 - proto: BookshelfFilled entities: - uid: 246 @@ -20408,161 +20351,104 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3521 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3522 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3523 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3524 components: - type: Transform pos: 28.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3525 components: - type: Transform pos: 28.5,-13.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3526 components: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3527 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 4148 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 5580 components: - type: Transform pos: -22.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5591 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5598 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5599 components: - type: Transform pos: -22.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5609 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5940 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5941 components: - type: Transform pos: -22.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5942 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5943 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - proto: CowToolboxFilled entities: - uid: 6210 @@ -39415,9 +39301,6 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 4694 - proto: MachineCentrifuge entities: - uid: 2461 @@ -41939,9 +41822,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5803 - uid: 6284 components: - type: Transform @@ -41949,9 +41829,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5551 - uid: 6456 components: - type: Transform @@ -41966,9 +41843,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 7923 - proto: PoweredSmallLight entities: - uid: 65 @@ -42936,9 +42810,6 @@ entities: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - proto: ReinforcedPlasmaWindow entities: - uid: 251 @@ -44693,358 +44564,232 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 265 components: - type: Transform pos: 7.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3951 - uid: 266 components: - type: Transform pos: 9.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2566 - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,1.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 332 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 711 components: - type: Transform pos: 11.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 714 components: - type: Transform pos: 12.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1379 components: - type: Transform pos: -14.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1380 components: - type: Transform pos: -16.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1981 components: - type: Transform pos: 6.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1982 components: - type: Transform pos: 5.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1983 components: - type: Transform pos: 9.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1985 components: - type: Transform pos: 8.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 2154 components: - type: Transform pos: -15.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 2248 components: - type: Transform pos: -39.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2443 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,9.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2511 components: - type: Transform pos: 5.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3541 - uid: 2579 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2699 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2770 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 2821 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2919 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-9.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3272 components: - type: Transform pos: 12.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2271 - uid: 3685 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3931 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 5144 components: - type: Transform pos: -21.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 6321 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 6358 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6376 components: - type: Transform pos: 30.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6401 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6649 components: - type: Transform pos: 32.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6699 components: - type: Transform pos: 31.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 8445 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8446 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8635 components: - type: Transform pos: 2.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8676 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8677 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,15.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8678 components: - type: Transform pos: 10.5,14.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - proto: ShuttersRadiationOpen entities: - uid: 6112 @@ -45054,8 +44799,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7854 components: - type: Transform @@ -45063,8 +44806,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7927 components: - type: Transform @@ -45072,8 +44813,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - uid: 7995 components: - type: Transform @@ -45081,8 +44820,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - proto: ShuttersWindowOpen entities: - uid: 331 @@ -45091,18 +44828,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,2.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 7384 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - proto: SignalButton entities: - uid: 7519 @@ -45598,17 +45329,15 @@ entities: parent: 30 - proto: SignChem entities: - - uid: 2476 + - uid: 2465 components: - type: Transform - pos: -4.5,-3.5 + pos: -0.5,-3.5 parent: 30 -- proto: SignChemistry2 - entities: - - uid: 2465 + - uid: 2476 components: - type: Transform - pos: -0.5,-3.5 + pos: -4.5,-3.5 parent: 30 - proto: SignDirectionalBridge entities: @@ -45891,15 +45620,13 @@ entities: - type: Transform pos: 26.5,5.5 parent: 30 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 1557 components: - type: Transform pos: -8.5,7.5 parent: 30 -- proto: SignHydro3 - entities: - uid: 1558 components: - type: Transform @@ -45924,18 +45651,6 @@ entities: - type: Transform pos: 14.5,0.5 parent: 30 -- proto: SignMinerDock - entities: - - uid: 5802 - components: - - type: Transform - pos: -34.5,14.5 - parent: 30 - - uid: 6865 - components: - - type: Transform - pos: -37.5,29.5 - parent: 30 - proto: SignMorgue entities: - uid: 2438 @@ -45972,8 +45687,6 @@ entities: - type: Transform pos: -24.5,-7.5 parent: 30 -- proto: SignScience2 - entities: - uid: 5165 components: - type: Transform @@ -45994,6 +45707,18 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,9.5 parent: 30 +- proto: SignShipDock + entities: + - uid: 5802 + components: + - type: Transform + pos: -34.5,14.5 + parent: 30 + - uid: 6865 + components: + - type: Transform + pos: -37.5,29.5 + parent: 30 - proto: SignSpace entities: - uid: 5088 @@ -55423,17 +55148,11 @@ entities: - type: Transform pos: 6.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1476 - uid: 57 components: - type: Transform pos: 12.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 2252 - uid: 624 components: - type: Transform @@ -55445,9 +55164,6 @@ entities: - type: Transform pos: 9.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1640 - proto: WindoorServiceLocked entities: - uid: 4707 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 51a2b8ba6c2b..ed153964bdb0 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -10651,9 +10651,6 @@ entities: - type: Transform pos: -44.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 13899 - uid: 14521 components: - type: MetaData @@ -10661,9 +10658,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 2511 - uid: 17448 components: - type: MetaData @@ -10671,9 +10665,6 @@ entities: - type: Transform pos: -56.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 21611 - uid: 17459 components: - type: MetaData @@ -10681,9 +10672,6 @@ entities: - type: Transform pos: -44.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 20425 - uid: 17460 components: - type: MetaData @@ -10691,9 +10679,6 @@ entities: - type: Transform pos: -35.5,22.5 parent: 60 - - type: DeviceLinkSink - links: - - 20979 - uid: 19905 components: - type: MetaData @@ -11028,9 +11013,6 @@ entities: - type: Transform pos: 0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 18404 - type: DeviceLinkSource linkedPorts: 18404: @@ -11042,9 +11024,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 18403 - type: DeviceLinkSource linkedPorts: 18403: @@ -11070,9 +11049,6 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18076 - type: DeviceLinkSource linkedPorts: 18076: @@ -11131,9 +11107,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 60 - - type: DeviceLinkSink - links: - - 13069 - type: DeviceLinkSource linkedPorts: 13805: @@ -11165,10 +11138,6 @@ entities: - type: Transform pos: -1.5,14.5 parent: 60 - - type: DeviceLinkSink - links: - - 5859 - - 13069 - uid: 15490 components: - type: MetaData @@ -11315,9 +11284,6 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 60 - - type: DeviceLinkSink - links: - - 1435 - type: DeviceLinkSource linkedPorts: 1435: @@ -11330,12 +11296,24 @@ entities: rot: 3.141592653589793 rad pos: -6.5,37.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23570: + - DoorStatus: DoorBolt - uid: 23570 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,39.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23569: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 227 @@ -11343,9 +11321,6 @@ entities: - type: Transform pos: 44.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21532 - type: DeviceLinkSource linkedPorts: 21532: @@ -11356,12 +11331,11 @@ entities: pos: -20.5,-54.5 parent: 60 - type: DeviceLinkSink - links: - - 4889 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 4889: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 5168 components: - type: Transform @@ -11377,9 +11351,6 @@ entities: - type: Transform pos: -31.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 6673 - type: DeviceLinkSource linkedPorts: 6673: @@ -11389,9 +11360,6 @@ entities: - type: Transform pos: 52.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21534 - type: DeviceLinkSource linkedPorts: 21534: @@ -11401,9 +11369,6 @@ entities: - type: Transform pos: 46.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21533 - type: DeviceLinkSource linkedPorts: 21533: @@ -11413,9 +11378,6 @@ entities: - type: Transform pos: 54.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21535 - type: DeviceLinkSource linkedPorts: 21535: @@ -11425,9 +11387,6 @@ entities: - type: Transform pos: -47.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 7332 - type: DeviceLinkSource linkedPorts: 7332: @@ -11459,9 +11418,6 @@ entities: - type: Transform pos: 52.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12706 - type: DeviceLinkSource linkedPorts: 12706: @@ -11471,9 +11427,6 @@ entities: - type: Transform pos: 55.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 12018 - type: DeviceLinkSource linkedPorts: 12018: @@ -11483,9 +11436,6 @@ entities: - type: Transform pos: 52.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 9242 - type: DeviceLinkSource linkedPorts: 9242: @@ -11495,9 +11445,6 @@ entities: - type: Transform pos: 55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 8358 - type: DeviceLinkSource linkedPorts: 8358: @@ -11519,9 +11466,6 @@ entities: - type: Transform pos: 31.5,-56.5 parent: 60 - - type: DeviceLinkSink - links: - - 3335 - type: DeviceLinkSource linkedPorts: 3335: @@ -11531,9 +11475,6 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 60 - - type: DeviceLinkSink - links: - - 3334 - type: DeviceLinkSource linkedPorts: 3334: @@ -11543,9 +11484,6 @@ entities: - type: Transform pos: -66.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 7692 - type: DeviceLinkSource linkedPorts: 7692: @@ -11555,9 +11493,6 @@ entities: - type: Transform pos: -69.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 5497 - type: DeviceLinkSource linkedPorts: 5497: @@ -11588,9 +11523,6 @@ entities: - type: Transform pos: -25.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 17490 - type: DeviceLinkSource linkedPorts: 17490: @@ -11600,9 +11532,6 @@ entities: - type: Transform pos: -25.5,50.5 parent: 60 - - type: DeviceLinkSink - links: - - 17481 - type: DeviceLinkSource linkedPorts: 17481: @@ -11612,9 +11541,6 @@ entities: - type: Transform pos: 64.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20108 - type: DeviceLinkSource linkedPorts: 20108: @@ -11624,9 +11550,6 @@ entities: - type: Transform pos: 66.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20107 - type: DeviceLinkSource linkedPorts: 20107: @@ -11648,9 +11571,6 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 60 - - type: DeviceLinkSink - links: - - 3080 - type: DeviceLinkSource linkedPorts: 3080: @@ -11660,9 +11580,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 60 - - type: DeviceLinkSink - links: - - 3071 - type: DeviceLinkSource linkedPorts: 3071: @@ -11672,9 +11589,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 4596 - type: DeviceLinkSource linkedPorts: 4596: @@ -11684,9 +11598,6 @@ entities: - type: Transform pos: 58.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 4595 - type: DeviceLinkSource linkedPorts: 4595: @@ -11696,9 +11607,6 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 5312 - type: DeviceLinkSource linkedPorts: 5312: @@ -11709,20 +11617,16 @@ entities: pos: 0.5,-78.5 parent: 60 - type: DeviceLinkSink - links: - - 7364 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 7364: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 8522 components: - type: Transform pos: -18.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 3900 - type: DeviceLinkSource linkedPorts: 3900: @@ -11732,9 +11636,6 @@ entities: - type: Transform pos: 13.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10942 - type: DeviceLinkSource linkedPorts: 10942: @@ -11744,9 +11645,6 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10940 - type: DeviceLinkSource linkedPorts: 10940: @@ -11756,9 +11654,6 @@ entities: - type: Transform pos: -52.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 12584 - type: DeviceLinkSource linkedPorts: 12584: @@ -11768,9 +11663,6 @@ entities: - type: Transform pos: 16.5,29.5 parent: 60 - - type: DeviceLinkSink - links: - - 19100 - type: DeviceLinkSource linkedPorts: 19100: @@ -11780,9 +11672,6 @@ entities: - type: Transform pos: 16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 19087 - type: DeviceLinkSource linkedPorts: 19087: @@ -11792,9 +11681,6 @@ entities: - type: Transform pos: -72.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21236 - type: DeviceLinkSource linkedPorts: 21236: @@ -11804,9 +11690,6 @@ entities: - type: Transform pos: -74.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21235 - type: DeviceLinkSource linkedPorts: 21235: @@ -11816,10 +11699,6 @@ entities: - type: Transform pos: -95.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22429 - - 22428 - type: DeviceLinkSource linkedPorts: 22428: @@ -11831,10 +11710,6 @@ entities: - type: Transform pos: -95.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22428 - - 22429 - type: DeviceLinkSource linkedPorts: 22429: @@ -11846,10 +11721,6 @@ entities: - type: Transform pos: -98.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11861,10 +11732,6 @@ entities: - type: Transform pos: -98.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11897,9 +11764,6 @@ entities: linkedPorts: 227: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 227 - uid: 21533 components: - type: Transform @@ -11910,9 +11774,6 @@ entities: linkedPorts: 6695: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6695 - uid: 21534 components: - type: Transform @@ -11923,9 +11784,6 @@ entities: linkedPorts: 6693: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6693 - uid: 21535 components: - type: Transform @@ -11936,9 +11794,6 @@ entities: linkedPorts: 6767: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6767 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 2733 @@ -11975,10 +11830,9 @@ entities: - type: DeviceLinkSource linkedPorts: 4890: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 4890 + invokeCounter: 1 - uid: 7364 components: - type: Transform @@ -11987,10 +11841,9 @@ entities: - type: DeviceLinkSource linkedPorts: 7362: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 7362 + invokeCounter: 1 - uid: 13181 components: - type: Transform @@ -12037,9 +11890,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 1441 - type: DeviceLinkSource linkedPorts: 1441: @@ -12049,9 +11899,6 @@ entities: - type: Transform pos: -18.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 8522 - type: DeviceLinkSource linkedPorts: 8522: @@ -12061,9 +11908,6 @@ entities: - type: Transform pos: -58.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11631 - type: DeviceLinkSource linkedPorts: 11631: @@ -12073,9 +11917,6 @@ entities: - type: Transform pos: -58.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 11630 - type: DeviceLinkSource linkedPorts: 11630: @@ -12085,9 +11926,6 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18033 - type: DeviceLinkSource linkedPorts: 18033: @@ -13360,9 +13198,6 @@ entities: lastSignals: DoorStatus: False DockStatus: True - - type: DeviceLinkSink - links: - - 7316 - uid: 12584 components: - type: Transform @@ -13373,9 +13208,6 @@ entities: linkedPorts: 12842: - DoorStatus: DoorBolt - - type: DeviceLinkSink - links: - - 12842 - proto: AirlockSyndicateGlassLocked entities: - uid: 5333 @@ -13444,9 +13276,6 @@ entities: - type: Transform pos: 46.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2970 - type: DeviceLinkSource linkedPorts: 2970: @@ -13456,9 +13285,6 @@ entities: - type: Transform pos: 49.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2963 - type: DeviceLinkSource linkedPorts: 2963: @@ -14493,142 +14319,128 @@ entities: - type: Transform pos: 32.2979,26.45987 parent: 60 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 297 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 5477 - components: - - type: Transform + rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 - - uid: 6129 + - uid: 3189 components: - type: Transform - pos: -11.5,-0.5 - parent: 7536 - - uid: 6130 + rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 60 + - uid: 5477 components: - type: Transform - pos: -11.5,-4.5 - parent: 7536 + rot: 1.5707963267948966 rad + pos: 59.5,14.5 + parent: 60 - uid: 6768 components: - type: Transform - pos: 54.5,31.5 + rot: 1.5707963267948966 rad + pos: 59.5,12.5 parent: 60 - uid: 6769 components: - type: Transform - pos: 44.5,31.5 + rot: -1.5707963267948966 rad + pos: 7.5,-70.5 parent: 60 - uid: 6788 components: - type: Transform - pos: 59.5,14.5 + rot: -1.5707963267948966 rad + pos: 7.5,-63.5 parent: 60 - uid: 7581 components: - type: Transform - pos: 59.5,12.5 - parent: 60 - - uid: 9110 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 7536 - - uid: 9214 - components: - - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: -5.5,-70.5 parent: 60 - uid: 12269 components: - type: Transform - pos: 39.5,-46.5 - parent: 60 - - uid: 13825 - components: - - type: Transform - pos: 25.5,-25.5 + rot: 1.5707963267948966 rad + pos: 6.5,-70.5 parent: 60 - uid: 19688 components: - type: Transform - pos: 7.5,-70.5 + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 parent: 60 - uid: 19689 components: - type: Transform - pos: 7.5,-63.5 + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 parent: 60 - uid: 19690 components: - type: Transform - pos: -4.5,-70.5 + pos: -24.5,-36.5 parent: 60 - uid: 19691 components: - type: Transform - pos: 5.5,-70.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 60 - uid: 19692 components: - type: Transform - pos: 5.5,-63.5 + rot: 3.141592653589793 rad + pos: 54.5,31.5 parent: 60 - uid: 19694 components: - type: Transform - pos: -4.5,-63.5 + rot: 1.5707963267948966 rad + pos: 15.5,-63.5 parent: 60 - uid: 19786 components: - type: Transform - pos: -24.5,-35.5 - parent: 60 - - uid: 19800 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 60 - - uid: 19808 - components: - - type: Transform - pos: 20.5,28.5 + rot: 1.5707963267948966 rad + pos: 15.5,-70.5 parent: 60 - - uid: 21130 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6129 components: - type: Transform - pos: 44.5,31.5 - parent: 60 - - uid: 23380 + pos: -11.5,-0.5 + parent: 7536 + - uid: 6130 components: - type: Transform - pos: 46.5,31.5 - parent: 60 - - uid: 23381 + pos: -11.5,-4.5 + parent: 7536 + - uid: 9110 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 23382 + pos: 0.5,-0.5 + parent: 7536 + - uid: 9214 components: - type: Transform - pos: 54.5,31.5 + pos: 23.5,-29.5 parent: 60 - - uid: 23969 + - uid: 13825 components: - type: Transform - pos: 15.5,-63.5 + pos: 25.5,-25.5 parent: 60 - - uid: 23970 + - uid: 19808 components: - type: Transform - pos: 15.5,-70.5 + pos: 20.5,28.5 parent: 60 - proto: AtmosFixBlockerMarker entities: @@ -15792,183 +15604,111 @@ entities: - type: Transform pos: -23.5,34.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2404 components: - type: Transform pos: -23.5,35.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2506 components: - type: Transform pos: -23.5,36.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 7728 components: - type: Transform pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 7746 - uid: 7729 components: - type: Transform pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 3803 - uid: 11697 components: - type: Transform pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19108 - uid: 11830 components: - type: Transform pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 19107 - uid: 12598 components: - type: Transform pos: -55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12596 - uid: 13175 components: - type: Transform pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13176 components: - type: Transform pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13177 components: - type: Transform pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13178 components: - type: Transform pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13901 components: - type: Transform pos: -50.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 14622 - uid: 15089 components: - type: Transform pos: -31.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 14913 - - 14914 - uid: 16541 components: - type: Transform pos: -5.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16542 components: - type: Transform pos: -6.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16973 components: - type: Transform pos: -20.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16976 components: - type: Transform pos: -19.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16977 components: - type: Transform pos: -18.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16978 components: - type: Transform pos: -14.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16979 components: - type: Transform pos: -12.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16980 components: - type: Transform pos: -13.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - proto: BlastDoorBridgeOpen entities: - uid: 21763 @@ -15976,65 +15716,41 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21764 components: - type: Transform pos: 1.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21765 components: - type: Transform pos: 1.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21766 components: - type: Transform pos: -0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21767 components: - type: Transform pos: 5.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21768 components: - type: Transform pos: 5.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21769 components: - type: Transform pos: -4.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21770 components: - type: Transform pos: -4.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - proto: BlastDoorOpen entities: - uid: 5344 @@ -16043,63 +15759,42 @@ entities: rot: 3.141592653589793 rad pos: -115.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5345 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5352 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5358 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5359 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5360 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5361 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - proto: BlastDoorWindowsOpen entities: - uid: 21780 @@ -59372,19 +59067,19 @@ entities: - type: Transform pos: 9.573504,-55.474518 parent: 60 -- proto: ClothingOuterCoatGentle +- proto: ClothingOuterCoatDetectiveLoadout entities: - - uid: 3530 + - uid: 6787 components: - type: Transform - pos: 51.556362,-34.423466 + pos: 19.394547,-50.426735 parent: 60 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatGentle entities: - - uid: 6787 + - uid: 3530 components: - type: Transform - pos: 19.394547,-50.426735 + pos: 51.556362,-34.423466 parent: 60 - proto: ClothingOuterCoatJensen entities: @@ -60507,135 +60202,90 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3894 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3895 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3896 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5285 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5489 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6730 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6978 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 7723 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7724 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7725 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 8360 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 9238 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11722 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - type: Construction edge: 0 - uid: 11757 @@ -60644,162 +60294,108 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11881 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 12283 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12703 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 13162 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13163 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13164 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13165 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13166 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13167 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13168 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13169 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13170 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13171 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13222 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - proto: CowToolboxFilled entities: - uid: 7795 @@ -106506,60 +106102,39 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 60 - - type: DeviceLinkSink - links: - - 24347 - uid: 24333 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-2.5 parent: 60 - - type: DeviceLinkSink - links: - - 24334 - uid: 24335 components: - type: Transform pos: -17.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 24336 - uid: 24337 components: - type: Transform pos: 35.5,-22.5 parent: 60 - - type: DeviceLinkSink - links: - - 24365 - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 24351 - uid: 24352 components: - type: Transform pos: 2.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 24353 - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 24354 - proto: JetpackBlueFilled entities: - uid: 4705 @@ -108113,9 +107688,6 @@ entities: - type: Transform pos: -50.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 466 - proto: MachineCentrifuge entities: - uid: 2457 @@ -117128,9 +116700,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 24108 - proto: ReinforcedGirder entities: - uid: 11134 @@ -121917,73 +121486,46 @@ entities: - type: Transform pos: -3.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 920 components: - type: Transform pos: -2.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 2307 components: - type: Transform pos: 30.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 5626 components: - type: Transform pos: -32.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5627 components: - type: Transform pos: -33.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5628 components: - type: Transform pos: -31.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 7697 components: - type: Transform pos: -4.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 11253 components: - type: Transform pos: 29.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 17449 components: - type: Transform pos: -52.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 2508 - proto: ShuttersNormalOpen entities: - uid: 147 @@ -121992,621 +121534,402 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 188 components: - type: Transform pos: -17.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 552 components: - type: Transform pos: -17.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1353 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1354 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1357 components: - type: Transform pos: 14.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1454 components: - type: Transform pos: 41.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 1631 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 2250 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2381 components: - type: Transform pos: 24.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2877 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 2892 components: - type: Transform pos: 13.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3093 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3106 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 3200 components: - type: Transform pos: 40.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 3208 components: - type: Transform pos: 38.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 3493 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3737 components: - type: Transform pos: -18.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 4034 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-28.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 4045 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 4355 components: - type: Transform pos: 35.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4487 components: - type: Transform pos: 32.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4496 components: - type: Transform pos: 34.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 5149 components: - type: Transform pos: -11.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 5560 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 6203 components: - type: Transform pos: -35.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6467 components: - type: Transform pos: -17.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 6522 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6524 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6526 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6733 components: - type: Transform pos: -35.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6775 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6796 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 7032 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 7045 components: - type: Transform pos: -35.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 7131 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7664 components: - type: Transform pos: 39.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 8002 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 8381 components: - type: Transform pos: -13.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 8382 components: - type: Transform pos: -12.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 12303 components: - type: Transform pos: 23.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 12509 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 14208 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 14548 components: - type: Transform pos: -36.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 15575 components: - type: Transform pos: 13.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16058 components: - type: Transform pos: 12.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16129 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 16134 components: - type: Transform pos: 22.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 17671 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 18517 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18518 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18519 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 19155 components: - type: Transform pos: -33.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 19130 - uid: 21334 components: - type: Transform pos: 40.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 21340 components: - type: Transform pos: 4.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21341 components: - type: Transform pos: 5.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21342 components: - type: Transform pos: 6.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21753 components: - type: Transform pos: 43.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21754 components: - type: Transform pos: 44.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21755 components: - type: Transform pos: 45.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21758 components: - type: Transform pos: 45.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21759 components: - type: Transform pos: 43.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21760 components: - type: Transform pos: 44.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 22463 components: - type: Transform @@ -122622,57 +121945,36 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24367 components: - type: Transform pos: 39.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24368 components: - type: Transform pos: 40.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24369 components: - type: Transform pos: 42.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24370 components: - type: Transform pos: 36.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24371 components: - type: Transform pos: 36.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24372 components: - type: Transform pos: 42.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - proto: ShuttersRadiationOpen entities: - uid: 16309 @@ -122680,113 +121982,71 @@ entities: - type: Transform pos: -10.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16335 components: - type: Transform pos: -12.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16336 components: - type: Transform pos: -15.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16337 components: - type: Transform pos: -16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16363 components: - type: Transform pos: -17.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16364 components: - type: Transform pos: -20.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16365 components: - type: Transform pos: -22.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16369 components: - type: Transform pos: -0.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 16398 components: - type: Transform pos: 1.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 18610 components: - type: Transform pos: 1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18611 components: - type: Transform pos: 2.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18643 components: - type: Transform pos: 0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18644 components: - type: Transform pos: -0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18706 components: - type: Transform pos: -1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - proto: ShuttersWindow entities: - uid: 11471 @@ -122794,55 +122054,31 @@ entities: - type: Transform pos: -51.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11568 components: - type: Transform pos: -51.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11574 components: - type: Transform pos: -49.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11575 components: - type: Transform pos: -49.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11582 components: - type: Transform pos: -50.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11583 components: - type: Transform pos: -50.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - proto: ShuttersWindowOpen entities: - uid: 6771 @@ -122851,75 +122087,48 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 14547 components: - type: Transform pos: -37.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 16527 components: - type: Transform pos: 42.5,-27.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17379 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17491 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 19158 components: - type: Transform pos: 32.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19159 components: - type: Transform pos: 31.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19161 components: - type: Transform pos: 30.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 21068 components: - type: Transform pos: -40.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - proto: ShuttleWindow entities: - uid: 21608 @@ -123892,8 +123101,6 @@ entities: - type: Transform pos: -56.5,35.5 parent: 60 -- proto: SignAtmosMinsky - entities: - uid: 24214 components: - type: Transform @@ -123983,32 +123190,21 @@ entities: parent: 60 - proto: SignChem entities: + - uid: 2661 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 60 - uid: 2809 components: - type: Transform pos: 42.5,-29.5 parent: 60 -- proto: SignChemistry1 - entities: - uid: 8932 components: - type: Transform pos: 42.5,-25.5 parent: 60 -- proto: SignChemistry2 - entities: - - uid: 2661 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 60 -- proto: SignCourt - entities: - - uid: 24097 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -124628,13 +123824,6 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 60 -- proto: SignDrones - entities: - - uid: 7203 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 60 - proto: SignElectricalMed entities: - uid: 161 @@ -124861,7 +124050,7 @@ entities: - type: Transform pos: -39.5,-17.5 parent: 60 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 1959 components: @@ -124903,6 +124092,11 @@ entities: - type: Transform pos: -47.5,-19.5 parent: 60 + - uid: 24097 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 60 - proto: SignLibrary entities: - uid: 14057 @@ -124915,6 +124109,13 @@ entities: - type: Transform pos: -7.5,10.5 parent: 60 +- proto: SignMaterials + entities: + - uid: 7203 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124927,14 +124128,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 60 -- proto: SignMinerDock - entities: - - uid: 13251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 60 - proto: SignMorgue entities: - uid: 265 @@ -125239,6 +124432,14 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 60 +- proto: SignShipDock + entities: + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 60 - proto: SignSmoking entities: - uid: 5791 @@ -150857,54 +150058,36 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 6972 - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1488 - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 1468 - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 1486 - uid: 268 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1485 - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 6971 - uid: 4078 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 07a5cd9d35fa..ea4dd61dd9dd 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10103,9 +10103,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27664 - uid: 6413 components: - type: MetaData @@ -10113,9 +10110,6 @@ entities: - type: Transform pos: 12.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27663 - uid: 6414 components: - type: MetaData @@ -10123,9 +10117,6 @@ entities: - type: Transform pos: 7.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27662 - uid: 6415 components: - type: MetaData @@ -10133,9 +10124,6 @@ entities: - type: Transform pos: 7.5,11.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27661 - uid: 6416 components: - type: MetaData @@ -10143,9 +10131,6 @@ entities: - type: Transform pos: 7.5,8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27660 - uid: 6417 components: - type: MetaData @@ -10153,9 +10138,6 @@ entities: - type: Transform pos: 7.5,5.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27659 - uid: 7533 components: - type: MetaData @@ -10827,9 +10809,6 @@ entities: - type: Transform pos: -61.5,17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13669 - type: DeviceLinkSource linkedPorts: 13669: @@ -10839,9 +10818,6 @@ entities: - type: Transform pos: -61.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 431 - type: DeviceLinkSource linkedPorts: 431: @@ -10854,10 +10830,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3707 - - 3858 - type: DeviceLinkSource linkedPorts: 3707: @@ -10869,9 +10841,6 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 23210 - type: DeviceLinkSource linkedPorts: 23210: @@ -10881,9 +10850,6 @@ entities: - type: Transform pos: 9.5,-79.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11000 - type: DeviceLinkSource linkedPorts: 11000: @@ -10895,6 +10861,12 @@ entities: - type: Transform pos: 91.5,-29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5209: + - DoorStatus: Close - uid: 8807 components: - type: Transform @@ -10930,6 +10902,12 @@ entities: - type: Transform pos: 91.5,-26.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12644: + - DoorStatus: Close - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 3858 @@ -10937,9 +10915,6 @@ entities: - type: Transform pos: 23.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -10951,9 +10926,6 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15002 - type: DeviceLinkSource linkedPorts: 15002: @@ -10963,9 +10935,6 @@ entities: - type: Transform pos: -30.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 7010 - type: DeviceLinkSource linkedPorts: 7010: @@ -10988,9 +10957,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -11000,9 +10966,6 @@ entities: - type: Transform pos: -41.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14449 - type: DeviceLinkSource linkedPorts: 14449: @@ -11012,9 +10975,6 @@ entities: - type: Transform pos: -39.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14448 - type: DeviceLinkSource linkedPorts: 14448: @@ -11032,9 +10992,6 @@ entities: - type: Transform pos: -20.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 509 - type: DeviceLinkSource linkedPorts: 509: @@ -11044,9 +11001,6 @@ entities: - type: Transform pos: -22.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 508 - type: DeviceLinkSource linkedPorts: 508: @@ -11056,9 +11010,6 @@ entities: - type: Transform pos: -66.5,19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 562 - type: DeviceLinkSource linkedPorts: 562: @@ -11068,9 +11019,6 @@ entities: - type: Transform pos: -33.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15592 - type: DeviceLinkSource linkedPorts: 15592: @@ -11080,9 +11028,6 @@ entities: - type: Transform pos: 28.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9810 - type: DeviceLinkSource linkedPorts: 9810: @@ -11092,9 +11037,6 @@ entities: - type: Transform pos: -77.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1110 - type: DeviceLinkSource linkedPorts: 1110: @@ -11104,9 +11046,6 @@ entities: - type: Transform pos: -68.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12470 - type: DeviceLinkSource linkedPorts: 12470: @@ -11116,9 +11055,6 @@ entities: - type: Transform pos: -75.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12469 - type: DeviceLinkSource linkedPorts: 12469: @@ -11128,9 +11064,6 @@ entities: - type: Transform pos: -49.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13139 - type: DeviceLinkSource linkedPorts: 13139: @@ -11140,9 +11073,6 @@ entities: - type: Transform pos: -49.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13138 - type: DeviceLinkSource linkedPorts: 13138: @@ -11152,9 +11082,6 @@ entities: - type: Transform pos: 49.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19366 - type: DeviceLinkSource linkedPorts: 19366: @@ -11164,9 +11091,6 @@ entities: - type: Transform pos: 62.5,-71.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19987 - type: DeviceLinkSource linkedPorts: 19987: @@ -11176,9 +11100,6 @@ entities: - type: Transform pos: 87.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19989 - type: DeviceLinkSource linkedPorts: 19989: @@ -11209,25 +11130,25 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 27618 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-13.5 + pos: 87.5,-5.5 parent: 8364 - - uid: 27619 + - uid: 5094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-11.5 + pos: 87.5,-13.5 parent: 8364 - - uid: 27620 + - uid: 20798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-5.5 + pos: 87.5,-11.5 parent: 8364 - - uid: 27621 + - uid: 20799 components: - type: Transform rot: 1.5707963267948966 rad @@ -11269,9 +11190,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,-4.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12486 - type: DeviceLinkSource linkedPorts: 12486: @@ -11282,9 +11200,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 593 - type: DeviceLinkSource linkedPorts: 593: @@ -11294,9 +11209,6 @@ entities: - type: Transform pos: 82.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22633 - type: DeviceLinkSource linkedPorts: 22633: @@ -11306,9 +11218,6 @@ entities: - type: Transform pos: 30.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9436 - type: DeviceLinkSource linkedPorts: 9436: @@ -11318,9 +11227,6 @@ entities: - type: Transform pos: 47.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11652 - type: DeviceLinkSource linkedPorts: 11652: @@ -11330,9 +11236,6 @@ entities: - type: Transform pos: 47.5,21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11651 - type: DeviceLinkSource linkedPorts: 11651: @@ -11342,9 +11245,6 @@ entities: - type: Transform pos: -35.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4758 - type: DeviceLinkSource linkedPorts: 4758: @@ -11354,9 +11254,6 @@ entities: - type: Transform pos: 49.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 18669 - type: DeviceLinkSource linkedPorts: 18669: @@ -11366,9 +11263,6 @@ entities: - type: Transform pos: 81.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19986 - type: DeviceLinkSource linkedPorts: 19986: @@ -11378,9 +11272,6 @@ entities: - type: Transform pos: 81.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19985 - type: DeviceLinkSource linkedPorts: 19985: @@ -11390,9 +11281,6 @@ entities: - type: Transform pos: 61.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19857 - type: DeviceLinkSource linkedPorts: 19857: @@ -11402,9 +11290,6 @@ entities: - type: Transform pos: 89.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19988 - type: DeviceLinkSource linkedPorts: 19988: @@ -11414,9 +11299,6 @@ entities: - type: Transform pos: 80.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5626 - type: DeviceLinkSource linkedPorts: 5626: @@ -11433,9 +11315,6 @@ entities: linkedPorts: 655: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 655 - uid: 1110 components: - type: Transform @@ -11446,9 +11325,6 @@ entities: linkedPorts: 12466: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12466 - uid: 12469 components: - type: Transform @@ -11458,9 +11334,6 @@ entities: linkedPorts: 12468: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12468 - uid: 12470 components: - type: Transform @@ -11470,9 +11343,6 @@ entities: linkedPorts: 12467: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12467 - uid: 12486 components: - type: Transform @@ -11483,9 +11353,6 @@ entities: linkedPorts: 610: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 610 - proto: AirlockFreezer entities: - uid: 25720 @@ -11541,7 +11408,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -706.3356 + secondsUntilStateChange: -1003.90155 state: Opening - type: DeviceLinkSource lastSignals: @@ -11895,21 +11762,30 @@ entities: DockStatus: True - type: Physics canCollide: False - - type: DeviceLinkSink - links: - - 1495 - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 1727: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12644 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-26.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 12643: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 21828 components: - type: Transform @@ -14781,92 +14657,105 @@ entities: - type: Transform pos: 56.5,-79.5 parent: 8364 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 556 components: - type: Transform - pos: -0.5,-0.5 - parent: 11906 + rot: 1.5707963267948966 rad + pos: 87.5,-11.5 + parent: 8364 - uid: 635 components: - type: Transform - pos: -77.5,7.5 + rot: 1.5707963267948966 rad + pos: 87.5,-3.5 parent: 8364 - - uid: 682 + - uid: 12475 components: - type: Transform - pos: -70.5,7.5 + rot: -1.5707963267948966 rad + pos: -22.5,24.5 parent: 8364 - - uid: 5094 + - uid: 12478 components: - type: Transform - pos: -21.5,24.5 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 parent: 8364 - - uid: 7209 + - uid: 12679 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: -70.5,-2.5 parent: 8364 - - uid: 9934 + - uid: 13779 components: - type: Transform - pos: 36.5,1.5 + rot: -1.5707963267948966 rad + pos: -67.5,-9.5 parent: 8364 - - uid: 12475 + - uid: 17910 components: - type: Transform - pos: -70.5,-2.5 + rot: 3.141592653589793 rad + pos: -66.5,21.5 parent: 8364 - - uid: 12478 + - uid: 18039 components: - type: Transform - pos: -77.5,-2.5 + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 parent: 8364 - - uid: 12679 + - uid: 20699 components: - type: Transform - pos: -66.5,-9.5 + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 parent: 8364 - - uid: 13399 + - uid: 20800 components: - type: Transform - pos: 41.5,-0.5 + rot: 1.5707963267948966 rad + pos: 87.5,-5.5 parent: 8364 - - uid: 13779 + - uid: 20801 components: - type: Transform - pos: -66.5,21.5 + rot: 1.5707963267948966 rad + pos: 87.5,-13.5 parent: 8364 - - uid: 17910 + - uid: 20825 components: - type: Transform - pos: -44.5,-28.5 + pos: -70.5,7.5 parent: 8364 - - uid: 18039 + - uid: 20854 components: - type: Transform - pos: -44.5,-30.5 + pos: -77.5,7.5 parent: 8364 - - uid: 27622 + - uid: 20855 components: - type: Transform - pos: 87.5,-3.5 - parent: 8364 - - uid: 27623 + pos: -0.5,-0.5 + parent: 11906 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7209 components: - type: Transform - pos: 87.5,-5.5 + pos: 36.5,-3.5 parent: 8364 - - uid: 27624 + - uid: 9934 components: - type: Transform - pos: 87.5,-11.5 + pos: 36.5,1.5 parent: 8364 - - uid: 27625 + - uid: 13399 components: - type: Transform - pos: 87.5,-13.5 + pos: 41.5,-0.5 parent: 8364 - proto: AtmosFixBlockerMarker entities: @@ -16015,9 +15904,6 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3807 - uid: 3568 components: - type: MetaData @@ -16030,25 +15916,16 @@ entities: - type: Transform pos: 15.5,-53.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3753 - uid: 3851 components: - type: Transform pos: -6.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 4704 components: - type: Transform pos: 3.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 4824 components: - type: MetaData @@ -16068,105 +15945,66 @@ entities: - type: Transform pos: 82.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5370 - uid: 5798 components: - type: Transform pos: 5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 9182 components: - type: Transform pos: 5.5,36.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19935 - uid: 9379 components: - type: Transform pos: 4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 10835 components: - type: Transform pos: -4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 11732 components: - type: Transform pos: -5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2638 - uid: 17676 components: - type: Transform pos: 19.5,-86.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 18326 components: - type: Transform pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 18327 components: - type: Transform pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 19078 components: - type: Transform pos: -10.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19080 components: - type: Transform pos: -11.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19090 components: - type: Transform pos: -12.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19994 components: - type: Transform @@ -16182,41 +16020,26 @@ entities: - type: Transform pos: 19.5,-83.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20134 components: - type: Transform pos: 19.5,-84.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20180 components: - type: Transform pos: 70.5,-39.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20181 components: - type: Transform pos: 70.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20182 components: - type: Transform pos: 70.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20518 components: - type: Transform @@ -16227,49 +16050,31 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3754 - uid: 26646 components: - type: Transform pos: 19.5,-85.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 26666 components: - type: Transform pos: -3.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26667 components: - type: Transform pos: -3.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26668 components: - type: Transform pos: 2.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - uid: 26669 components: - type: Transform pos: 2.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - proto: BlastDoorOpen entities: - uid: 3134 @@ -16278,107 +16083,68 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4212 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4494 components: - type: Transform pos: 7.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 4495 components: - type: Transform pos: 9.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 5898 components: - type: Transform pos: -10.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 5911 components: - type: Transform pos: -10.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6086 components: - type: Transform pos: -10.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6087 components: - type: Transform pos: 9.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6098 components: - type: Transform pos: 9.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6099 components: - type: Transform pos: 9.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6970 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 19930 components: - type: Transform pos: -4.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - uid: 19932 components: - type: Transform pos: -5.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - proto: BlockGameArcade entities: - uid: 1873 @@ -16433,7 +16199,7 @@ entities: - type: Transform pos: 60.576424,0.7512084 parent: 8364 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 11336 components: @@ -68722,7 +68488,7 @@ entities: - type: Transform pos: -46.493744,14.462048 parent: 8364 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 5116 components: @@ -70069,134 +69835,89 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 6226 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 7162 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7213 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7622 components: - type: Transform @@ -70209,9 +69930,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 9475 components: - type: Transform @@ -70230,72 +69948,48 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10804 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 11321 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 11325 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 20048 components: - type: Transform @@ -122989,9 +122683,6 @@ entities: - type: Transform pos: 71.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17552 - proto: MachineCentrifuge entities: - uid: 16828 @@ -133040,9 +132731,6 @@ entities: - type: Transform pos: -58.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - proto: ReinforcedPlasmaWindow entities: - uid: 3494 @@ -138552,33 +138240,21 @@ entities: - type: Transform pos: 43.5,1.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27608 - uid: 20192 components: - type: Transform pos: 52.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20193 components: - type: Transform pos: 53.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20194 components: - type: Transform pos: 54.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -138587,225 +138263,144 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1455 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-62.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 2941 components: - type: Transform pos: 20.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 3001 components: - type: Transform pos: 19.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 5223 components: - type: Transform pos: -7.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5241 components: - type: Transform pos: -5.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5590 components: - type: Transform pos: -12.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5591 components: - type: Transform pos: -12.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5592 components: - type: Transform pos: -12.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 8158 components: - type: Transform pos: 6.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 8606 components: - type: Transform pos: 3.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8607 components: - type: Transform pos: 3.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8614 components: - type: Transform pos: 2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8615 components: - type: Transform pos: 1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 9639 components: - type: Transform pos: -2.5,16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9640 components: - type: Transform pos: -2.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9641 components: - type: Transform pos: -2.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9642 components: - type: Transform pos: -5.5,18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5322 - uid: 14148 components: - type: Transform pos: 21.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15391 components: - type: Transform @@ -138817,9 +138412,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15426 components: - type: Transform @@ -138831,18 +138423,12 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17684 components: - type: Transform @@ -138853,146 +138439,92 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 18406 components: - type: Transform pos: -2.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 19022 components: - type: Transform pos: 23.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19023 components: - type: Transform pos: 23.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19024 components: - type: Transform pos: 23.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 22990 components: - type: Transform pos: -1.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 26786 components: - type: Transform pos: -5.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26787 components: - type: Transform pos: -4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26788 components: - type: Transform pos: -2.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26789 components: - type: Transform pos: -1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26790 components: - type: Transform pos: -0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26791 components: - type: Transform pos: 0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26792 components: - type: Transform pos: 1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26793 components: - type: Transform pos: 4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26794 components: - type: Transform pos: 3.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 27220 components: - type: Transform pos: 7.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 27221 components: - type: Transform pos: 8.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - proto: ShuttersRadiationOpen entities: - uid: 3788 @@ -139000,33 +138532,21 @@ entities: - type: Transform pos: 0.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3789 components: - type: Transform pos: 1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3868 components: - type: Transform pos: -2.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3875 components: - type: Transform pos: -1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - proto: ShuttersWindow entities: - uid: 1416 @@ -139043,161 +138563,101 @@ entities: - type: Transform pos: 18.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8645 components: - type: Transform pos: 17.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8646 components: - type: Transform pos: 16.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8647 components: - type: Transform pos: 15.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8648 components: - type: Transform pos: 14.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8649 components: - type: Transform pos: 13.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8650 components: - type: Transform pos: 12.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8775 components: - type: Transform pos: -10.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8776 components: - type: Transform pos: -9.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8777 components: - type: Transform pos: -8.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8778 components: - type: Transform pos: -6.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8779 components: - type: Transform pos: -5.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8780 components: - type: Transform pos: -4.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8781 components: - type: Transform pos: -2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8782 components: - type: Transform pos: -1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8783 components: - type: Transform pos: -0.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 10454 components: - type: Transform pos: 35.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10455 components: - type: Transform pos: 36.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10456 components: - type: Transform pos: 37.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10457 components: - type: Transform pos: 38.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 20837 components: - type: Transform @@ -139218,57 +138678,36 @@ entities: - type: Transform pos: 69.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20841 components: - type: Transform pos: 70.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20842 components: - type: Transform pos: 71.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20843 components: - type: Transform pos: 68.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20844 components: - type: Transform pos: 68.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20845 components: - type: Transform pos: 68.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20846 components: - type: Transform pos: 68.5,-28.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20847 components: - type: Transform @@ -139279,9 +138718,6 @@ entities: - type: Transform pos: 68.5,-30.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20849 components: - type: Transform @@ -139297,25 +138733,16 @@ entities: - type: Transform pos: 68.5,-33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20852 components: - type: Transform pos: 68.5,-34.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20853 components: - type: Transform pos: 68.5,-35.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -139921,7 +139348,7 @@ entities: - type: Transform pos: 4.5,34.5 parent: 8364 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 22926 components: @@ -139990,17 +139417,15 @@ entities: parent: 8364 - proto: SignChem entities: - - uid: 18609 + - uid: 8023 components: - type: Transform - pos: 23.5,-16.5 + pos: 18.5,-23.5 parent: 8364 -- proto: SignChemistry1 - entities: - - uid: 8023 + - uid: 18609 components: - type: Transform - pos: 18.5,-23.5 + pos: 23.5,-16.5 parent: 8364 - proto: SignCloning entities: @@ -140340,13 +139765,6 @@ entities: rot: 3.141592653589793 rad pos: 17.490667,-11.707433 parent: 8364 -- proto: SignDrones - entities: - - uid: 21495 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 8364 - proto: SignElectricalMed entities: - uid: 764 @@ -140495,7 +139913,7 @@ entities: - type: Transform pos: -8.5,-28.5 parent: 8364 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 13393 components: @@ -140572,6 +139990,13 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 8364 +- proto: SignMaterials + entities: + - uid: 21495 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 8364 - proto: SignMedical entities: - uid: 1754 @@ -140768,15 +140193,13 @@ entities: - type: Transform pos: 64.5,-25.5 parent: 8364 -- proto: SignScience1 +- proto: SignScience entities: - uid: 11319 components: - type: Transform pos: 72.5,-15.5 parent: 8364 -- proto: SignScience2 - entities: - uid: 21761 components: - type: Transform @@ -141107,17 +140530,15 @@ entities: parent: 8364 - proto: SignToxins entities: - - uid: 5296 + - uid: 5295 components: - type: Transform - pos: 64.5,-34.5 + pos: 69.5,-43.5 parent: 8364 -- proto: SignToxins2 - entities: - - uid: 5295 + - uid: 5296 components: - type: Transform - pos: 69.5,-43.5 + pos: 64.5,-34.5 parent: 8364 - proto: SignVirology entities: @@ -170643,9 +170064,6 @@ entities: - type: Transform pos: -1.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 8743 - uid: 8625 components: - type: MetaData @@ -170653,9 +170071,6 @@ entities: - type: Transform pos: -5.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 25829 - uid: 8626 components: - type: MetaData @@ -170663,9 +170078,6 @@ entities: - type: Transform pos: -9.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26575 - uid: 8973 components: - type: Transform diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 01a2cdd798c0..a8c3becaf3d0 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -54,39 +54,39 @@ entities: chunks: 0,0: ind: 0,0 - tiles: bAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACbAAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbAAAAAADbAAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAADWQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADTAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAABYAAAAAAATAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADTAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAATAAAAAAAYAAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC + tiles: HQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAYAAAAAAATAAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACYAAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACTAAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADTAAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACWQAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACWQAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: ZAAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAHQAAAAACHQAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAACeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHgAAAAACHgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHgAAAAADHgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAABWQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHgAAAAABHgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAYQAAAAAAYQAAAAADeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADTAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAATAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAJAAAAAACJAAAAAADOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAJAAAAAABJAAAAAACOgAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAYAAAAAAATAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACIgAAAAABJAAAAAACJAAAAAADJAAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAJAAAAAACJAAAAAADJAAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAJAAAAAADJAAAAAAAeQAAAAAA + tiles: IgAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACIgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABTAAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAWQAAAAABJAAAAAACJAAAAAAAJAAAAAADOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAZAAAAAABJAAAAAABJAAAAAADJAAAAAABOgAAAAAAJAAAAAABJAAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABTAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC + tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD + tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD version: 6 0,1: ind: 0,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC + tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAYAAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: YAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAZAAAAAABWQAAAAABYAAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADZAAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAZAAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAZAAAAAABWQAAAAABZAAAAAAAZAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,1: ind: -2,1 @@ -106,15 +106,15 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAACYQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAABZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAAAYQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAACZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADYAAAAAAAWQAAAAADYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD + tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAC + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -122,15 +122,15 @@ entities: version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 2,1: ind: 2,1 - tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADLQAAAAAALQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACLQAAAAAALQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA + tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA version: 6 2,2: ind: 2,2 @@ -142,7 +142,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABLQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABWQAAAAACZAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACYAAAAAAAZAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAALQAAAAAALQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLQAAAAAALQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -150,19 +150,19 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAA + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAB version: 6 3,-1: ind: 3,-1 @@ -174,7 +174,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADYAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA version: 6 -3,1: ind: -3,1 @@ -254,2845 +254,3037 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 1287: 25.881918,34.192333 - 1290: 36.05116,32.59352 + 1179: 25.881918,34.192333 + 1182: 36.05116,32.59352 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 1288: 31.894993,33.661083 - 1300: 25.780825,32.109146 + 1180: 31.894993,33.661083 + 1192: 25.780825,32.109146 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 1289: 33.992474,34.93727 + 1181: 33.992474,34.93727 - node: color: '#A46106FF' id: BotLeft decals: - 1044: 22,-28 - 1045: 21,-28 - 1046: 20,-28 - 1047: 20,-27 - 1048: 21,-27 - 1049: 22,-27 - 1050: 15,-22 - 1051: 15,-23 - 1052: 15,-24 - 1053: 15,-25 - 1054: 14,-25 - 1055: 14,-24 - 1056: 14,-23 - 1057: 14,-22 - 1058: 18,-28 - 1059: 18,-27 - 1060: 17,-27 - 1061: 17,-28 - 1062: 16,-27 - 1063: 16,-28 + 936: 22,-28 + 937: 21,-28 + 938: 20,-28 + 939: 20,-27 + 940: 21,-27 + 941: 22,-27 + 942: 15,-22 + 943: 15,-23 + 944: 15,-24 + 945: 15,-25 + 946: 14,-25 + 947: 14,-24 + 948: 14,-23 + 949: 14,-22 + 950: 18,-28 + 951: 18,-27 + 952: 17,-27 + 953: 17,-28 + 954: 16,-27 + 955: 16,-28 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1363: 6,-22 - 1364: 6,-21 - 1365: 6,-20 - 1366: 5,-20 - 1367: 4,-20 - 1368: -3,17 - 1369: -2,17 - 1370: -1,17 - 1371: 0,17 + 1244: 6,-22 + 1245: 6,-21 + 1246: 6,-20 + 1247: 5,-20 + 1248: 4,-20 + 1249: -3,17 + 1250: -2,17 + 1251: -1,17 + 1252: 0,17 - node: - color: '#EFB341FF' - id: BotRight + color: '#FFFFFFFF' + id: Box decals: - 967: 26,-7 - 968: 26,-6 - 969: 26,-5 - 970: 26,-4 - 971: 27,-4 - 972: 27,-5 - 973: 27,-6 - 974: 27,-7 - 975: 28,-7 - 976: 28,-6 - 977: 28,-5 - 978: 28,-4 + 1381: -17,-13 + 1382: -17,-15 + 1383: -17,-11 + 1384: -17,-9 - node: color: '#52B4E9FF' id: BrickCornerOverlayNE decals: - 1462: -23,24 + 1343: -23,24 - node: color: '#52B4E9FF' id: BrickCornerOverlayNW decals: - 1399: -27,24 + 1280: -27,24 - node: color: '#52B4E9FF' id: BrickCornerOverlaySE decals: - 1400: -23,20 + 1281: -23,20 - node: color: '#52B4E9FF' id: BrickCornerOverlaySW decals: - 1401: -27,20 + 1282: -27,20 - node: color: '#52B4E9FF' id: BrickLineOverlayE decals: - 1411: -23,23 - 1412: -23,22 - 1413: -23,21 + 1292: -23,23 + 1293: -23,22 + 1294: -23,21 - node: color: '#52B4E9FF' id: BrickLineOverlayN decals: - 1408: -26,24 - 1409: -25,24 - 1410: -24,24 + 1289: -26,24 + 1290: -25,24 + 1291: -24,24 - node: color: '#52B4E9FF' id: BrickLineOverlayS decals: - 1402: -26,20 - 1403: -25,20 - 1404: -24,20 + 1283: -26,20 + 1284: -25,20 + 1285: -24,20 - node: color: '#52B4E9FF' id: BrickLineOverlayW decals: - 1405: -27,21 - 1406: -27,22 - 1407: -27,23 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 890: -17,-9 - 905: -17,-13 - 906: -17,-11 - 907: -17,-15 + 1286: -27,21 + 1287: -27,22 + 1288: -27,23 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 115: -4,56 - 116: -3,55 - 124: -6,46 + 111: -4,56 + 112: -3,55 + 120: -6,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 113: -11,55 - 114: -10,56 - 123: -8,46 + 109: -11,55 + 110: -10,56 + 119: -8,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 109: -4,48 - 110: -3,49 - 121: -6,44 + 105: -4,48 + 106: -3,49 + 117: -6,44 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 111: -10,48 - 112: -11,49 - 122: -8,44 + 107: -10,48 + 108: -11,49 + 118: -8,44 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 771: -10,-3 + 691: -10,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 768: -12,-3 + 688: -12,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 118: -4,55 + 114: -4,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 117: -10,55 + 113: -10,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 119: -4,49 + 115: -4,49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 120: -10,49 + 116: -10,49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 87: -3,54 - 88: -3,53 - 89: -3,52 - 90: -3,51 - 91: -3,50 - 125: -6,45 + 83: -3,54 + 84: -3,53 + 85: -3,52 + 86: -3,51 + 87: -3,50 + 121: -6,45 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 92: -8,56 - 93: -9,56 - 94: -7,56 - 95: -5,56 - 96: -5,56 - 97: -6,56 - 128: -7,46 - 770: -11,-3 + 88: -8,56 + 89: -9,56 + 90: -7,56 + 91: -5,56 + 92: -5,56 + 93: -6,56 + 124: -7,46 + 690: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 104: -9,48 - 105: -8,48 - 106: -7,48 - 107: -6,48 - 108: -5,48 - 127: -7,44 - 769: -11,-3 + 100: -9,48 + 101: -8,48 + 102: -7,48 + 103: -6,48 + 104: -5,48 + 123: -7,44 + 689: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 98: -11,54 - 99: -11,53 - 100: -11,53 - 101: -11,51 - 102: -11,52 - 103: -11,50 - 126: -8,45 + 94: -11,54 + 95: -11,53 + 96: -11,53 + 97: -11,51 + 98: -11,52 + 99: -11,50 + 122: -8,45 - node: color: '#334E6DFF' id: BrickTileSteelBox decals: - 196: 2,49 - 197: 3,49 + 192: 2,49 + 193: 3,49 - node: color: '#52B4E9FF' id: BrickTileSteelBox decals: - 193: -1,49 - 194: 0,49 - 195: 1,49 + 189: -1,49 + 190: 0,49 + 191: 1,49 - node: color: '#9FED58FF' id: BrickTileSteelBox decals: - 187: -1,53 - 188: 0,53 + 183: -1,53 + 184: 0,53 - node: color: '#A46106FF' id: BrickTileSteelBox decals: - 185: -1,55 - 186: 0,55 + 181: -1,55 + 182: 0,55 - node: color: '#B7FF8FFF' id: BrickTileSteelBox decals: - 189: 2,55 - 190: 3,55 + 185: 2,55 + 186: 3,55 - node: color: '#D381C9FF' id: BrickTileSteelBox decals: - 191: -1,51 - 192: 0,51 + 187: -1,51 + 188: 0,51 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 181: 2,51 - 182: 3,51 + 177: 2,51 + 178: 3,51 - node: color: '#EFB341FF' id: BrickTileSteelBox decals: - 183: 2,53 - 184: 3,53 + 179: 2,53 + 180: 3,53 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 681: -19,16 - 682: -23,16 + 633: -19,16 + 634: -23,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 829: -21,-1 + 749: -21,-1 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNe + decals: + 1578: 25,25 + 1582: 25,28 + 1583: 33,28 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 490: 29,14 + 486: 29,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 746: 2,-5 - 747: -2,-5 - 1173: -14,-51 - 1180: -41,-18 + 666: 2,-5 + 667: -2,-5 + 1065: -14,-51 + 1072: -41,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 679: -27,16 - 680: -21,16 + 631: -27,16 + 632: -21,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 830: -23,-1 + 750: -23,-1 + 1386: -21,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNw + decals: + 1574: 27,28 + 1575: 24,28 + 1579: 24,25 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 489: 25,14 + 485: 25,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 748: 0,-5 - 749: 4,-5 - 1174: -16,-51 - 1179: -44,-18 + 668: 0,-5 + 669: 4,-5 + 1066: -16,-51 + 1071: -44,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 677: -19,13 - 678: -23,13 + 629: -19,13 + 630: -23,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 832: -21,-4 - 901: -15,-19 + 752: -21,-4 + 811: -15,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSe + decals: + 1576: 25,24 + 1580: 25,27 + 1584: 33,25 + 1587: 30,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 492: 29,12 + 488: 29,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 1178: -14,-52 - 1182: -41,-21 + 1070: -14,-52 + 1074: -41,-21 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 683: -27,13 - 684: -21,13 + 635: -27,13 + 636: -21,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 831: -23,-4 - 900: -21,-19 + 751: -23,-4 + 810: -21,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSw + decals: + 1577: 24,24 + 1581: 24,27 + 1588: 27,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 491: 25,12 + 487: 25,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 1177: -16,-52 - 1181: -44,-21 + 1069: -16,-52 + 1073: -44,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 757: 2,-3 + 677: 2,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 758: 4,-3 - 759: 0,-3 + 678: 4,-3 + 679: 0,-3 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerNw + decals: + 1389: -18,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelInnerSe + decals: + 1586: 30,25 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 661: -19,14 - 662: -19,15 - 666: -23,15 - 667: -23,14 + 613: -19,14 + 614: -19,15 + 618: -23,15 + 619: -23,14 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 823: -21,-2 - 824: -21,-3 - 891: -15,-17 - 892: -15,-18 - 1327: -15,-15 - 1328: -15,-14 - 1329: -15,-13 - 1330: -15,-11 - 1331: -15,-10 - 1332: -15,-9 + 743: -21,-2 + 744: -21,-3 + 804: -15,-18 + 1215: -15,-15 + 1216: -15,-14 + 1217: -15,-13 + 1218: -15,-11 + 1219: -15,-10 + 1220: -15,-9 + 1390: -15,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineE + decals: + 1569: 33,27 + 1570: 33,26 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 484: 29,13 + 480: 29,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 755: -2,-6 - 756: 2,-6 - 1185: -41,-19 - 1186: -41,-20 + 675: -2,-6 + 676: 2,-6 + 1077: -41,-19 + 1078: -41,-20 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 663: -24,16 - 664: -25,16 - 665: -26,16 - 676: -20,16 + 615: -24,16 + 616: -25,16 + 617: -26,16 + 628: -20,16 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 825: -22,-1 + 745: -22,-1 + 1387: -20,-17 + 1388: -19,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineN + decals: + 1564: 28,28 + 1565: 29,28 + 1566: 31,28 + 1567: 32,28 + 1568: 30,28 + 1594: 26,25 + 1595: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 485: 28,14 - 486: 27,14 - 487: 26,14 + 481: 28,14 + 482: 27,14 + 483: 26,14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 215: -4,26 - 750: -3,-5 - 751: 1,-5 - 752: 5,-5 - 760: 1,-3 - 763: 5,-3 - 1175: -15,-51 - 1183: -43,-18 - 1184: -42,-18 + 211: -4,26 + 670: -3,-5 + 671: 1,-5 + 672: 5,-5 + 680: 1,-3 + 683: 5,-3 + 1067: -15,-51 + 1075: -43,-18 + 1076: -42,-18 - node: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 672: -26,13 - 673: -25,13 - 674: -24,13 - 675: -20,13 + 624: -26,13 + 625: -25,13 + 626: -24,13 + 627: -20,13 - node: color: '#D381C9FF' id: BrickTileSteelLineS decals: - 826: -22,-4 - 893: -17,-19 - 894: -16,-19 - 895: -18,-19 - 896: -19,-19 - 897: -20,-19 + 746: -22,-4 + 805: -17,-19 + 806: -16,-19 + 807: -18,-19 + 808: -19,-19 + 809: -20,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineS + decals: + 1571: 31,25 + 1572: 29,24 + 1573: 28,24 + 1585: 32,25 + 1592: 26,25 + 1593: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 481: 28,12 - 482: 27,12 - 483: 26,12 + 477: 28,12 + 478: 27,12 + 479: 26,12 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 761: 1,-3 - 762: 5,-3 - 1176: -15,-52 - 1189: -43,-21 - 1190: -42,-21 - 1374: -3,-3 - 1375: -2,-3 - 1376: -1,-3 + 681: 1,-3 + 682: 5,-3 + 1068: -15,-52 + 1081: -43,-21 + 1082: -42,-21 + 1255: -3,-3 + 1256: -2,-3 + 1257: -1,-3 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 668: -27,15 - 669: -27,14 - 670: -21,15 - 671: -21,14 + 620: -27,15 + 621: -27,14 + 622: -21,15 + 623: -21,14 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 827: -23,-3 - 828: -23,-2 - 898: -21,-18 - 899: -21,-17 - 1333: -18,-15 - 1334: -18,-14 - 1335: -18,-13 - 1336: -18,-11 - 1337: -18,-10 - 1338: -18,-9 - 1340: -18,-12 - 1341: -18,-16 + 747: -23,-3 + 748: -23,-2 + 1221: -18,-15 + 1222: -18,-14 + 1223: -18,-13 + 1224: -18,-11 + 1225: -18,-10 + 1226: -18,-9 + 1385: -21,-18 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineW + decals: + 1589: 27,25 + 1590: 27,26 + 1591: 27,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 488: 25,13 + 484: 25,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 214: 2,28 - 753: 4,-6 - 754: 0,-6 - 1187: -44,-19 - 1188: -44,-20 + 210: 2,28 + 673: 4,-6 + 674: 0,-6 + 1079: -44,-19 + 1080: -44,-20 - node: color: '#EFB341FF' id: BrickTileWhiteBox decals: - 1039: 19,-15 + 931: 19,-15 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 710: -9,6 + 662: -9,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNe decals: - 1430: -12,11 - 1440: -16,16 - 1464: -12,8 + 1311: -12,11 + 1321: -16,16 + 1345: -12,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNe decals: - 1234: 46,28 - 1257: 43,27 + 1126: 46,28 + 1149: 43,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNe decals: - 640: -11,21 - 643: -11,19 + 592: -11,21 + 595: -11,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 1096: 11,-18 + 988: 11,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 494: 29,18 + 490: 29,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 1027: 20,-14 - 1043: 21,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 741: 4,2 + 919: 20,-14 + 935: 21,-6 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 707: -10,6 + 659: -10,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNw decals: - 1439: -17,16 - 1455: -27,11 - 1463: -22,8 + 1320: -17,16 + 1336: -27,11 + 1344: -22,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNw decals: - 1235: 39,28 - 1256: 42,27 + 1127: 39,28 + 1148: 42,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNw decals: - 638: -12,21 - 642: -12,19 + 590: -12,21 + 594: -12,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 1161: 8,-18 + 1053: 8,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 493: 27,18 + 489: 27,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 1028: 16,-14 - 1042: 20,-6 + 920: 16,-14 + 934: 20,-6 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerNw decals: - 738: 1,2 + 1369: 11,6 + 1370: 14,6 + 1371: 17,6 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 1230: 44,33 + 1122: 44,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 708: -9,5 + 660: -9,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSe decals: - 1426: -12,5 - 1474: -12,9 + 1307: -12,5 + 1355: -12,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSe decals: - 1252: 46,25 - 1255: 43,26 + 1144: 46,25 + 1147: 43,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSe decals: - 639: -11,18 - 641: -11,20 + 591: -11,18 + 593: -11,20 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 1095: 11,-24 + 987: 11,-24 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 495: 29,16 + 491: 29,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 1029: 20,-16 - 1040: 21,-7 + 921: 20,-16 + 932: 21,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSe decals: - 739: 4,1 + 1372: 12,5 + 1373: 15,5 + 1374: 18,5 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 1231: 41,33 + 1123: 41,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 709: -10,5 + 661: -10,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSw decals: - 1416: -22,5 - 1456: -27,9 + 1297: -22,5 + 1337: -27,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSw decals: - 1253: 39,25 - 1254: 42,26 + 1145: 39,25 + 1146: 42,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSw decals: - 637: -12,18 - 644: -12,20 + 589: -12,18 + 596: -12,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 496: 27,16 + 492: 27,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 1030: 16,-16 - 1041: 20,-7 + 922: 16,-16 + 933: 20,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSw decals: - 740: 1,1 + 1366: 11,5 + 1367: 14,5 + 1368: 17,5 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNe decals: - 1434: -16,11 + 1315: -16,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 158: -2,52 + 154: -2,52 - node: color: '#BDFF8593' id: BrickTileWhiteInnerNe decals: - 175: 1,54 + 171: 1,54 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 149: 1,50 + 145: 1,50 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 171: 1,52 + 167: 1,52 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1169: -5,-25 + 1061: -5,-25 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNw decals: - 1445: -17,11 + 1326: -17,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 165: 1,52 + 161: 1,52 - node: color: '#A46106FF' id: BrickTileWhiteInnerNw decals: - 180: 1,54 - 1160: 8,-19 + 176: 1,54 + 1052: 8,-19 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 157: 1,50 + 153: 1,50 + - node: + color: '#F9801D7F' + id: BrickTileWhiteInnerNw + decals: + 1378: 12,6 + 1379: 15,6 + 1380: 18,6 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1312: -3,-25 + 1204: -3,-25 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 151: -2,52 + 147: -2,52 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 148: 1,52 + 144: 1,52 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 172: 1,54 + 168: 1,54 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 164: 1,54 + 160: 1,54 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 154: 1,52 + 150: 1,52 - node: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 1229: 44,34 + 1121: 44,34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineE decals: - 1313: 9,-2 + 1205: 9,-2 - node: color: '#96DAFFFF' id: BrickTileWhiteLineE decals: - 1427: -12,6 - 1428: -12,7 - 1429: -12,10 - 1435: -16,12 - 1436: -16,13 - 1437: -16,14 - 1438: -16,15 + 1308: -12,6 + 1309: -12,7 + 1310: -12,10 + 1316: -16,12 + 1317: -16,13 + 1318: -16,14 + 1319: -16,15 - node: color: '#9D9D97FF' id: BrickTileWhiteLineE decals: - 1242: 46,27 - 1243: 46,26 + 1134: 46,27 + 1135: 46,26 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 1087: 11,-19 - 1088: 11,-20 - 1089: 11,-21 - 1090: 11,-22 - 1091: 11,-23 - 1159: 7,-18 + 979: 11,-19 + 980: 11,-20 + 981: 11,-21 + 982: 11,-22 + 983: 11,-23 + 1051: 7,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineE decals: - 176: 1,55 + 172: 1,55 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 147: 1,51 - 499: 29,17 + 143: 1,51 + 495: 29,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 166: 1,53 - 1037: 20,-15 + 162: 1,53 + 929: 20,-15 + - node: + color: '#F9801D7F' + id: BrickTileWhiteLineE + decals: + 1375: 18,6 + 1376: 15,6 + 1377: 12,6 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 1537: -26,7 + 1538: -25,7 - node: color: '#96DAFFFF' id: BrickTileWhiteLineN decals: - 1431: -13,11 - 1432: -14,11 - 1433: -15,11 - 1446: -18,11 - 1447: -19,11 - 1448: -20,11 - 1449: -21,11 - 1450: -22,11 - 1451: -23,11 - 1452: -24,11 - 1453: -25,11 - 1454: -26,11 - 1465: -21,8 - 1466: -20,8 - 1467: -19,8 - 1468: -18,8 - 1469: -17,8 - 1470: -16,8 - 1471: -15,8 - 1472: -14,8 - 1473: -13,8 + 1312: -13,11 + 1313: -14,11 + 1314: -15,11 + 1327: -18,11 + 1328: -19,11 + 1329: -20,11 + 1330: -21,11 + 1331: -22,11 + 1332: -23,11 + 1333: -24,11 + 1334: -25,11 + 1335: -26,11 + 1346: -21,8 + 1347: -20,8 + 1348: -19,8 + 1349: -18,8 + 1350: -17,8 + 1351: -16,8 + 1352: -15,8 + 1353: -14,8 + 1354: -13,8 - node: color: '#9D9D97FF' id: BrickTileWhiteLineN decals: - 1236: 40,28 - 1237: 41,28 - 1238: 42,28 - 1239: 43,28 - 1240: 44,28 - 1241: 45,28 + 1128: 40,28 + 1129: 41,28 + 1130: 42,28 + 1131: 43,28 + 1132: 44,28 + 1133: 45,28 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 159: -1,52 - 160: 0,52 + 155: -1,52 + 156: 0,52 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 177: -1,54 - 178: 0,54 - 1085: 9,-18 - 1086: 10,-18 + 173: -1,54 + 174: 0,54 + 977: 9,-18 + 978: 10,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineN decals: - 173: 2,54 - 174: 3,54 + 169: 2,54 + 170: 3,54 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 155: -1,50 - 156: 0,50 + 151: -1,50 + 152: 0,50 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 143: 2,50 - 144: 3,50 - 498: 28,18 + 139: 2,50 + 140: 3,50 + 494: 28,18 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 169: 2,52 - 170: 3,52 - 1031: 17,-14 - 1032: 18,-14 - 1033: 19,-14 + 165: 2,52 + 166: 3,52 + 923: 17,-14 + 924: 18,-14 + 925: 19,-14 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 742: 2,2 - 743: 3,2 - 764: 3,-1 - 765: 4,-1 - 1168: -4,-25 + 684: 3,-1 + 685: 4,-1 + 1060: -4,-25 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 141: 2,50 - 142: 3,50 - 1226: 42,33 - 1227: 43,33 + 137: 2,50 + 138: 3,50 + 1118: 42,33 + 1119: 43,33 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 138: -1,50 - 139: 0,50 - 140: 1,50 - 1262: -4,-34 + 134: -1,50 + 135: 0,50 + 136: 1,50 + 1154: -4,-34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineS decals: - 1318: 14,1 - 1319: 15,1 + 1210: 14,1 + 1211: 15,1 - node: color: '#96DAFFFF' id: BrickTileWhiteLineS decals: - 1417: -21,5 - 1418: -20,5 - 1419: -19,5 - 1420: -18,5 - 1421: -17,5 - 1422: -16,5 - 1423: -15,5 - 1424: -14,5 - 1425: -13,5 - 1458: -26,9 - 1459: -25,9 - 1460: -24,9 - 1461: -23,9 - 1475: -22,9 - 1476: -21,9 - 1477: -20,9 - 1478: -19,9 - 1479: -18,9 - 1480: -17,9 - 1481: -16,9 - 1482: -15,9 - 1483: -14,9 - 1484: -13,9 + 1298: -21,5 + 1299: -20,5 + 1300: -19,5 + 1301: -18,5 + 1302: -17,5 + 1303: -16,5 + 1304: -15,5 + 1305: -14,5 + 1306: -13,5 + 1339: -26,9 + 1340: -25,9 + 1341: -24,9 + 1342: -23,9 + 1356: -22,9 + 1357: -21,9 + 1358: -20,9 + 1359: -19,9 + 1360: -18,9 + 1361: -17,9 + 1362: -16,9 + 1363: -15,9 + 1364: -14,9 + 1365: -13,9 - node: color: '#9D9D97FF' id: BrickTileWhiteLineS decals: - 1244: 45,25 - 1245: 44,25 - 1246: 43,25 - 1247: 42,25 - 1248: 41,25 - 1249: 40,25 + 1136: 45,25 + 1137: 44,25 + 1138: 43,25 + 1139: 42,25 + 1140: 41,25 + 1141: 40,25 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 161: -1,54 - 162: 0,54 + 157: -1,54 + 158: 0,54 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 1092: 8,-24 - 1093: 9,-24 - 1094: 10,-24 - 1263: -3,-34 + 984: 8,-24 + 985: 9,-24 + 986: 10,-24 + 1155: -3,-34 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 152: -1,52 - 153: 0,52 - 1264: -5,-34 + 148: -1,52 + 149: 0,52 + 1156: -5,-34 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 145: 2,52 - 146: 3,52 - 497: 28,16 + 141: 2,52 + 142: 3,52 + 493: 28,16 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 167: 2,54 - 168: 3,54 - 1034: 17,-16 - 1035: 18,-16 - 1036: 19,-16 - 1261: -2,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 744: 2,1 - 745: 3,1 + 163: 2,54 + 164: 3,54 + 926: 17,-16 + 927: 18,-16 + 928: 19,-16 + 1153: -2,-34 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1258: -7,-32 + 1150: -7,-32 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 1228: 41,34 + 1120: 41,34 - node: color: '#70707093' id: BrickTileWhiteLineW decals: - 1260: -7,-34 + 1152: -7,-34 - node: color: '#96DAFFFF' id: BrickTileWhiteLineW decals: - 1414: -22,7 - 1415: -22,6 - 1441: -17,15 - 1442: -17,14 - 1443: -17,13 - 1444: -17,12 - 1457: -27,10 + 1295: -22,7 + 1296: -22,6 + 1322: -17,15 + 1323: -17,14 + 1324: -17,13 + 1325: -17,12 + 1338: -27,10 - node: color: '#9D9D97FF' id: BrickTileWhiteLineW decals: - 1250: 39,26 - 1251: 39,27 + 1142: 39,26 + 1143: 39,27 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 163: 1,53 + 159: 1,53 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 179: 1,55 + 175: 1,55 - node: color: '#C78B1993' id: BrickTileWhiteLineW decals: - 1259: -7,-33 + 1151: -7,-33 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 150: 1,51 + 146: 1,51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 500: 27,17 + 496: 27,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 1038: 16,-15 + 930: 16,-15 - node: color: '#FFFFFFFF' id: Busha1 decals: - 1283: 28.377537,33.036083 + 1175: 28.377537,33.036083 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1278: 22.922419,33.036083 - 1279: 19.880083,33.942333 + 1170: 22.922419,33.036083 + 1171: 19.880083,33.942333 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 1280: 18.98016,34.92671 - 1281: 19.38641,32.098583 - 1282: 24.355186,34.536083 + 1172: 18.98016,34.92671 + 1173: 19.38641,32.098583 + 1174: 24.355186,34.536083 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 1304: 34.975742,34.972504 + 1196: 34.975742,34.972504 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 1302: 28.499575,31.984146 - 1303: 36.95945,33.952896 + 1194: 28.499575,31.984146 + 1195: 36.95945,33.952896 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1301: 27.04645,31.937271 + 1193: 27.04645,31.937271 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1284: 31.565037,34.80171 - 1285: 32.45566,32.92671 - 1286: 29.877537,34.89546 + 1176: 31.565037,34.80171 + 1177: 32.45566,32.92671 + 1178: 29.877537,34.89546 - node: color: '#FFFFFFFF' id: Caution decals: - 913: -27,-6 - 1066: 11,-28 - 1067: 13,-28 - 1167: -41,16 + 817: -27,-6 + 958: 11,-28 + 959: 13,-28 + 1059: -41,16 - node: color: '#000000FF' id: CheckerNESW decals: - 711: 0,3 - 712: 1,3 - 713: 2,3 - 714: 3,3 - 715: 4,3 - 716: 5,3 - 717: 5,2 - 718: 0,2 - 719: 0,1 - 720: 5,1 - 721: 5,0 - 722: 4,0 - 723: 3,0 - 724: 2,0 - 725: 1,0 - 726: 0,0 - 727: 4,4 - 728: 3,4 - 729: 6,2 + 663: 4,4 + 664: 3,4 + 665: 6,2 - node: color: '#A4610696' id: CheckerNESW decals: - 1150: 6,-28 - 1151: 6,-27 - 1152: 6,-26 - 1153: 5,-26 - 1154: 5,-27 - 1155: 5,-28 - 1156: 4,-28 - 1157: 4,-27 - 1158: 4,-26 + 1042: 6,-28 + 1043: 6,-27 + 1044: 6,-26 + 1045: 5,-26 + 1046: 5,-27 + 1047: 5,-28 + 1048: 4,-28 + 1049: 4,-27 + 1050: 4,-26 - node: color: '#D381C996' id: CheckerNESW decals: - 872: -13,-7 - 873: -13,-6 - 874: -12,-6 - 875: -12,-7 + 792: -13,-7 + 793: -13,-6 + 794: -12,-6 + 795: -12,-7 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 379: 18,12 - 380: 18,13 - 381: 18,14 - 382: 18,15 - 383: 19,15 - 384: 19,14 - 385: 19,13 - 386: 19,12 - 387: 20,12 - 388: 20,13 - 389: 20,14 - 390: 20,15 - 391: 21,15 - 392: 21,14 - 393: 21,13 - 394: 21,12 - 395: 22,12 - 396: 22,13 - 397: 22,15 - 398: 22,14 - 399: 23,15 - 400: 23,14 - 401: 23,13 - 402: 23,12 - 403: 20,11 - 404: 21,11 - 561: 15,11 - 562: 14,12 - 563: 15,12 - 564: 16,12 - 565: 16,13 - 566: 15,13 - 567: 14,13 - 568: 14,14 - 569: 15,14 - 570: 16,14 - 571: 16,15 - 572: 15,15 - 573: 14,15 - 574: 13,14 - 575: 13,13 - 580: 10,13 - 581: 10,14 + 375: 18,12 + 376: 18,13 + 377: 18,14 + 378: 18,15 + 379: 19,15 + 380: 19,14 + 381: 19,13 + 382: 19,12 + 383: 20,12 + 384: 20,13 + 385: 20,14 + 386: 20,15 + 387: 21,15 + 388: 21,14 + 389: 21,13 + 390: 21,12 + 391: 22,12 + 392: 22,13 + 393: 22,15 + 394: 22,14 + 395: 23,15 + 396: 23,14 + 397: 23,13 + 398: 23,12 + 399: 20,11 + 400: 21,11 + 527: 15,11 + 528: 14,12 + 529: 15,12 + 530: 16,12 + 531: 16,13 + 532: 15,13 + 533: 14,13 + 534: 14,14 + 535: 15,14 + 536: 16,14 + 537: 16,15 + 538: 15,15 + 539: 14,15 + 540: 13,14 + 541: 13,13 + 546: 10,13 + 547: 10,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 625: -8,8 - 626: -9,8 - 627: -10,8 - 628: -10,9 - 629: -9,9 - 630: -8,9 - 631: -8,10 - 632: -9,10 - 633: -10,10 - 634: -10,11 - 635: -9,11 - 636: -8,11 + 577: -8,8 + 578: -9,8 + 579: -10,8 + 580: -10,9 + 581: -9,9 + 582: -8,9 + 583: -8,10 + 584: -9,10 + 585: -10,10 + 586: -10,11 + 587: -9,11 + 588: -8,11 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 559: 34,11 - 560: 35,11 - 598: 15,7 - 599: 18,7 - 600: 12,7 + 525: 34,11 + 526: 35,11 + 552: 15,7 + 553: 18,7 + 554: 12,7 - node: color: '#EF5C1F93' id: CheckerNWSE decals: - 517: 32,23 - 518: 33,23 + 513: 32,23 + 514: 33,23 - node: color: '#EFB34196' id: CheckerNWSE decals: - 940: 17,-5 - 941: 16,-5 - 942: 15,-5 + 844: 17,-5 + 845: 16,-5 + 846: 15,-5 - node: color: '#FFFFFFFF' id: Delivery decals: - 911: -21,-14 - 912: -21,-10 - 1191: -6,52 - 1192: -7,53 - 1193: -8,52 - 1194: -7,51 - 1309: 11,27 - 1310: 12,27 - 1311: 13,27 + 815: -21,-14 + 816: -21,-10 + 1083: -6,52 + 1084: -7,53 + 1085: -8,52 + 1086: -7,51 + 1201: 11,27 + 1202: 12,27 + 1203: 13,27 + 1405: 0,3 - node: - color: '#000000FF' - id: DiagonalCheckerAOverlay + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1535: -6,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1407: -42,15 + 1408: -40,9 + 1409: -42,4 + 1410: -37,1 + 1430: -7,14 + 1431: -1,14 + 1432: 4,14 + 1433: 7,17 + 1439: -16,-6 + 1440: -18,-6 + 1441: -19,-2 + 1442: -16,-2 + 1461: 0,-15 + 1462: 4,-22 + 1478: 0,-34 + 1479: 2,-30 + 1483: 11,-28 + 1536: -27,10 + 1539: 18,8 + 1540: 11,5 + 1541: 11,6 + 1542: 12,6 + 1543: 12,5 + 1544: 14,6 + 1545: 15,6 + 1546: 15,5 + 1547: 17,6 + 1548: 17,5 + 1549: 18,6 + 1550: 18,5 + 1551: 21,7 + 1552: 20,14 + 1625: 39,28 + 1626: 39,26 + 1627: 44,27 + 1628: 45,25 + 1643: 0,24 + 1644: 4,24 + 1645: 3,21 + 1646: -1,30 + 1647: -6,28 + 1648: 0,28 + 1649: -5,30 + 1655: 1,1 + 1656: 4,3 + 1657: 4,0 + 1658: -3,2 + 1662: -24,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1411: -42,6 + 1412: -42,9 + 1413: -33,0 + 1416: -32,3 + 1417: -18,1 + 1418: -10,3 + 1419: -7,1 + 1427: -10,11 + 1428: -10,8 + 1429: -7,6 + 1434: -19,2 + 1435: -19,1 + 1436: -11,1 + 1437: -14,3 + 1438: -13,-4 + 1480: 19,-23 + 1481: 22,-26 + 1482: 18,-28 + 1484: 9,-27 + 1485: 13,-22 + 1486: 13,-23 + 1502: 8,5 + 1503: 9,10 + 1504: 9,7 + 1505: 9,3 + 1506: 8,10 + 1525: -5,10 + 1526: -8,13 + 1527: -7,13 + 1528: 2,15 + 1529: 7,16 + 1530: 8,14 + 1531: 4,8 + 1532: -1,9 + 1533: -2,9 + 1534: -2,8 + 1596: 22,-7 + 1597: 26,-9 + 1598: 18,-11 + 1599: 24,-12 + 1600: 28,-12 + 1601: 32,-18 + 1602: 31,-17 + 1603: 31,-18 + 1604: 32,-11 + 1605: 18,-15 + 1606: 12,-12 + 1607: 14,-11 + 1608: -5,-22 + 1609: -5,-23 + 1659: -27,23 + 1660: -24,21 + 1661: -23,20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight decals: - 730: 2,2 - 731: 3,1 - 732: 1,1 - 733: 4,2 - 734: 2,1 - 735: 1,2 - 736: 3,2 - 737: 4,1 + 1414: -30,3 + 1415: -24,1 + 1420: -17,9 + 1421: -12,6 + 1423: -21,10 + 1443: -27,-6 + 1444: -28,-7 + 1445: -26,-7 + 1446: -22,-7 + 1447: -16,-10 + 1451: -13,-14 + 1452: -12,-16 + 1453: -6,-15 + 1454: -13,-10 + 1455: -12,-11 + 1456: -9,-8 + 1457: -6,-9 + 1463: 0,-17 + 1464: 2,-23 + 1465: -6,-25 + 1466: -13,-26 + 1474: -3,-29 + 1475: -4,-34 + 1476: 2,-34 + 1477: 0,-30 + 1487: 8,-19 + 1488: 10,-22 + 1489: 9,-24 + 1490: 4,-21 + 1491: 2,-14 + 1492: 8,-10 + 1493: 7,-4 + 1494: 9,-6 + 1495: 8,-8 + 1496: 12,-6 + 1497: 8,-2 + 1507: 8,8 + 1508: 6,3 + 1509: 9,6 + 1510: 8,3 + 1511: 7,5 + 1512: 8,13 + 1513: 3,16 + 1514: 2,15 + 1515: -3,15 + 1516: -5,13 + 1517: -5,16 + 1518: -6,10 + 1519: -5,7 + 1520: -7,6 + 1521: -6,9 + 1522: -5,3 + 1523: -6,2 + 1524: -7,2 + 1553: 19,13 + 1554: 19,14 + 1555: 23,9 + 1556: 14,10 + 1557: 12,14 + 1558: 25,8 + 1559: 29,10 + 1560: 32,11 + 1561: 32,18 + 1562: 32,21 + 1563: 28,26 + 1610: 3,-5 + 1611: -2,-4 + 1612: 3,-2 + 1613: 5,-4 + 1614: 13,-2 + 1615: 13,3 + 1616: 22,2 + 1617: 27,2 + 1618: 31,3 + 1619: 34,1 + 1620: 37,2 + 1621: 46,4 + 1622: 46,8 + 1623: 45,21 + 1624: 44,22 + 1650: -3,28 + 1651: -17,20 + 1652: -14,18 + 1653: -17,14 + 1654: -20,6 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1406: -26,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1422: -27,9 + 1424: -22,5 + 1425: -17,16 + 1426: -12,11 + 1448: -15,-14 + 1449: -17,-19 + 1450: -21,-18 + 1458: 0,-9 + 1459: -2,-10 + 1460: -7,-8 + 1467: -14,-25 + 1468: -6,-27 + 1469: -18,-28 + 1470: -16,-28 + 1471: -18,-28 + 1472: -18,-28 + 1473: -20,-25 + 1498: 8,1 + 1499: 8,-3 + 1500: 6,-5 + 1501: 12,-7 + 1629: 42,30 + 1630: 44,28 + 1631: 40,26 + 1632: 46,14 + 1633: 46,10 + 1634: 44,7 + 1635: 45,2 + 1636: 39,3 + 1637: 36,1 + 1638: 33,3 + 1639: 29,1 + 1640: 25,2 + 1641: 15,1 + 1642: 10,1 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 306: -7,29 - 307: -13,30 - 308: -16,30 - 319: 4,20 - 320: 4,17 + 302: -7,29 + 303: -13,30 + 304: -16,30 + 315: 4,20 + 316: 4,17 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 480: 22,4 + 476: 22,4 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 501: 30,13 - 502: 30,17 - 507: 32,19 - 508: 33,19 + 497: 30,13 + 498: 30,17 + 503: 32,19 + 504: 33,19 - node: color: '#EF5C1F93' id: FullTileOverlayGreyscale decals: - 511: 32,22 - 512: 33,22 - 513: 32,24 - 514: 33,24 - 533: 26,25 - 534: 26,27 + 507: 32,22 + 508: 33,22 + 509: 32,24 + 510: 33,24 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1273: 25.518755,33.161083 - 1274: 28.102278,34.536083 - 1275: 30.90701,33.067333 + 1165: 25.518755,33.161083 + 1166: 28.102278,34.536083 + 1167: 30.90701,33.067333 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1276: 33.051407,34.442333 - 1277: 35.00453,33.848583 + 1168: 33.051407,34.442333 + 1169: 35.00453,33.848583 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1272: 22.28438,34.23921 + 1164: 22.28438,34.23921 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1298: 28.9527,33.984146 - 1299: 26.85895,32.952896 + 1190: 28.9527,33.984146 + 1191: 26.85895,32.952896 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1297: 21.980526,32.077896 + 1189: 21.980526,32.077896 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1294: 23.027401,35.28102 - 1295: 24.996151,35.327896 - 1296: 23.902401,32.12477 + 1186: 23.027401,35.28102 + 1187: 24.996151,35.327896 + 1188: 23.902401,32.12477 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1291: 20.983843,34.62477 - 1292: 19.968218,33.077896 - 1293: 23.34307,34.234146 + 1183: 20.983843,34.62477 + 1184: 19.968218,33.077896 + 1185: 23.34307,34.234146 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale decals: - 1347: 32,-17 + 1228: 32,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 303: -11,31 - 304: -10,31 - 305: -9,31 - 317: 4,19 - 321: 4,16 - 322: 3,16 - 323: 5,16 - 340: 2,25 - 341: 3,25 - 342: 4,25 - 343: -2,32 - 344: -3,32 - 345: 0,31 - 346: -5,31 - 370: -3,17 - 371: -2,17 - 372: -1,17 - 373: 0,17 - 374: 1,17 + 299: -11,31 + 300: -10,31 + 301: -9,31 + 313: 4,19 + 317: 4,16 + 318: 3,16 + 319: 5,16 + 336: 2,25 + 337: 3,25 + 338: 4,25 + 339: -2,32 + 340: -3,32 + 341: 0,31 + 342: -5,31 + 366: -3,17 + 367: -2,17 + 368: -1,17 + 369: 0,17 + 370: 1,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 467: 21,7 - 468: 22,7 - 471: 22,3 - 649: -17,21 - 650: -16,21 - 651: -15,21 - 652: -14,21 + 463: 21,7 + 464: 22,7 + 467: 22,3 + 601: -17,21 + 602: -16,21 + 603: -15,21 + 604: -14,21 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 37: 3,-8 + 33: 3,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 778: -11,-2 - 779: -10,-2 - 833: -18,-1 - 834: -17,-1 - 835: -16,-1 + 698: -11,-2 + 699: -10,-2 + 753: -18,-1 + 754: -17,-1 + 755: -16,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 466: 32,18 - 554: 37,13 + 462: 32,18 + 520: 37,13 - node: color: '#EF5C1F93' id: HalfTileOverlayGreyscale decals: - 509: 32,21 - 510: 33,21 - 523: 28,28 - 524: 29,28 - 525: 30,28 - 526: 31,28 - 527: 32,28 + 505: 32,21 + 506: 33,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 1012: 12,-11 - 1013: 13,-11 - 1014: 14,-11 - 1015: 15,-11 + 904: 12,-11 + 905: 13,-11 + 906: 14,-11 + 907: 15,-11 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale180 decals: - 1348: 32,-19 + 1229: 32,-19 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 292: -11,26 - 293: -9,26 - 294: -10,26 - 318: 4,18 - 347: 4,21 - 348: 2,23 - 349: 1,23 - 350: -1,27 - 351: -2,27 - 352: -5,27 - 353: -4,27 - 354: -3,27 + 288: -11,26 + 289: -9,26 + 290: -10,26 + 314: 4,18 + 343: 4,21 + 344: 2,23 + 345: 1,23 + 346: -1,27 + 347: -2,27 + 348: -5,27 + 349: -4,27 + 350: -3,27 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 469: 21,5 - 470: 22,5 - 645: -17,18 - 646: -16,18 - 647: -15,18 - 648: -14,18 + 465: 21,5 + 466: 22,5 + 597: -17,18 + 598: -16,18 + 599: -15,18 + 600: -14,18 - node: color: '#707070FF' id: HalfTileOverlayGreyscale180 decals: - 57: -9,-10 - 58: -8,-10 - 59: -8,-10 - 60: -7,-10 + 53: -9,-10 + 54: -8,-10 + 55: -8,-10 + 56: -7,-10 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 decals: - 284: 1,14 + 280: 1,14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 780: -12,-4 - 781: -11,-4 - 782: -10,-4 - 840: -16,-7 - 841: -17,-7 - 842: -18,-7 + 700: -12,-4 + 701: -11,-4 + 702: -10,-4 + 760: -16,-7 + 761: -17,-7 + 762: -18,-7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 505: 32,20 - 506: 33,20 - 553: 37,10 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale180 - decals: - 519: 32,25 - 520: 31,25 - 521: 29,24 - 522: 28,24 + 501: 32,20 + 502: 33,20 + 519: 37,10 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 1009: 15,-12 - 1010: 12,-13 - 1011: 13,-13 + 901: 15,-12 + 902: 12,-13 + 903: 13,-13 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale270 decals: - 1350: 31,-18 + 1231: 31,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 299: -12,27 - 300: -12,28 - 301: -12,29 - 302: -12,30 - 363: -6,28 - 364: -6,29 - 365: -6,30 - 366: 0,26 - 367: 0,25 - 368: 0,24 - 369: 3,22 + 295: -12,27 + 296: -12,28 + 297: -12,29 + 298: -12,30 + 359: -6,28 + 360: -6,29 + 361: -6,30 + 362: 0,26 + 363: 0,25 + 364: 0,24 + 365: 3,22 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 473: 20,6 - 655: -18,20 - 660: -18,19 + 469: 20,6 + 607: -18,20 + 612: -18,19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 18: 7,2 + 14: 7,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1135: 8,-27 + 1027: 8,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 784: -13,-3 - 785: -13,-2 - 843: -19,-6 - 844: -19,-5 - 845: -19,-4 - 846: -19,-2 + 704: -13,-3 + 705: -13,-2 + 763: -19,-6 + 764: -19,-5 + 765: -19,-4 + 766: -19,-2 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 557: 36,11 - 558: 36,12 - 584: 11,13 - 585: 11,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale270 - decals: - 530: 27,25 - 531: 27,26 - 532: 27,27 + 523: 36,11 + 524: 36,12 + 550: 11,13 + 551: 11,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 953: 15,-8 - 1016: 11,-12 + 857: 15,-8 + 908: 11,-12 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale90 decals: - 1349: 33,-18 + 1230: 33,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 295: -8,27 - 296: -8,28 - 297: -8,29 - 298: -8,30 - 355: 5,22 - 356: 5,23 - 357: 5,24 - 358: 1,26 - 359: 1,27 - 360: 1,28 - 361: 1,29 - 362: 1,30 + 291: -8,27 + 292: -8,28 + 293: -8,29 + 294: -8,30 + 351: 5,22 + 352: 5,23 + 353: 5,24 + 354: 1,26 + 355: 1,27 + 356: 1,28 + 357: 1,29 + 358: 1,30 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 472: 23,6 - 653: -13,20 - 654: -13,19 + 468: 23,6 + 605: -13,20 + 606: -13,19 - node: color: '#707070FF' id: HalfTileOverlayGreyscale90 decals: - 62: -12,-12 - 63: -12,-13 - 64: -12,-14 - 65: -12,-16 - 66: -12,-15 + 58: -12,-12 + 59: -12,-13 + 60: -12,-14 + 61: -12,-16 + 62: -12,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 285: -5,2 + 281: -5,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1076: 6,-23 - 1077: 6,-22 - 1078: 6,-21 + 968: 6,-23 + 969: 6,-22 + 970: 6,-21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 783: -9,-3 - 836: -15,-2 - 837: -15,-4 - 838: -15,-5 - 839: -15,-6 + 703: -9,-3 + 756: -15,-2 + 757: -15,-4 + 758: -15,-5 + 759: -15,-6 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 555: 38,11 - 556: 38,12 - 582: 12,13 - 583: 12,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale90 - decals: - 528: 33,26 - 529: 33,27 + 521: 38,11 + 522: 38,12 + 548: 12,13 + 549: 12,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 917: 13,-8 - 918: 13,-7 - 919: 13,-6 - 952: 16,-8 + 821: 13,-8 + 822: 13,-7 + 823: 13,-6 + 856: 16,-8 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1372: 1,17 + 1253: 1,17 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1373: 6,-23 + 1254: 6,-23 - node: color: '#D381C9FF' id: MiniTileSteelCornerNe decals: - 818: -32,-7 + 738: -32,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerNw decals: - 820: -31,-7 + 740: -31,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerSe decals: - 813: -25,-4 + 733: -25,-4 - node: color: '#D381C9FF' id: MiniTileSteelCornerSw decals: - 814: -29,-4 + 734: -29,-4 - node: color: '#D381C9FF' id: MiniTileSteelInnerNw decals: - 819: -30,-7 + 739: -30,-7 - node: color: '#D381C9FF' id: MiniTileSteelLineE decals: - 810: -25,-3 - 811: -25,-2 - 812: -25,-1 - 822: -32,-8 + 730: -25,-3 + 731: -25,-2 + 732: -25,-1 + 742: -32,-8 - node: color: '#D381C9FF' id: MiniTileSteelLineS decals: - 807: -28,-4 - 808: -27,-4 - 809: -26,-4 - 816: -32,-6 - 817: -31,-6 + 727: -28,-4 + 728: -27,-4 + 729: -26,-4 + 736: -32,-6 + 737: -31,-6 - node: color: '#D381C9FF' id: MiniTileSteelLineW decals: - 804: -29,-1 - 805: -29,-2 - 806: -29,-3 - 821: -31,-8 + 724: -29,-1 + 725: -29,-2 + 726: -29,-3 + 741: -31,-8 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe decals: - 611: -24,7 + 563: -24,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNe decals: - 685: -11,16 - 686: -9,14 + 637: -11,16 + 638: -9,14 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNw decals: - 610: -27,7 + 562: -27,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNw decals: - 689: -14,16 + 641: -14,16 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSe decals: - 612: -24,5 + 564: -24,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSe decals: - 858: -25,-8 + 778: -25,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSe decals: - 687: -9,13 + 639: -9,13 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSw decals: - 613: -27,5 + 565: -27,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSw decals: - 859: -29,-8 + 779: -29,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSw decals: - 688: -14,13 + 640: -14,13 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerNe decals: - 1316: 9,-3 + 1208: 9,-3 - node: color: '#EF7241FF' id: MiniTileWhiteInnerNe decals: - 699: -11,14 + 651: -11,14 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSe decals: - 1314: 13,1 - 1315: 9,-1 + 1206: 13,1 + 1207: 9,-1 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSw decals: - 1317: 16,1 + 1209: 16,1 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE decals: - 602: -24,6 + 556: -24,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineE decals: - 851: -25,-6 - 852: -25,-7 + 771: -25,-6 + 772: -25,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineE decals: - 694: -11,15 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 607: -26,7 - 608: -25,7 + 646: -11,15 - node: color: '#D381C9FF' id: MiniTileWhiteLineN decals: - 860: -21,-6 - 861: -22,-6 - 862: -23,-6 + 780: -21,-6 + 781: -22,-6 + 782: -23,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineN decals: - 697: -13,16 - 698: -12,16 - 700: -10,14 + 649: -13,16 + 650: -12,16 + 652: -10,14 - node: color: '#52B4E9FF' id: MiniTileWhiteLineS decals: - 603: -26,5 - 604: -26,5 - 605: -25,5 + 557: -26,5 + 558: -26,5 + 559: -25,5 - node: color: '#D381C9FF' id: MiniTileWhiteLineS decals: - 853: -26,-8 - 854: -27,-8 - 855: -28,-8 - 863: -23,-7 - 864: -22,-7 - 865: -21,-7 + 773: -26,-8 + 774: -27,-8 + 775: -28,-8 + 783: -23,-7 + 784: -22,-7 + 785: -21,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineS decals: - 690: -13,13 - 691: -12,13 - 692: -11,13 - 693: -10,13 + 642: -13,13 + 643: -12,13 + 644: -11,13 + 645: -10,13 - node: color: '#52B4E9FF' id: MiniTileWhiteLineW decals: - 606: -27,6 + 560: -27,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineW decals: - 856: -29,-7 - 857: -29,-6 + 776: -29,-7 + 777: -29,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineW decals: - 695: -14,14 - 696: -14,15 + 647: -14,14 + 648: -14,15 - node: color: '#334E6DC8' id: MonoOverlay decals: - 1267: -8,-32 + 1159: -8,-32 - node: color: '#52B4E996' id: MonoOverlay decals: - 622: -11,10 - 623: -11,6 - 624: -11,5 - 701: -10,7 - 702: -9,7 - 703: -13,12 - 704: -10,12 - 705: -9,12 - 706: -15,15 - 1266: -4,-35 + 574: -11,10 + 575: -11,6 + 576: -11,5 + 653: -10,7 + 654: -9,7 + 655: -13,12 + 656: -10,12 + 657: -9,12 + 658: -15,15 + 1158: -4,-35 - node: color: '#52B4E9FF' id: MonoOverlay decals: - 609: -25,8 + 561: -25,8 - node: color: '#70707093' id: MonoOverlay decals: - 1269: -8,-34 + 1161: -8,-34 - node: color: '#A14F9793' id: MonoOverlay decals: - 800: -27,-3 - 801: -28,-2 - 802: -27,-1 - 803: -26,-2 - 815: -27,-5 + 720: -27,-3 + 721: -28,-2 + 722: -27,-1 + 723: -26,-2 + 735: -27,-5 - node: color: '#A4610696' id: MonoOverlay decals: - 1097: 5,-25 - 1098: 7,-27 - 1099: 9,-25 - 1100: 10,-25 - 1101: 12,-23 - 1102: 12,-22 - 1103: 7,-22 - 1104: 7,-21 - 1105: 7,-24 - 1108: 17,-22 - 1109: 17,-23 - 1271: -3,-35 + 989: 5,-25 + 990: 7,-27 + 991: 9,-25 + 992: 10,-25 + 993: 12,-23 + 994: 12,-22 + 995: 7,-22 + 996: 7,-21 + 997: 7,-24 + 1000: 17,-22 + 1001: 17,-23 + 1163: -3,-35 - node: color: '#A46106FF' id: MonoOverlay decals: - 1106: 20,-25 - 1107: 21,-25 + 998: 20,-25 + 999: 21,-25 - node: color: '#C78B1993' id: MonoOverlay decals: - 1268: -8,-33 + 1160: -8,-33 - node: color: '#D381C996' id: MonoOverlay decals: - 876: -13,-8 - 877: -12,-8 - 878: -11,-7 - 879: -11,-6 - 880: -12,-5 - 881: -13,-5 - 882: -17,-8 - 1265: -5,-35 + 796: -13,-8 + 797: -12,-8 + 798: -11,-7 + 799: -11,-6 + 800: -12,-5 + 801: -13,-5 + 802: -17,-8 + 1157: -5,-35 - node: color: '#D381C9FF' id: MonoOverlay decals: - 866: -24,-6 - 867: -24,-7 - 868: -20,-6 - 869: -20,-7 - 870: -14,-7 - 871: -14,-6 + 786: -24,-6 + 787: -24,-7 + 788: -20,-6 + 789: -20,-7 + 790: -14,-7 + 791: -14,-6 - node: color: '#EF663193' id: MonoOverlay decals: - 1307: 34,23 + 1199: 34,23 - node: color: '#EFB34196' id: MonoOverlay decals: - 954: 14,-8 - 955: 14,-7 - 956: 15,-6 - 957: 16,-6 - 958: 22,-10 - 959: 23,-10 - 960: 24,-8 - 961: 27,-10 - 962: 17,-11 - 963: 17,-12 - 964: 25,-13 - 965: 30,-12 - 966: 30,-11 - 1270: -2,-35 + 858: 14,-8 + 859: 14,-7 + 860: 15,-6 + 861: 16,-6 + 862: 22,-10 + 863: 23,-10 + 864: 24,-8 + 865: 27,-10 + 866: 17,-11 + 867: 17,-12 + 868: 25,-13 + 869: 30,-12 + 870: 30,-11 + 1162: -2,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 325: 6,16 - 326: -4,31 + 321: 6,16 + 322: -4,31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 475: 23,3 - 614: -7,7 - 615: -7,8 - 616: -7,9 - 617: -7,10 - 618: -7,11 - 619: -7,12 - 620: -7,13 - 621: -7,14 + 471: 23,3 + 566: -7,7 + 567: -7,8 + 568: -7,9 + 569: -7,10 + 570: -7,11 + 571: -7,12 + 572: -7,13 + 573: -7,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 260: 7,4 - 261: 7,5 - 262: 7,6 - 263: 7,7 - 264: 7,8 - 265: 7,9 - 266: 7,10 - 275: 7,11 + 256: 7,4 + 257: 7,5 + 258: 7,6 + 259: 7,7 + 260: 7,8 + 261: 7,9 + 262: 7,10 + 271: 7,11 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 20: 7,1 - 28: 7,-8 - 29: -4,-8 - 30: -3,-8 - 31: -2,-8 - 32: -1,-8 - 33: 0,-8 - 34: 1,-8 - 39: 2,-8 + 16: 7,1 + 24: 7,-8 + 25: -4,-8 + 26: -3,-8 + 27: -2,-8 + 28: -1,-8 + 29: 0,-8 + 30: 1,-8 + 35: 2,-8 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 1082: 5,-20 - 1083: 4,-20 - 1084: 3,-20 - 1124: 13,-21 - 1125: 13,-22 - 1126: 13,-24 - 1127: 13,-23 - 1128: 13,-25 - 1129: 13,-26 - 1130: 12,-26 - 1131: 11,-26 - 1132: 10,-26 - 1133: 9,-26 - 1134: 8,-26 + 974: 5,-20 + 975: 4,-20 + 976: 3,-20 + 1016: 13,-21 + 1017: 13,-22 + 1018: 13,-24 + 1019: 13,-23 + 1020: 13,-25 + 1021: 13,-26 + 1022: 12,-26 + 1023: 11,-26 + 1024: 10,-26 + 1025: 9,-26 + 1026: 8,-26 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale decals: - 1232: 42,29 + 1124: 42,29 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 48: -10,-10 - 49: -10,-9 - 50: -10,-8 - 51: -10,-7 - 52: -10,-6 - 53: -9,-6 - 54: -8,-6 + 44: -10,-10 + 45: -10,-9 + 46: -10,-8 + 47: -10,-7 + 48: -10,-6 + 49: -9,-6 + 50: -8,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 461: 31,10 - 1379: 10,-5 - 1380: 11,-5 + 457: 31,10 + 1260: 10,-5 + 1261: 11,-5 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale decals: - 516: 34,21 + 512: 34,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 920: 12,-5 - 922: 18,-5 - 923: 18,-4 - 924: 19,-4 - 925: 20,-4 - 926: 21,-4 - 927: 22,-4 - 937: 18,-8 - 938: 18,-7 - 939: 18,-6 - 989: 28,-11 - 990: 27,-11 - 991: 26,-11 - 992: 25,-11 - 993: 24,-11 - 1018: 25,-8 - 1019: 25,-7 - 1020: 25,-6 - 1021: 25,-5 - 1022: 25,-4 + 824: 12,-5 + 826: 18,-5 + 827: 18,-4 + 828: 19,-4 + 829: 20,-4 + 830: 21,-4 + 831: 22,-4 + 841: 18,-8 + 842: 18,-7 + 843: 18,-6 + 881: 28,-11 + 882: 27,-11 + 883: 26,-11 + 884: 25,-11 + 885: 24,-11 + 910: 25,-8 + 911: 25,-7 + 912: 25,-6 + 913: 25,-5 + 914: 25,-4 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale decals: - 1221: 45,34 + 1113: 45,34 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale180 decals: - 1214: 43,30 - 1215: 43,31 - 1216: 43,32 - 1217: 44,32 - 1218: 45,32 - 1219: 46,32 + 1106: 43,30 + 1107: 43,31 + 1108: 43,32 + 1109: 44,32 + 1110: 45,32 + 1111: 46,32 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale180 decals: - 55: -10,-10 - 61: -12,-11 + 51: -10,-10 + 57: -12,-11 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 276: -4,12 - 277: -3,13 - 282: -2,14 - 283: -1,14 + 272: -4,12 + 273: -3,13 + 278: -2,14 + 279: -1,14 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 41: -5,-7 - 42: -5,-6 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -5,-1 - 287: -5,3 + 37: -5,-7 + 38: -5,-6 + 39: -5,-5 + 40: -5,-4 + 41: -5,-3 + 42: -5,-2 + 43: -5,-1 + 283: -5,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 424: 13,8 - 425: 14,8 - 426: 15,8 - 427: 16,8 - 428: 17,8 - 429: 18,8 - 430: 20,8 - 431: 19,8 - 432: 21,8 - 433: 22,8 - 434: 23,8 - 435: 24,8 - 436: 25,8 - 437: 26,8 - 438: 27,8 - 439: 28,8 - 440: 29,8 - 441: 30,8 - 442: 31,8 - 443: 32,8 - 444: 33,8 - 445: 33,9 - 446: 33,10 - 447: 33,11 - 448: 33,12 - 449: 33,13 - 450: 33,14 - 451: 33,15 - 452: 33,17 - 453: 33,16 - 503: 31,20 - 601: 12,8 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale180 - decals: - 548: 30,25 + 420: 13,8 + 421: 14,8 + 422: 15,8 + 423: 16,8 + 424: 17,8 + 425: 18,8 + 426: 20,8 + 427: 19,8 + 428: 21,8 + 429: 22,8 + 430: 23,8 + 431: 24,8 + 432: 25,8 + 433: 26,8 + 434: 27,8 + 435: 28,8 + 436: 29,8 + 437: 30,8 + 438: 31,8 + 439: 32,8 + 440: 33,8 + 441: 33,9 + 442: 33,10 + 443: 33,11 + 444: 33,12 + 445: 33,13 + 446: 33,14 + 447: 33,15 + 448: 33,17 + 449: 33,16 + 499: 31,20 + 555: 12,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 928: 23,-5 - 929: 23,-6 - 930: 23,-7 - 931: 23,-8 - 932: 23,-9 - 933: 22,-9 - 934: 21,-9 - 935: 20,-9 - 936: 19,-9 - 983: 23,-12 - 984: 22,-12 - 985: 21,-12 - 986: 20,-12 - 987: 19,-12 - 1007: 14,-12 - 1023: 26,-9 - 1024: 27,-9 - 1025: 28,-9 - 1026: 29,-9 + 832: 23,-5 + 833: 23,-6 + 834: 23,-7 + 835: 23,-8 + 836: 23,-9 + 837: 22,-9 + 838: 21,-9 + 839: 20,-9 + 840: 19,-9 + 875: 23,-12 + 876: 22,-12 + 877: 21,-12 + 878: 20,-12 + 879: 19,-12 + 899: 14,-12 + 915: 26,-9 + 916: 27,-9 + 917: 28,-9 + 918: 29,-9 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale180 decals: - 1220: 46,33 + 1112: 46,33 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale270 decals: - 1361: 32,-12 - 1362: 31,-12 + 1242: 32,-12 + 1243: 31,-12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 328: 0,27 - 329: 3,23 + 324: 0,27 + 325: 3,23 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1377: 10,-9 - 1378: 11,-9 + 1258: 10,-9 + 1259: 11,-9 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale270 decals: - 56: -6,-10 + 52: -6,-10 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 278: 6,12 - 279: 5,13 - 280: 4,14 - 281: 3,14 + 274: 6,12 + 275: 5,13 + 276: 4,14 + 277: 3,14 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 decals: - 1224: 39,33 + 1116: 39,33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 19: 7,3 - 21: 7,-1 - 22: 7,-2 - 23: 7,-3 - 24: 7,-4 - 25: 7,-5 - 26: 7,-6 - 27: 7,-7 + 15: 7,3 + 17: 7,-1 + 18: 7,-2 + 19: 7,-3 + 20: 7,-4 + 21: 7,-5 + 22: 7,-6 + 23: 7,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1079: 5,-24 - 1080: 4,-24 - 1081: 3,-24 - 1110: 8,-28 - 1111: 9,-28 - 1142: 18,-22 - 1143: 18,-23 - 1144: 18,-24 - 1145: 19,-24 - 1146: 20,-24 - 1147: 21,-24 + 971: 5,-24 + 972: 4,-24 + 973: 3,-24 + 1002: 8,-28 + 1003: 9,-28 + 1034: 18,-22 + 1035: 18,-23 + 1036: 18,-24 + 1037: 19,-24 + 1038: 20,-24 + 1039: 21,-24 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale270 decals: - 1208: 39,32 - 1209: 40,32 - 1210: 41,32 - 1211: 42,32 - 1212: 42,31 - 1213: 42,30 + 1100: 39,32 + 1101: 40,32 + 1102: 41,32 + 1103: 42,32 + 1104: 42,31 + 1105: 42,30 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 454: 31,17 - 455: 31,16 - 456: 31,15 - 457: 31,14 - 458: 31,13 - 459: 31,12 - 460: 31,11 - 504: 34,20 + 450: 31,17 + 451: 31,16 + 452: 31,15 + 453: 31,14 + 454: 31,13 + 455: 31,12 + 456: 31,11 + 500: 34,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 921: 12,-9 - 979: 28,-12 - 980: 27,-12 - 981: 26,-12 - 982: 25,-12 - 988: 24,-12 - 1356: 31,-11 - 1357: 32,-11 + 825: 12,-9 + 871: 28,-12 + 872: 27,-12 + 873: 26,-12 + 874: 25,-12 + 880: 24,-12 + 1237: 31,-11 + 1238: 32,-11 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale90 decals: - 1355: 31,-11 - 1359: 32,-12 - 1360: 32,-11 + 1236: 31,-11 + 1240: 32,-12 + 1241: 32,-11 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 324: 2,16 - 327: -1,31 - 339: 1,25 + 320: 2,16 + 323: -1,31 + 335: 1,25 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale90 decals: - 1233: 43,29 + 1125: 43,29 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 474: 21,3 + 470: 21,3 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 267: -5,4 - 268: -5,5 - 269: -5,6 - 270: -5,7 - 271: -5,8 - 272: -5,9 - 273: -5,10 - 274: -5,11 + 263: -5,4 + 264: -5,5 + 265: -5,6 + 266: -5,7 + 267: -5,8 + 268: -5,9 + 269: -5,10 + 270: -5,11 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 decals: - 1225: 40,34 + 1117: 40,34 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 35: 6,-8 - 36: 5,-8 - 38: 4,-8 - 40: -5,-8 - 286: -5,1 + 31: 6,-8 + 32: 5,-8 + 34: 4,-8 + 36: -5,-8 + 282: -5,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1112: 22,-26 - 1113: 21,-26 - 1114: 20,-26 - 1115: 19,-26 - 1116: 18,-26 - 1117: 16,-26 - 1118: 17,-26 - 1119: 16,-25 - 1120: 16,-24 - 1121: 16,-23 - 1122: 16,-22 - 1123: 16,-21 - 1137: 22,-21 - 1138: 21,-21 - 1139: 20,-21 - 1140: 19,-21 - 1141: 22,-22 - 1383: 22,-23 + 1004: 22,-26 + 1005: 21,-26 + 1006: 20,-26 + 1007: 19,-26 + 1008: 18,-26 + 1009: 16,-26 + 1010: 17,-26 + 1011: 16,-25 + 1012: 16,-24 + 1013: 16,-23 + 1014: 16,-22 + 1015: 16,-21 + 1029: 22,-21 + 1030: 21,-21 + 1031: 20,-21 + 1032: 19,-21 + 1033: 22,-22 + 1264: 22,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 777: -12,-2 + 697: -12,-2 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 375: 9,15 - 376: 9,14 - 377: 9,13 - 378: 9,12 - 405: 30,10 - 406: 29,10 - 407: 27,10 - 408: 28,10 - 409: 26,10 - 410: 24,10 - 411: 25,10 - 412: 23,10 - 413: 22,10 - 414: 21,10 - 415: 20,10 - 416: 19,10 - 417: 18,10 - 418: 17,10 - 419: 16,10 - 420: 15,10 - 421: 14,10 - 422: 13,10 - 423: 12,10 + 371: 9,15 + 372: 9,14 + 373: 9,13 + 374: 9,12 + 401: 30,10 + 402: 29,10 + 403: 27,10 + 404: 28,10 + 405: 26,10 + 406: 24,10 + 407: 25,10 + 408: 23,10 + 409: 22,10 + 410: 21,10 + 411: 20,10 + 412: 19,10 + 413: 18,10 + 414: 17,10 + 415: 16,10 + 416: 15,10 + 417: 14,10 + 418: 13,10 + 419: 12,10 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale90 decals: - 515: 31,21 + 511: 31,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 994: 23,-11 - 995: 22,-11 - 996: 21,-11 - 997: 20,-11 - 998: 19,-11 - 1358: 31,-12 + 886: 23,-11 + 887: 22,-11 + 888: 21,-11 + 889: 20,-11 + 890: 19,-11 + 1239: 31,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Rust decals: - 1390: 16,22 - 1391: 15,20 - 1392: 12,20 - 1393: 17,20 - 1394: 14,21 + 1271: 16,22 + 1272: 15,20 + 1273: 12,20 + 1274: 17,20 + 1275: 14,21 - node: color: '#FFFFFFFF' id: StandClear decals: - 908: -17,-7 - 909: -8,-10 - 910: -8,-15 - 914: -27,-4 - 1064: 10,-27 - 1065: 14,-27 - 1308: 12,26 + 812: -17,-7 + 813: -8,-10 + 814: -8,-15 + 818: -27,-4 + 956: 10,-27 + 957: 14,-27 + 1200: 12,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 1166: -40,22 + 1058: -40,22 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale decals: - 1352: 31,-17 + 1233: 31,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 289: -12,31 - 309: -15,31 - 315: 3,19 - 334: -4,32 - 335: -6,31 + 285: -12,31 + 305: -15,31 + 311: 3,19 + 330: -4,32 + 331: -6,31 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 476: 20,7 - 656: -18,21 + 472: 20,7 + 608: -18,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 1148: 18,-21 + 1040: 18,-21 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 776: -13,-1 - 847: -19,-1 + 696: -13,-1 + 767: -19,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 463: 11,10 - 465: 31,18 - 549: 36,13 - 577: 11,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 535: 27,28 - 542: 24,28 - 543: 24,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 589: 11,6 - 590: 14,6 - 591: 17,6 + 459: 11,10 + 461: 31,18 + 515: 36,13 + 543: 11,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 949: 15,-7 - 1000: 18,-11 - 1005: 11,-11 + 853: 15,-7 + 892: 18,-11 + 897: 11,-11 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1354: 33,-19 + 1235: 33,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 291: -8,26 - 312: -14,30 - 313: 5,18 - 338: 5,21 + 287: -8,26 + 308: -14,30 + 309: 5,18 + 334: 5,21 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 479: 23,5 - 659: -13,18 + 475: 23,5 + 611: -13,18 - node: color: '#9D9D97FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1223: 40,33 + 1115: 40,33 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1075: 6,-24 - 1149: 22,-24 + 967: 6,-24 + 1041: 22,-24 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 773: -9,-4 - 850: -15,-7 + 693: -9,-4 + 770: -15,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 552: 38,10 - 579: 12,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 538: 30,24 - 539: 33,25 - 540: 25,24 - 541: 25,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 595: 12,5 - 596: 15,5 - 597: 18,5 + 518: 38,10 + 545: 12,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 916: 13,-9 - 951: 16,-9 - 1002: 29,-12 - 1003: 16,-12 - 1008: 14,-13 + 820: 13,-9 + 855: 16,-9 + 894: 29,-12 + 895: 16,-12 + 900: 14,-13 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1353: 31,-19 + 1234: 31,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 290: -12,26 - 311: -15,30 - 316: 3,18 - 330: 3,21 - 336: 0,23 - 337: -6,27 + 286: -12,26 + 307: -15,30 + 312: 3,18 + 326: 3,21 + 332: 0,23 + 333: -6,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 478: 20,5 - 658: -18,18 + 474: 20,5 + 610: -18,18 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 772: -13,-4 - 849: -19,-7 + 692: -13,-4 + 769: -19,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 462: 11,8 - 551: 36,10 - 576: 11,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 537: 27,24 - 546: 24,24 - 547: 24,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 592: 11,5 - 593: 14,5 - 594: 17,5 + 458: 11,8 + 517: 36,10 + 542: 11,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 943: 18,-9 - 950: 15,-9 - 1001: 18,-12 - 1006: 11,-13 - 1017: 25,-9 + 847: 18,-9 + 854: 15,-9 + 893: 18,-12 + 898: 11,-13 + 909: 25,-9 - node: color: '#F9801DFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1222: 45,33 + 1114: 45,33 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1351: 33,-17 + 1232: 33,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 288: -8,31 - 310: -14,31 - 314: 5,19 - 331: 5,25 - 332: 1,31 - 333: -1,32 + 284: -8,31 + 306: -14,31 + 310: 5,19 + 327: 5,25 + 328: 1,31 + 329: -1,32 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 477: 23,7 - 657: -13,21 + 473: 23,7 + 609: -13,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1074: 6,-20 + 966: 6,-20 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 774: -9,-2 - 775: -12,-1 - 848: -15,-1 + 694: -9,-2 + 695: -12,-1 + 768: -15,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 464: 33,18 - 550: 38,13 - 578: 12,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 536: 33,28 - 544: 25,28 - 545: 25,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 586: 12,6 - 587: 15,6 - 588: 18,6 + 460: 33,18 + 516: 38,13 + 544: 12,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 915: 13,-5 - 944: 23,-4 - 948: 16,-7 - 999: 29,-11 - 1004: 16,-11 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 904: -21,-18 + 819: 13,-5 + 848: 23,-4 + 852: 16,-7 + 891: 29,-11 + 896: 16,-11 - node: color: '#FFFFFFFF' id: WarnBox decals: - 129: -1,46 - 1199: -7,52 + 125: -1,46 + 1091: -7,52 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 134: -2,46 + 130: -2,46 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 5: -9,-15 - 133: -1,45 - 1320: -12,-52 + 129: -1,45 + 1212: -12,-52 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 209: -2,23 - 945: 17,-4 - 1305: -41,23 - 1381: 18,-1 + 205: -2,23 + 849: 17,-4 + 1197: -41,23 + 1262: 18,-1 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 786: -11,-1 + 706: -11,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 81: -8,49 - 82: -9,50 - 135: -3,46 - 799: -29,-4 - 1165: -40,20 + 77: -8,49 + 78: -9,50 + 131: -3,46 + 719: -29,-4 + 1057: -40,20 + 1404: -10,-15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6: -6,-15 - 79: -6,49 - 80: -5,50 - 198: -2,23 - 213: -4,24 - 798: -25,-4 + 5: -6,-15 + 75: -6,49 + 76: -5,50 + 194: -2,23 + 209: -4,24 + 718: -25,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 83: -9,54 - 84: -8,55 - 1072: 9,-28 + 79: -9,54 + 80: -8,55 + 964: 9,-28 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 85: -6,55 - 86: -5,54 - 210: -4,26 - 1073: 15,-28 + 81: -6,55 + 82: -5,54 + 206: -4,26 + 965: 15,-28 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 13: -10,-16 - 14: -10,-15 - 15: -10,-14 - 16: -10,-13 - 17: -10,-12 - 74: -9,53 - 75: -9,52 - 76: -9,51 - 136: -2,45 - 137: -2,44 - 207: -2,24 - 208: -2,25 - 795: -29,-3 - 796: -29,-2 - 797: -29,-1 - 1162: -40,21 - 1163: -40,22 - 1164: -40,23 - 1198: -6,52 - 1397: -4,-30 - 1398: -4,-29 + 11: -10,-14 + 12: -10,-13 + 13: -10,-12 + 70: -9,53 + 71: -9,52 + 72: -9,51 + 132: -2,45 + 133: -2,44 + 203: -2,24 + 204: -2,25 + 715: -29,-3 + 716: -29,-2 + 717: -29,-1 + 1054: -40,21 + 1055: -40,22 + 1056: -40,23 + 1090: -6,52 + 1278: -4,-30 + 1279: -4,-29 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 67: -13,-8 - 68: -12,-8 - 77: -7,55 - 130: -2,47 - 131: -1,47 - 204: -5,23 - 205: -4,23 - 206: -3,23 - 787: -10,-1 - 788: -9,-1 - 946: 16,-4 - 947: 15,-4 - 1068: 11,-28 - 1069: 13,-28 - 1070: 14,-28 - 1071: 12,-28 - 1136: 10,-28 - 1195: -7,51 - 1306: -42,23 - 1323: -17,-12 - 1324: -16,-12 - 1342: -18,-16 - 1343: -17,-16 - 1344: -16,-16 - 1345: -18,-12 - 1382: 17,-1 + 63: -13,-8 + 64: -12,-8 + 73: -7,55 + 126: -2,47 + 127: -1,47 + 200: -5,23 + 201: -4,23 + 202: -3,23 + 707: -10,-1 + 708: -9,-1 + 850: 16,-4 + 851: 15,-4 + 960: 11,-28 + 961: 13,-28 + 962: 14,-28 + 963: 12,-28 + 1028: 10,-28 + 1087: -7,51 + 1198: -42,23 + 1263: 17,-1 + 1391: -18,-16 + 1392: -17,-16 + 1393: -16,-16 + 1394: -18,-12 + 1395: -17,-12 + 1396: -16,-12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3102,167 +3294,162 @@ entities: 2: -11,-14 3: -11,-15 4: -11,-16 - 7: -9,-16 - 8: -6,-13 - 9: -6,-12 - 10: -6,-14 - 71: -5,52 - 72: -5,51 - 73: -5,53 - 132: -1,44 - 199: -2,25 - 200: -2,24 - 211: -4,25 - 789: -25,-1 - 790: -25,-2 - 791: -25,-3 - 1196: -8,52 - 1321: -12,-53 - 1322: -12,-54 - 1395: -2,-30 - 1396: -2,-29 + 6: -6,-13 + 7: -6,-12 + 8: -6,-14 + 67: -5,52 + 68: -5,51 + 69: -5,53 + 128: -1,44 + 195: -2,25 + 196: -2,24 + 207: -4,25 + 709: -25,-1 + 710: -25,-2 + 711: -25,-3 + 1088: -8,52 + 1213: -12,-53 + 1214: -12,-54 + 1276: -2,-30 + 1277: -2,-29 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 11: -8,-15 - 12: -7,-15 - 69: -13,-8 - 70: -12,-8 - 78: -7,49 - 201: -5,23 - 202: -4,23 - 203: -3,23 - 212: -5,24 - 792: -28,-4 - 793: -27,-4 - 794: -26,-4 - 883: -17,-9 - 884: -16,-9 - 885: -18,-17 - 886: -17,-17 - 887: -16,-17 - 888: -19,-17 - 889: -20,-17 - 902: -21,-17 - 903: -15,-17 - 1197: -7,53 - 1325: -17,-12 - 1326: -16,-12 - 1339: -18,-9 - 1346: -18,-12 + 9: -8,-15 + 10: -7,-15 + 65: -13,-8 + 66: -12,-8 + 74: -7,49 + 197: -5,23 + 198: -4,23 + 199: -3,23 + 208: -5,24 + 712: -28,-4 + 713: -27,-4 + 714: -26,-4 + 803: -16,-9 + 1089: -7,53 + 1227: -18,-9 + 1397: -18,-16 + 1398: -17,-16 + 1399: -16,-16 + 1400: -18,-12 + 1401: -17,-12 + 1402: -16,-12 + 1403: -9,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1201: 41,31 + 1093: 41,31 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1200: 44,31 + 1092: 44,31 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 257: -4,9 - 258: -1,8 - 259: 3,9 + 253: -4,9 + 254: -1,8 + 255: 3,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 254: 6,9 - 255: 3,8 - 256: -1,9 + 250: 6,9 + 251: 3,8 + 252: -1,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 251: -1,12 - 252: -4,8 - 253: 3,12 - 1172: -8,-27 + 247: -1,12 + 248: -4,8 + 249: 3,12 + 1064: -8,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 248: 6,8 - 249: -1,12 - 250: 3,12 - 1171: -6,-27 + 244: 6,8 + 245: -1,12 + 246: 3,12 + 1063: -6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 243: -1,11 - 244: -1,10 - 245: -1,9 - 246: 3,10 - 247: 3,11 - 1203: 41,30 + 239: -1,11 + 240: -1,10 + 241: -1,9 + 242: 3,10 + 243: 3,11 + 1095: 41,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 234: 0,8 - 235: 1,8 - 236: 2,8 - 237: -3,9 - 238: -2,9 - 239: 4,9 - 240: 5,9 - 766: 3,4 - 767: 4,4 - 1204: 40,31 - 1205: 39,31 - 1206: 45,31 - 1207: 46,31 + 230: 0,8 + 231: 1,8 + 232: 2,8 + 233: -3,9 + 234: -2,9 + 235: 4,9 + 236: 5,9 + 686: 3,4 + 687: 4,4 + 1096: 40,31 + 1097: 39,31 + 1098: 45,31 + 1099: 46,31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 216: -3,8 - 217: -2,8 - 218: -1,8 - 219: 0,8 - 220: 1,8 - 221: 1,8 - 222: 2,8 - 223: 3,8 - 224: 4,8 - 225: 5,8 - 226: 5,8 - 227: 0,12 - 228: 1,12 - 229: 2,12 - 1170: -7,-27 + 212: -3,8 + 213: -2,8 + 214: -1,8 + 215: 0,8 + 216: 1,8 + 217: 1,8 + 218: 2,8 + 219: 3,8 + 220: 4,8 + 221: 5,8 + 222: 5,8 + 223: 0,12 + 224: 1,12 + 225: 2,12 + 1062: -7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 230: 3,11 - 231: 3,11 - 232: 3,9 - 233: 3,10 - 241: -1,10 - 242: -1,11 - 1202: 44,30 + 226: 3,11 + 227: 3,11 + 228: 3,9 + 229: 3,10 + 237: -1,10 + 238: -1,11 + 1094: 44,30 - node: angle: 4.71238898038469 rad color: '#69150079' id: footprint decals: - 1385: 12.797138,20.095083 - 1386: 13.359638,19.751333 - 1387: 13.890888,20.079458 - 1388: 14.422138,19.766958 - 1389: 12.219013,19.751333 + 1266: 12.797138,20.095083 + 1267: 13.359638,19.751333 + 1268: 13.890888,20.079458 + 1269: 14.422138,19.766958 + 1270: 12.219013,19.751333 - node: color: '#691500FF' id: splatter decals: - 1384: 12.062763,20.798208 + 1265: 12.062763,20.798208 - type: GridAtmosphere version: 2 data: @@ -5868,14 +6055,11 @@ entities: pos: 23.5,-23.5 parent: 1 - type: DeviceLinkSink - links: - - 1752 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1752: - DoorStatus: DoorBolt - - DoorStatus: Close - - DoorStatus: AutoClose - uid: 1717 components: - type: Transform @@ -5895,14 +6079,11 @@ entities: pos: 25.5,-25.5 parent: 1 - type: DeviceLinkSink - links: - - 1523 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1523: - - DoorStatus: Close - DoorStatus: DoorBolt - - DoorStatus: AutoClose - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 3571 @@ -5911,24 +6092,48 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3572: + - DoorStatus: DoorBolt - uid: 3572 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-22.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3571: + - DoorStatus: DoorBolt - uid: 3573 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,31.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3574: + - DoorStatus: DoorBolt - uid: 3574 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3573: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 3284 @@ -5936,28 +6141,60 @@ entities: - type: Transform pos: -17.5,29.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3285 components: - type: Transform pos: -16.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3286 components: - type: Transform pos: -17.5,32.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3284: + - DoorStatus: DoorBolt + 3285: + - DoorStatus: DoorBolt - uid: 3354 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3355: + - DoorStatus: DoorBolt - uid: 3355 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3354: + - DoorStatus: DoorBolt - uid: 3607 components: - type: Transform @@ -7315,19 +7552,19 @@ entities: - type: Transform pos: -4.4293957,-34.588463 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 1949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,12.5 + pos: 48.5,12.5 parent: 1 - uid: 1950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,5.5 + pos: 48.5,5.5 parent: 1 - uid: 1954 components: @@ -7342,19 +7579,19 @@ entities: - uid: 3001 components: - type: Transform - pos: 1.5,-34.5 + pos: 1.5,-35.5 parent: 1 - uid: 3063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,13.5 + pos: -44.5,11.5 parent: 1 - uid: 3064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,11.5 + pos: -44.5,13.5 parent: 1 - uid: 3065 components: @@ -7368,55 +7605,59 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,3.5 parent: 1 - - uid: 3147 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 3148 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - uid: 4816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: 48.5,22.5 parent: 1 - uid: 7073 components: - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 1 - uid: 8324 components: - type: Transform + rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 1 - - uid: 12494 + - uid: 10900 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,38.5 + pos: 33.5,38.5 parent: 1 - - uid: 12495 + - uid: 10901 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,38.5 + pos: 31.5,38.5 parent: 1 - - uid: 12496 + - uid: 10902 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,38.5 + pos: 25.5,38.5 parent: 1 - - uid: 12497 + - uid: 10903 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,38.5 + pos: 23.5,38.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 3147 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + pos: -3.5,2.5 parent: 1 - proto: AtmosFixBlockerMarker entities: @@ -7944,34 +8185,21 @@ entities: - type: Transform pos: 34.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 5388 - - 5389 - uid: 3434 components: - type: Transform pos: -21.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6338 - uid: 3435 components: - type: Transform pos: -21.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6337 - uid: 3561 components: - type: Transform pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 1978 - uid: 3795 components: - type: Transform @@ -7979,41 +8207,26 @@ entities: parent: 1 - type: DeviceLinkSink invokeCounter: 1 - links: - - 6068 - - 1357 - uid: 7432 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7433 components: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7434 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - uid: 7435 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - proto: BlastDoorOpen entities: - uid: 4064 @@ -8021,25 +8234,16 @@ entities: - type: Transform pos: 5.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4065 components: - type: Transform pos: 4.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4066 components: - type: Transform pos: 3.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - proto: BlockGameArcade entities: - uid: 4945 @@ -23548,6 +23752,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 1 + - uid: 5966 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 - uid: 7005 components: - type: Transform @@ -23790,6 +23999,11 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 1 + - uid: 8256 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 - uid: 8937 components: - type: Transform @@ -24570,6 +24784,26 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 1 + - uid: 9284 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 9312 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 9313 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 9331 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 - uid: 9332 components: - type: Transform @@ -25008,6 +25242,26 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 1 + - uid: 9624 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 9658 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 9659 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 9661 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 - uid: 9741 components: - type: Transform @@ -25404,6 +25658,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-15.5 parent: 1 + - uid: 10130 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 10863 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 - uid: 12516 components: - type: Transform @@ -27629,7 +27893,7 @@ entities: - type: Transform pos: -7.419932,-28.49488 parent: 1 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 12524 components: @@ -28195,171 +28459,111 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1731 components: - type: Transform pos: 10.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1732 components: - type: Transform pos: 10.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1733 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1734 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1735 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1736 components: - type: Transform pos: 14.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1737 components: - type: Transform pos: 14.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1738 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1739 components: - type: Transform pos: 14.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1740 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1741 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1742 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 3563 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3564 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3565 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3566 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3567 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3568 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3569 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: CowToolboxFilled entities: - uid: 12285 @@ -28540,9 +28744,6 @@ entities: - type: Transform pos: 3.5,3.5 parent: 1 - - type: EntityStorage - open: True - removedMasks: 28 - type: Fixtures fixtures: fix1: @@ -28559,14 +28760,15 @@ entities: - HighImpassable - LowImpassable layer: + - TableLayer + - HighImpassable + - LowImpassable - BulletImpassable - Opaque density: 135 hard: True restitution: 0 friction: 0.4 - - type: PlaceableSurface - isPlaceable: True - proto: CrateNPCHamlet entities: - uid: 7180 @@ -32588,10 +32790,10 @@ entities: parent: 1 - proto: DrinkMilkCarton entities: - - uid: 6014 + - uid: 10875 components: - type: Transform - pos: 0.5749459,1.7185974 + pos: 1.6770757,3.695939 parent: 1 - proto: DrinkMugBlack entities: @@ -33416,12 +33618,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,0.5 parent: 1 - - uid: 9284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - uid: 9285 components: - type: Transform @@ -33548,6 +33744,12 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 1 - uid: 11600 components: - type: Transform @@ -36128,18 +36330,17 @@ entities: parent: 1 - proto: FoodCartHot entities: - - uid: 1795 + - uid: 6017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 0.5,1.5 parent: 1 - proto: FoodContainerEgg entities: - - uid: 6015 + - uid: 6016 components: - type: Transform - pos: 0.6686959,0.7498474 + pos: 2.6014228,3.2195196 parent: 1 - proto: FoodDonutJellySlugcat entities: @@ -38788,18 +38989,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10130 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 10131 components: - type: Transform @@ -56133,9 +56322,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6123 - proto: MachineCentrifuge entities: - uid: 1891 @@ -59274,6 +59460,12 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 5962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 - uid: 5995 components: - type: Transform @@ -59282,6 +59474,17 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6014 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 6015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 1 - uid: 6406 components: - type: Transform @@ -59384,13 +59587,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6747 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6748 components: - type: Transform @@ -59538,10 +59734,9 @@ entities: - uid: 7208 components: - type: Transform - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,17.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7209 components: - type: Transform @@ -60092,6 +60287,11 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10890 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 - uid: 11929 components: - type: Transform @@ -62282,17 +62482,17 @@ entities: parent: 1 - proto: ReagentContainerFlour entities: - - uid: 6016 + - uid: 10877 components: - type: Transform - pos: 0.46557093,1.1092224 + pos: 2.3558922,3.6381907 parent: 1 - proto: ReagentContainerSugar entities: - - uid: 6017 + - uid: 10876 components: - type: Transform - pos: 0.6191431,1.0935974 + pos: 2.110363,3.652628 parent: 1 - proto: Recycler entities: @@ -62302,9 +62502,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: ReinforcedPlasmaWindow entities: - uid: 521 @@ -64389,6 +64586,74 @@ entities: - type: Transform pos: 16.498451,27.468857 parent: 1 +- proto: Screen + entities: + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + - uid: 5957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 1 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + - uid: 10882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 1 + - uid: 10885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-24.5 + parent: 1 + - uid: 10888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 + - uid: 10889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,4.5 + parent: 1 - proto: SecurityTechFab entities: - uid: 5417 @@ -64671,49 +64936,31 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3432 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3433 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3436 components: - type: Transform pos: -29.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 9264 - uid: 5459 components: - type: Transform pos: 14.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - uid: 5460 components: - type: Transform pos: 15.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - proto: ShuttersNormalOpen entities: - uid: 1796 @@ -64721,97 +64968,61 @@ entities: - type: Transform pos: 14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1797 components: - type: Transform pos: 15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1798 components: - type: Transform pos: 17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1824 components: - type: Transform pos: 11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1847 components: - type: Transform pos: 12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1866 components: - type: Transform pos: 18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1936 components: - type: Transform pos: -21.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1937 components: - type: Transform pos: -20.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1938 components: - type: Transform pos: -18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1939 components: - type: Transform pos: -17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1940 components: - type: Transform pos: -15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1941 components: - type: Transform pos: -14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 3618 components: - type: Transform @@ -64837,89 +65048,56 @@ entities: - type: Transform pos: -2.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5068 components: - type: Transform pos: -1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5069 components: - type: Transform pos: -0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5070 components: - type: Transform pos: 1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5450 components: - type: Transform pos: 11.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 5451 components: - type: Transform pos: 14.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 5452 components: - type: Transform pos: 17.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 5683 components: - type: Transform pos: 18.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5684 components: - type: Transform pos: 19.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5685 components: - type: Transform pos: 20.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5686 components: - type: Transform pos: 16.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5687 components: - type: Transform @@ -64930,203 +65108,128 @@ entities: - type: Transform pos: -12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 5902 components: - type: Transform pos: -11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6131 components: - type: Transform pos: -9.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6142 components: - type: Transform pos: -8.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7438 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 7439 - uid: 7485 components: - type: Transform pos: 10.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 7660 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 11721 components: - type: Transform pos: -1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11722 components: - type: Transform pos: -0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11723 components: - type: Transform pos: 0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11724 components: - type: Transform pos: 1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11725 components: - type: Transform pos: 2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11726 components: - type: Transform pos: 3.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11727 components: - type: Transform pos: 4.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11730 components: - type: Transform pos: -3.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11731 components: - type: Transform pos: -3.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11732 components: - type: Transform pos: 6.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11733 components: - type: Transform pos: 6.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12444 components: - type: Transform pos: 10.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12445 components: - type: Transform pos: 10.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12446 components: - type: Transform pos: 10.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12447 components: - type: Transform pos: 10.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12448 components: - type: Transform pos: 13.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12449 components: - type: Transform pos: 13.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: ShuttersWindowOpen entities: - uid: 5071 @@ -65134,41 +65237,26 @@ entities: - type: Transform pos: 0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 11728 components: - type: Transform pos: -2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11729 components: - type: Transform pos: 5.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12450 components: - type: Transform pos: 13.5,14.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12451 components: - type: Transform pos: 13.5,13.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: SignAi entities: - uid: 3006 @@ -65904,13 +65992,6 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 1 -- proto: SignDrones - entities: - - uid: 9653 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - proto: SignEscapePods entities: - uid: 25 @@ -65972,6 +66053,13 @@ entities: rot: 3.141592653589793 rad pos: 16.5,0.5 parent: 1 +- proto: SignMaterials + entities: + - uid: 9653 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 - proto: SignMedical entities: - uid: 5301 @@ -68635,12 +68723,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 5957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - uid: 5959 components: - type: Transform @@ -68653,12 +68735,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 1 - - uid: 5966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - uid: 5992 components: - type: Transform @@ -68893,6 +68969,16 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 1 + - uid: 8232 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 8235 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 - uid: 8236 components: - type: Transform @@ -69194,6 +69280,11 @@ entities: - type: Transform pos: -28.5,12.5 parent: 1 + - uid: 10864 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 - uid: 11797 components: - type: Transform @@ -70440,10 +70531,10 @@ entities: parent: 1 - proto: VendingMachineChefvend entities: - - uid: 5962 + - uid: 6747 components: - type: Transform - pos: 1.5,3.5 + pos: 0.5,0.5 parent: 1 - proto: VendingMachineChemDrobe entities: @@ -70502,7 +70593,7 @@ entities: - uid: 5964 components: - type: Transform - pos: 2.5,3.5 + pos: 1.5,0.5 parent: 1 - proto: VendingMachineEngiDrobe entities: @@ -80180,25 +80271,16 @@ entities: - type: Transform pos: 12.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12485 - uid: 5536 components: - type: Transform pos: 15.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12486 - uid: 5537 components: - type: Transform pos: 18.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12487 - proto: WindoorServiceLocked entities: - uid: 3375 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 09bb60c4eb98..445965e3366d 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -81,139 +81,139 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: DgAAAAADDgAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAA + tiles: DgAAAAADDgAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAACDgAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: bAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAACXQAAAAADXQAAAAABaAAAAAACbAAAAAAAbAAAAAAAXQAAAAADaAAAAAACJAAAAAADJAAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABaAAAAAABJAAAAAADJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: bAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJAAAAAADXQAAAAADXQAAAAADaAAAAAADbAAAAAAAbAAAAAAAXQAAAAACaAAAAAACJAAAAAADJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABaAAAAAABJAAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: fgAAAAAAfgAAAAAAHwAAAAACHwAAAAABXQAAAAADaAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAaAAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAJAAAAAACJAAAAAABJAAAAAADXQAAAAAAJAAAAAABXQAAAAADXQAAAAABaAAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAACfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAAAaAAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACaAAAAAADXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAJAAAAAABJAAAAAAAJAAAAAAAXQAAAAADJAAAAAADXQAAAAACXQAAAAACaAAAAAACXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAAAfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: XQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADaAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABaAAAAAACaAAAAAADaAAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAACaAAAAAABaAAAAAABaAAAAAADTgAAAAABTgAAAAACaAAAAAAATgAAAAACTgAAAAABaAAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACaAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAaAAAAAAAaAAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACaAAAAAABaAAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAaAAAAAADaAAAAAADXQAAAAABJAAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAXQAAAAACTgAAAAAATgAAAAADTgAAAAADXQAAAAAAXQAAAAACTgAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADJAAAAAADXQAAAAAAJAAAAAAAJAAAAAACJAAAAAAAfgAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAXQAAAAABaAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAD + tiles: XQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAaAAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADaAAAAAABaAAAAAABaAAAAAACaAAAAAACaAAAAAACaAAAAAADaAAAAAADaAAAAAABaAAAAAACaAAAAAACTgAAAAAATgAAAAABaAAAAAAATgAAAAACTgAAAAAAaAAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADaAAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAaAAAAAADaAAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACaAAAAAADaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAaAAAAAABaAAAAAACXQAAAAACJAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAACTgAAAAABTgAAAAACTgAAAAACXQAAAAABXQAAAAAATgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAADXQAAAAABJAAAAAACJAAAAAACJAAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAAAaAAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: aAAAAAABaAAAAAADXQAAAAADXQAAAAACaAAAAAACXQAAAAADXQAAAAADXQAAAAADaAAAAAAAXQAAAAABaAAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABTgAAAAABTgAAAAADaAAAAAABaAAAAAADaAAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABaAAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACJAAAAAAAJAAAAAACJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAABegAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADaAAAAAAAXQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAACXQAAAAACXQAAAAACJAAAAAAAfgAAAAAAJAAAAAACaAAAAAAAaAAAAAAAaAAAAAABXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAATgAAAAADTgAAAAACJAAAAAACfgAAAAAAaAAAAAABaAAAAAADaAAAAAACaAAAAAABXQAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAXQAAAAADXQAAAAACXQAAAAADaAAAAAABaAAAAAACaAAAAAACaAAAAAAAaAAAAAACXQAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADXQAAAAAAXQAAAAAAaAAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAaAAAAAAAaAAAAAADaAAAAAADaAAAAAABXQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADaAAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAADaAAAAAABXQAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAACXQAAAAABXQAAAAAAaAAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAJAAAAAAAHwAAAAACHwAAAAABXQAAAAACXQAAAAAAaAAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABaAAAAAAD + tiles: aAAAAAAAaAAAAAACXQAAAAABXQAAAAADaAAAAAAAXQAAAAACXQAAAAACXQAAAAADaAAAAAACXQAAAAAAaAAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATgAAAAAATgAAAAACaAAAAAACaAAAAAABaAAAAAADaAAAAAACaAAAAAABaAAAAAACaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABaAAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAJAAAAAABJAAAAAABJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAJAAAAAADegAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACJAAAAAAAfgAAAAAAHwAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABegAAAAAAegAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJAAAAAACJAAAAAAAJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACaAAAAAABXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAABXQAAAAABXQAAAAADJAAAAAACfgAAAAAAJAAAAAABaAAAAAAAaAAAAAABaAAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAATgAAAAAATgAAAAADJAAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAADXQAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAABXQAAAAACXQAAAAACaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAABXQAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABXQAAAAAAXQAAAAABaAAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAaAAAAAABaAAAAAADaAAAAAABaAAAAAABXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADaAAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAACaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAACXQAAAAACfgAAAAAAJAAAAAADJAAAAAACJAAAAAAAXQAAAAACXQAAAAABaAAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAJAAAAAACHwAAAAADHwAAAAAAXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAACHwAAAAAAHwAAAAACXQAAAAAAXQAAAAABaAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: XQAAAAACXQAAAAABaAAAAAADXQAAAAADaAAAAAABXQAAAAACfgAAAAAAHwAAAAADaAAAAAAAaAAAAAADaAAAAAADaAAAAAAAaAAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAAAfgAAAAAAHwAAAAACaAAAAAADaAAAAAACaAAAAAAAaAAAAAABaAAAAAABHwAAAAADfgAAAAAAHwAAAAACJAAAAAACHwAAAAACfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAHwAAAAAAaAAAAAADaAAAAAACaAAAAAABXQAAAAADaAAAAAAAHwAAAAADHwAAAAAAHwAAAAADJAAAAAACHwAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAHwAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAADaAAAAAADHwAAAAADfgAAAAAAHwAAAAABJAAAAAABHwAAAAADfgAAAAAAaAAAAAADaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACJAAAAAACHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAABJAAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAJAAAAAACHwAAAAABfgAAAAAAXQAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAACaAAAAAACaAAAAAAAaAAAAAAAaAAAAAADXQAAAAADfgAAAAAAHwAAAAACJAAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAaAAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADJAAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAACaAAAAAABXQAAAAABaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADaAAAAAACaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA + tiles: XQAAAAADXQAAAAADaAAAAAADXQAAAAAAaAAAAAACXQAAAAADfgAAAAAAHwAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABfgAAAAAAHwAAAAACaAAAAAABaAAAAAABaAAAAAACaAAAAAACaAAAAAADHwAAAAACfgAAAAAAHwAAAAACJAAAAAABHwAAAAADfgAAAAAAXQAAAAACaAAAAAACXQAAAAABfgAAAAAAHwAAAAADaAAAAAAAaAAAAAADaAAAAAABXQAAAAACaAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAACHwAAAAABfgAAAAAAXQAAAAACaAAAAAABXQAAAAABfgAAAAAAHwAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAACaAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAJAAAAAADHwAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACJAAAAAABHwAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAABJAAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAXQAAAAACaAAAAAAAaAAAAAACaAAAAAABaAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAABaAAAAAACXQAAAAADfgAAAAAAHwAAAAACJAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAADaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAaAAAAAABXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAHwAAAAAAJAAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAADaAAAAAAAXQAAAAABaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAaAAAAAADaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: EgAAAAAAXQAAAAABegAAAAADegAAAAABXQAAAAADfgAAAAAAJAAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADaAAAAAACXQAAAAADXQAAAAABXQAAAAADEgAAAAADXQAAAAAAegAAAAABegAAAAADXQAAAAADfgAAAAAAXQAAAAADTgAAAAAATgAAAAABaAAAAAAATgAAAAABaAAAAAADaAAAAAACaAAAAAAAaAAAAAACaAAAAAABEgAAAAABXQAAAAAAegAAAAACegAAAAACXQAAAAADfgAAAAAAXQAAAAAATgAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACaAAAAAACXQAAAAADXQAAAAADXQAAAAABEgAAAAADXQAAAAAAegAAAAACegAAAAAAXQAAAAADaAAAAAABXQAAAAAAaAAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADEgAAAAACXQAAAAACegAAAAABegAAAAAAXQAAAAABaAAAAAABXQAAAAAATgAAAAADXQAAAAAAXQAAAAABaAAAAAAAHwAAAAADHwAAAAADJgAAAAABJgAAAAABJgAAAAABEgAAAAABXQAAAAADegAAAAADegAAAAABXQAAAAADfgAAAAAAXQAAAAAATgAAAAABXQAAAAACXQAAAAACaAAAAAABHwAAAAACHwAAAAABTgAAAAABTgAAAAABTgAAAAABXQAAAAAAXQAAAAACKAAAAAABKAAAAAAAXQAAAAACfgAAAAAAXQAAAAADaAAAAAACXQAAAAABXQAAAAADaAAAAAABHwAAAAABHwAAAAAAJgAAAAABJgAAAAACJgAAAAABKAAAAAAAKAAAAAADKAAAAAADKAAAAAABXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAQwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAA + tiles: EgAAAAACXQAAAAAAegAAAAAAegAAAAAAXQAAAAACfgAAAAAAJAAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACaAAAAAACXQAAAAABXQAAAAAAXQAAAAADEgAAAAACXQAAAAACegAAAAAAegAAAAACXQAAAAACfgAAAAAAXQAAAAACTgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAACaAAAAAABEgAAAAACXQAAAAABegAAAAADegAAAAACXQAAAAABfgAAAAAAXQAAAAAATgAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADaAAAAAADXQAAAAABXQAAAAABXQAAAAABEgAAAAAAXQAAAAABegAAAAADegAAAAACXQAAAAADaAAAAAADXQAAAAAAaAAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACEgAAAAADXQAAAAABegAAAAADegAAAAADXQAAAAACaAAAAAAAXQAAAAACTgAAAAADXQAAAAAAXQAAAAAAaAAAAAADHwAAAAAAHwAAAAABJgAAAAABJgAAAAADJgAAAAADEgAAAAABXQAAAAACegAAAAACegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAADXQAAAAABaAAAAAABHwAAAAABHwAAAAAATgAAAAAATgAAAAABTgAAAAACXQAAAAADXQAAAAACKAAAAAACKAAAAAADXQAAAAADfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAXQAAAAABaAAAAAABHwAAAAADHwAAAAAAJgAAAAABJgAAAAABJgAAAAABKAAAAAABKAAAAAABKAAAAAAAKAAAAAADXQAAAAADfgAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAACegAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAACegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAQwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAABegAAAAADegAAAAACegAAAAADegAAAAADegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAABaAAAAAACXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAAAewAAAAAAewAAAAADfgAAAAAATgAAAAABTgAAAAABKAAAAAACTgAAAAAATgAAAAADaAAAAAACXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAACewAAAAABewAAAAADbAAAAAAATgAAAAACTgAAAAABKAAAAAABTgAAAAAATgAAAAAAaAAAAAAAXQAAAAACaAAAAAACXQAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAAAewAAAAAAewAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAACaAAAAAABXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAABewAAAAADewAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAewAAAAADewAAAAABewAAAAABfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAaAAAAAACfgAAAAAAKAAAAAAAKAAAAAABKAAAAAAAfgAAAAAAXQAAAAABaAAAAAACaAAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAXQAAAAACfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABXQAAAAACaAAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAaAAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABXwAAAAABJAAAAAACXwAAAAADXwAAAAAAXwAAAAADXwAAAAADXQAAAAAAXQAAAAADXQAAAAADaAAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACegAAAAACHwAAAAADHwAAAAADXwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAaAAAAAADegAAAAACegAAAAACegAAAAADegAAAAADegAAAAAAHwAAAAAAHwAAAAAAXwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAXQAAAAADaAAAAAACegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAABHwAAAAACHwAAAAABXwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABXQAAAAAAXQAAAAAAXQAAAAADaAAAAAABegAAAAADegAAAAABegAAAAACegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAABegAAAAACegAAAAAAegAAAAADegAAAAAAegAAAAAC + tiles: egAAAAADegAAAAADegAAAAAAegAAAAACegAAAAAAaAAAAAACXQAAAAADaAAAAAABXQAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAABewAAAAACewAAAAABfgAAAAAATgAAAAACTgAAAAAAKAAAAAAATgAAAAADTgAAAAADaAAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABewAAAAADewAAAAADbAAAAAAATgAAAAAATgAAAAABKAAAAAAATgAAAAADTgAAAAACaAAAAAACXQAAAAADaAAAAAADXQAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABewAAAAACewAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAADegAAAAADaAAAAAACXQAAAAACaAAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAACewAAAAAAewAAAAACfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAewAAAAACewAAAAACewAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAQAAAAAAAfgAAAAAAaAAAAAACfgAAAAAAKAAAAAADKAAAAAABKAAAAAAAfgAAAAAAXQAAAAAAaAAAAAACaAAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACQAAAAAAAQAAAAAAAXQAAAAAAfgAAAAAAKAAAAAAAKAAAAAACKAAAAAADfgAAAAAAXQAAAAABXQAAAAADaAAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAAAaAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAJAAAAAABXwAAAAAAXwAAAAACXwAAAAABXQAAAAADXQAAAAAAXQAAAAAAaAAAAAABegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABXQAAAAACXQAAAAABXQAAAAABaAAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAgQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAACXQAAAAACXQAAAAAAaAAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABXQAAAAABXQAAAAADXQAAAAAAaAAAAAACegAAAAABegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADaAAAAAACegAAAAABegAAAAACegAAAAACegAAAAACegAAAAAD version: 6 1,0: ind: 1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAADaAAAAAAAaAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABaAAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAADTgAAAAACaAAAAAADaAAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaAAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAAAXQAAAAAAXQAAAAADXQAAAAADJAAAAAABJAAAAAACJAAAAAABXQAAAAADXQAAAAABaAAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAADfgAAAAAAJAAAAAADJAAAAAADJAAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAADfgAAAAAAJAAAAAACJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAJAAAAAAAJAAAAAACJAAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAABaAAAAAAAaAAAAAACfgAAAAAAaAAAAAABaAAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADaAAAAAACaAAAAAAAHQAAAAADaAAAAAAAaAAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAADaAAAAAACaAAAAAABXQAAAAACaAAAAAADaAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADaAAAAAABaAAAAAAAXQAAAAACaAAAAAACaAAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAABaAAAAAADaAAAAAACfgAAAAAAaAAAAAAAaAAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABaAAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAADTgAAAAAAaAAAAAABaAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaAAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAABXQAAAAAAXQAAAAABJAAAAAADJAAAAAACJAAAAAABXQAAAAABXQAAAAAAaAAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAABfgAAAAAAJAAAAAADJAAAAAABJAAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAJAAAAAACJAAAAAAAJAAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAJAAAAAADJAAAAAAAJAAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAABaAAAAAADaAAAAAABfgAAAAAAaAAAAAAAaAAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAaAAAAAACaAAAAAADHQAAAAACaAAAAAAAaAAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAADaAAAAAADaAAAAAACXQAAAAAAaAAAAAABaAAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACaAAAAAADaAAAAAACXQAAAAABaAAAAAABaAAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAADaAAAAAAAaAAAAAABfgAAAAAAaAAAAAAAaAAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: HwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABewAAAAAAfgAAAAAAewAAAAADHwAAAAACHwAAAAAAMwAAAAAAHwAAAAACHwAAAAADewAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACewAAAAAAewAAAAABewAAAAAAHwAAAAAAHwAAAAADMwAAAAAAHwAAAAABHwAAAAACewAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACewAAAAADfgAAAAAAewAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABewAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACewAAAAADewAAAAACewAAAAACewAAAAAAewAAAAADewAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAXQAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAADegAAAAABJAAAAAADfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAXQAAAAABegAAAAADegAAAAACegAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADaAAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABaAAAAAAAXQAAAAADTgAAAAABTgAAAAACaAAAAAABTgAAAAABTgAAAAACaAAAAAABaAAAAAADTgAAAAADaAAAAAACTgAAAAACTgAAAAABTgAAAAACaAAAAAACTgAAAAACaAAAAAAAaAAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAABXQAAAAABaAAAAAADXQAAAAABXQAAAAACXQAAAAACaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAewAAAAACfgAAAAAAewAAAAAAHwAAAAAAHwAAAAABMwAAAAAAHwAAAAAAHwAAAAABewAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAewAAAAABewAAAAAAewAAAAACHwAAAAADHwAAAAAAMwAAAAAAHwAAAAABHwAAAAADewAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAADewAAAAAAfgAAAAAAewAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABewAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABewAAAAADewAAAAADewAAAAABewAAAAACewAAAAACewAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACXQAAAAADegAAAAADegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAABXQAAAAACegAAAAADJAAAAAACfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACaAAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACaAAAAAADXQAAAAADTgAAAAADTgAAAAADaAAAAAAATgAAAAABTgAAAAAAaAAAAAAAaAAAAAAATgAAAAADaAAAAAADTgAAAAABTgAAAAACTgAAAAADaAAAAAADTgAAAAACaAAAAAABaAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABaAAAAAABXQAAAAABXQAAAAACXQAAAAAAaAAAAAADXQAAAAADXQAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAaAAAAAADaAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAABfgAAAAAAdQAAAAADdQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAdQAAAAADdQAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAACaAAAAAAAXQAAAAAAfgAAAAAAdQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACaAAAAAABXQAAAAAAfgAAAAAAdQAAAAACdQAAAAABcAAAAAAAJAAAAAADJAAAAAAAJAAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAACfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAABfgAAAAAAdQAAAAABdQAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAADfgAAAAAAdQAAAAAAdQAAAAADcAAAAAAD + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAAAaAAAAAABaAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAdQAAAAADdQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABfgAAAAAAdQAAAAACdQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAAAfgAAAAAAdQAAAAACdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAaAAAAAAAXQAAAAADfgAAAAAAdQAAAAACdQAAAAAAcAAAAAADJAAAAAACJAAAAAABJAAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAJAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAACfgAAAAAAdQAAAAADdQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAaAAAAAACaAAAAAADaAAAAAABaAAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAAAfgAAAAAAdQAAAAAAdQAAAAACcAAAAAAC version: 6 -2,0: ind: -2,0 - tiles: aAAAAAACaAAAAAADaAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACaAAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAACegAAAAAAaAAAAAABaAAAAAABXwAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADaAAAAAADegAAAAACegAAAAADegAAAAAAegAAAAABegAAAAADaAAAAAACaAAAAAABXwAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAaAAAAAACegAAAAACegAAAAADegAAAAADegAAAAAAegAAAAACaAAAAAABaAAAAAAAaAAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABaAAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADegAAAAACewAAAAACewAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAAwAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAADXQAAAAACXQAAAAABXQAAAAAAHwAAAAACewAAAAABAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAXQAAAAABAwAAAAAAegAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAJAAAAAADHwAAAAACHwAAAAACewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAABXQAAAAAAXQAAAAADAwAAAAAAegAAAAABJAAAAAACJAAAAAAAJAAAAAADfgAAAAAAJAAAAAAAHwAAAAACHwAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAADXQAAAAADAwAAAAAAegAAAAACJAAAAAABJAAAAAADJAAAAAADfgAAAAAAJAAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACaAAAAAACaAAAAAACaAAAAAABaAAAAAABaAAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADaAAAAAACaAAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAAAaAAAAAACaAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAeQAAAAABeQAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACaAAAAAABXQAAAAAAXQAAAAACXQAAAAACaAAAAAABXQAAAAAAeQAAAAABeQAAAAADeQAAAAACeQAAAAADeQAAAAAAeQAAAAABLgAAAAAALgAAAAAAAQAAAAADaAAAAAABaAAAAAABAQAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAJAAAAAADeQAAAAABeQAAAAAAeQAAAAACeQAAAAADfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAQAAAAACXQAAAAABXQAAAAACaAAAAAACXQAAAAABXQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABfgAAAAAALgAAAAAAXQAAAAABXQAAAAADPAAAAAAAAQAAAAACXQAAAAAAXQAAAAAAaAAAAAADXQAAAAADXQAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJAAAAAADfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABfgAAAAAAfgAAAAAA + tiles: aAAAAAADaAAAAAAAaAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADaAAAAAACegAAAAACegAAAAABegAAAAACegAAAAABegAAAAAAaAAAAAACaAAAAAACXwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACaAAAAAADegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABaAAAAAADaAAAAAACXwAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADaAAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAADaAAAAAAAaAAAAAAAaAAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAaAAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAACewAAAAABewAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADAwAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACXQAAAAABXQAAAAADXQAAAAAAHwAAAAACewAAAAABAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAADXQAAAAACXQAAAAABAwAAAAAAegAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAJAAAAAABHwAAAAACHwAAAAACewAAAAABAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAAAXQAAAAAAAwAAAAAAegAAAAADJAAAAAAAJAAAAAACJAAAAAACfgAAAAAAJAAAAAABHwAAAAABHwAAAAACewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAADXQAAAAAAXQAAAAACAwAAAAAAegAAAAAAJAAAAAADJAAAAAADJAAAAAADfgAAAAAAJAAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACaAAAAAABaAAAAAACaAAAAAAAaAAAAAADaAAAAAABaAAAAAADaAAAAAADaAAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABaAAAAAABXQAAAAACXQAAAAADXQAAAAABaAAAAAABXQAAAAADeQAAAAAAeQAAAAAAeQAAAAADeQAAAAAAeQAAAAABeQAAAAABLgAAAAAALgAAAAAAAQAAAAAAaAAAAAADaAAAAAACAQAAAAADfgAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAJAAAAAADeQAAAAAAeQAAAAADeQAAAAAAeQAAAAADfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAQAAAAAAXQAAAAAAXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAfgAAAAAALgAAAAAAXQAAAAACXQAAAAABPAAAAAAAAQAAAAACXQAAAAADXQAAAAAAaAAAAAAAXQAAAAACXQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJAAAAAABfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: bQAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAJAAAAAACJAAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAACbQAAAAAAbQAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACbQAAAAAAbQAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABJAAAAAADJAAAAAADJAAAAAACJAAAAAADJAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAJAAAAAABJAAAAAAAJAAAAAAAJAAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAJAAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABXQAAAAADXQAAAAAAaAAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAADaAAAAAACHwAAAAACfgAAAAAAHwAAAAABTgAAAAACaAAAAAADaAAAAAAAaAAAAAACaAAAAAAAXQAAAAACfgAAAAAAHwAAAAABaAAAAAABaAAAAAADaAAAAAAAaAAAAAADaAAAAAADHwAAAAABfgAAAAAAHwAAAAAD + tiles: bQAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAJAAAAAACJAAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADbQAAAAAAbQAAAAAAJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABbQAAAAAAbQAAAAAAJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABJAAAAAAAJAAAAAABJAAAAAAAJAAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADJAAAAAABJAAAAAABJAAAAAADJAAAAAABJAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABXQAAAAACXQAAAAABaAAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAADaAAAAAADaAAAAAABaAAAAAAAaAAAAAABaAAAAAACHwAAAAADfgAAAAAAHwAAAAABTgAAAAADaAAAAAADaAAAAAACaAAAAAABaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAABaAAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAABHwAAAAAAfgAAAAAAHwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABJAAAAAABJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABaAAAAAACaAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACaAAAAAACaAAAAAAAJAAAAAACfgAAAAAAXQAAAAABXQAAAAADHwAAAAACHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAaAAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADaAAAAAAAaAAAAAAAaAAAAAABaAAAAAACTgAAAAADaAAAAAACTgAAAAABaAAAAAAC + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAJAAAAAADJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADaAAAAAAAaAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADaAAAAAACaAAAAAADJAAAAAADfgAAAAAAXQAAAAADXQAAAAAAHwAAAAACHwAAAAABHwAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAABHwAAAAABHwAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAAATgAAAAACaAAAAAACTgAAAAAAaAAAAAAD version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADJAAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAaAAAAAADXQAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAXQAAAAADaAAAAAADaAAAAAACaAAAAAACXQAAAAAAaAAAAAABaAAAAAABaAAAAAADXQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAACaAAAAAACXQAAAAABfgAAAAAAXQAAAAABaAAAAAAAaAAAAAABaAAAAAADXQAAAAAAaAAAAAACaAAAAAAAaAAAAAADXQAAAAAAXQAAAAABaAAAAAABXQAAAAABXQAAAAADXQAAAAADJAAAAAACfgAAAAAAXQAAAAAAaAAAAAAAaAAAAAADaAAAAAAAXQAAAAADaAAAAAAAaAAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABdQAAAAADdAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAJAAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADaAAAAAADXQAAAAACXQAAAAABaAAAAAAAXQAAAAADfgAAAAAAXQAAAAAAaAAAAAACaAAAAAABaAAAAAAAXQAAAAADaAAAAAACaAAAAAABaAAAAAADXQAAAAABaAAAAAAAaAAAAAADaAAAAAACaAAAAAAAaAAAAAACXQAAAAABfgAAAAAAXQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAaAAAAAACaAAAAAAAaAAAAAACXQAAAAABXQAAAAADaAAAAAAAXQAAAAACXQAAAAAAXQAAAAABJAAAAAAAfgAAAAAAXQAAAAADaAAAAAABaAAAAAACaAAAAAACXQAAAAAAaAAAAAAAaAAAAAADaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAdQAAAAADdAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADaAAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAAAaAAAAAABaAAAAAADaAAAAAABaAAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAACXQAAAAACXQAAAAABXQAAAAACaAAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAACcAAAAAAAcAAAAAABdQAAAAABdAAAAAACdAAAAAADdAAAAAACXQAAAAABXQAAAAACXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAdAAAAAACdAAAAAACdAAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACdAAAAAADdAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdQAAAAABdQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAaAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAcAAAAAACcAAAAAAAaAAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADaAAAAAABaAAAAAACaAAAAAAAaAAAAAADaAAAAAADaAAAAAABaAAAAAAAaAAAAAABaAAAAAABaAAAAAADaAAAAAABaAAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAABXQAAAAABXQAAAAADXQAAAAADaAAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAACcAAAAAADcAAAAAAAdQAAAAAAdAAAAAAAdAAAAAACdAAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADcAAAAAABcAAAAAABdQAAAAACdAAAAAADdAAAAAACdAAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAABdAAAAAABfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdQAAAAADdQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAaAAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAcAAAAAABcAAAAAABaAAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAALgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAaAAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABaAAAAAACaAAAAAABaAAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAACaAAAAAACaAAAAAADaAAAAAACTgAAAAAATgAAAAAAaAAAAAABTgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABaAAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAHwAAAAACHwAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACHwAAAAACHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAABJAAAAAABJAAAAAAAXQAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADTgAAAAACTgAAAAACHwAAAAADTgAAAAABTgAAAAADTgAAAAAAHwAAAAADTgAAAAAATgAAAAACHwAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACJAAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACJAAAAAABJAAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACaAAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAACaAAAAAADaAAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAAATgAAAAADTgAAAAABaAAAAAACTgAAAAAATgAAAAACaAAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABaAAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAJAAAAAABJAAAAAACXQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABTgAAAAABTgAAAAACHwAAAAABTgAAAAABTgAAAAACTgAAAAABHwAAAAACTgAAAAABTgAAAAABHwAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAJAAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABJAAAAAACJAAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAB version: 6 -2,1: ind: -2,1 - tiles: AQAAAAACAQAAAAACAQAAAAACJAAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAaAAAAAABfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAKAAAAAABKAAAAAADKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAAAXwAAAAACXwAAAAADXwAAAAAAXwAAAAABXwAAAAABXwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAABaAAAAAAAaAAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAACaAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAaAAAAAADXwAAAAADXwAAAAACXwAAAAAAXwAAAAACXwAAAAACXwAAAAABaAAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADJAAAAAABKAAAAAABKAAAAAABKAAAAAAAKAAAAAACKAAAAAACKAAAAAABXQAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAJAAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAJAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAC + tiles: AQAAAAADAQAAAAADAQAAAAACJAAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAaAAAAAABfgAAAAAAXQAAAAACaAAAAAADXQAAAAADKAAAAAABKAAAAAACKAAAAAACKAAAAAAAKAAAAAACKAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAABXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAAAXwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAABaAAAAAAAaAAAAAACaAAAAAAAaAAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAAAaAAAAAABaAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAaAAAAAADXwAAAAACXwAAAAAAXwAAAAABXwAAAAADXwAAAAADXwAAAAADaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACJAAAAAAAKAAAAAABKAAAAAACKAAAAAAAKAAAAAACKAAAAAABKAAAAAADXQAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAABbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADJAAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADJAAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAggAAAAACgQAAAAAAfgAAAAAAgQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXgAAAAABYQAAAAABXgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYQAAAAADfgAAAAAAggAAAAABfgAAAAAAXgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAABfgAAAAAAfgAAAAAAYQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAggAAAAACgQAAAAAAfgAAAAAAgQAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAggAAAAACYQAAAAAEXgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAaAAAAAADaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADJAAAAAAAJAAAAAABJAAAAAABJAAAAAACJAAAAAAAJAAAAAADJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAADJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAADJAAAAAADJAAAAAACJAAAAAADJAAAAAABJAAAAAACJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAABJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAADJgAAAAAAJgAAAAACJgAAAAACJAAAAAABJAAAAAABJAAAAAAAJgAAAAABJgAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAABJgAAAAADJgAAAAAAJAAAAAADJAAAAAADJAAAAAACJgAAAAADJgAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACJgAAAAABJgAAAAAAJAAAAAABHwAAAAAAHwAAAAADJAAAAAACJAAAAAABHwAAAAACHwAAAAABJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAABHwAAAAAAHwAAAAABJAAAAAADJAAAAAABHwAAAAADHwAAAAAAHwAAAAADJgAAAAAAJAAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAABJAAAAAADJAAAAAADJAAAAAADJAAAAAACJgAAAAACHwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAACJAAAAAADJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAAAJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJAAAAAABJAAAAAAAJAAAAAAAJAAAAAADJAAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAACJgAAAAACJgAAAAACJgAAAAACJgAAAAACJgAAAAAAJgAAAAADJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAACJgAAAAACJAAAAAABJAAAAAABJAAAAAADJgAAAAACJgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACJgAAAAAAJgAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJgAAAAAAJgAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABJgAAAAAAJgAAAAABJAAAAAABHwAAAAABHwAAAAAAJAAAAAAAJAAAAAABHwAAAAADHwAAAAACJAAAAAABJAAAAAAAJAAAAAABJAAAAAABJAAAAAAAHwAAAAAAHwAAAAABJAAAAAADJAAAAAABHwAAAAABHwAAAAABHwAAAAAAJgAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAACJAAAAAACJgAAAAACHwAAAAAB version: 6 3,-2: ind: 3,-2 - tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABaAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAaAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADJAAAAAABfgAAAAAAXQAAAAACTgAAAAADTgAAAAADaAAAAAAATgAAAAAATgAAAAACaAAAAAADaAAAAAADaAAAAAABaAAAAAACaAAAAAABaAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAD + tiles: HwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACaAAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADaAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACJAAAAAADfgAAAAAAXQAAAAACTgAAAAADTgAAAAACaAAAAAAATgAAAAADTgAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAABaAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAC version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAALCwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAJJAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAACJAAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAAJAAAAAAAJAAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAADfwAAAAAAJAAAAAABJAAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAOAAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAABJAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKfwAAAAAAJAAAAAADJAAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAOAAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAC version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAADegAAAAACegAAAAADegAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAegAAAAACFQAAAAAEegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAFQAAAAABgQAAAAAAFQAAAAAFegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABJAAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACKAAAAAACKAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADKAAAAAADfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADegAAAAACegAAAAABegAAAAADegAAAAABegAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAABKAAAAAABKAAAAAABKAAAAAABKAAAAAACKAAAAAADKAAAAAABKAAAAAAAKAAAAAADfgAAAAAAfgAAAAAAewAAAAADewAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAACKAAAAAABKAAAAAACKAAAAAADKAAAAAAAKAAAAAABKAAAAAADKAAAAAABKAAAAAACfgAAAAAAfgAAAAAAewAAAAACewAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACKAAAAAABKAAAAAADKAAAAAADKAAAAAABKAAAAAACKAAAAAABKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAACegAAAAABegAAAAAAJAAAAAACfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAABKAAAAAACKAAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAABKAAAAAACKAAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAADegAAAAACegAAAAABegAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAegAAAAACFQAAAAAGegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAFQAAAAACgQAAAAAAFQAAAAAGegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACJAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADKAAAAAADKAAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABKAAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAACegAAAAACegAAAAABegAAAAADegAAAAADfgAAAAAAfgAAAAAAewAAAAACewAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAACKAAAAAABKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAABKAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAAAKAAAAAADKAAAAAADKAAAAAACfgAAAAAAfgAAAAAAewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABKAAAAAACKAAAAAADKAAAAAADKAAAAAACKAAAAAABKAAAAAADKAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAACJAAAAAABfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAADKAAAAAADKAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAXQAAAAABXQAAAAAAKAAAAAABKAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC version: 6 -3,-1: ind: -3,-1 - tiles: HwAAAAAAfgAAAAAAewAAAAABewAAAAABewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAACegAAAAAAegAAAAADegAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAATgAAAAAATgAAAAAAKAAAAAABTgAAAAACTgAAAAAAKAAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADTgAAAAACTgAAAAADKAAAAAAATgAAAAADTgAAAAABKAAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAKAAAAAACKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAADZQAAAAAAfgAAAAAAewAAAAACewAAAAADewAAAAACfgAAAAAAaAAAAAADKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZQAAAAACZQAAAAACfgAAAAAAKAAAAAACKAAAAAADKAAAAAABfgAAAAAAaAAAAAAAKAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAACZQAAAAABfgAAAAAAKAAAAAACKAAAAAACKAAAAAACfgAAAAAAXQAAAAACXQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXwAAAAABXwAAAAADXwAAAAABXwAAAAABXwAAAAAAJAAAAAADXwAAAAACXwAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADXwAAAAACHwAAAAAAHwAAAAACJAAAAAADJAAAAAADJAAAAAAAJAAAAAABJAAAAAADXQAAAAACXQAAAAACfgAAAAAAXwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXwAAAAABHwAAAAACHwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAADfgAAAAAAXwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABXwAAAAADHwAAAAABHwAAAAACJAAAAAABJAAAAAAAJAAAAAACJAAAAAABJAAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAC + tiles: HwAAAAADfgAAAAAAewAAAAADewAAAAABewAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACTgAAAAAATgAAAAAAKAAAAAADTgAAAAACTgAAAAACKAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACTgAAAAAATgAAAAADKAAAAAABTgAAAAAATgAAAAAAKAAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAKAAAAAADKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAABZQAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAADfgAAAAAAaAAAAAABKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZQAAAAADZQAAAAAAfgAAAAAAKAAAAAACKAAAAAACKAAAAAABfgAAAAAAaAAAAAADKAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAACZQAAAAACfgAAAAAAKAAAAAADKAAAAAACKAAAAAABfgAAAAAAXQAAAAAAXQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXwAAAAACXwAAAAABXwAAAAACXwAAAAAAJAAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAADJAAAAAACJAAAAAACJAAAAAAAJAAAAAABJAAAAAADXQAAAAACXQAAAAACfgAAAAAAXwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAABfgAAAAAAXwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAADJAAAAAADJAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: ZQAAAAADZQAAAAADZQAAAAADZQAAAAACZQAAAAADXQAAAAACaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAACaAAAAAACXQAAAAACTgAAAAABTgAAAAABaAAAAAACTgAAAAADTgAAAAABaAAAAAADaAAAAAACaAAAAAADXQAAAAAAXQAAAAABXwAAAAACaAAAAAACaAAAAAABaAAAAAADXwAAAAABaAAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAABXQAAAAADaAAAAAACaAAAAAABXQAAAAABXQAAAAACXwAAAAAAaAAAAAACaAAAAAACaAAAAAADXwAAAAAAaAAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAACaAAAAAACaAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAADJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAJAAAAAADJAAAAAACJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAACewAAAAADfgAAAAAAaAAAAAACaAAAAAAAaAAAAAAAAgAAAAAAJAAAAAAAJAAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAACewAAAAADfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAACAgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAQAAAAACPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACAQAAAAADPAAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAADPAAAAAAAPAAAAAAA + tiles: ZQAAAAABZQAAAAADZQAAAAACZQAAAAACZQAAAAADXQAAAAAAaAAAAAAAaAAAAAADXQAAAAADXQAAAAADaAAAAAABaAAAAAACaAAAAAADaAAAAAACaAAAAAABXQAAAAAATgAAAAACTgAAAAADaAAAAAADTgAAAAACTgAAAAABaAAAAAAAaAAAAAADaAAAAAADXQAAAAADXQAAAAACXwAAAAAAaAAAAAACaAAAAAACaAAAAAADXwAAAAACaAAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAABXQAAAAABaAAAAAABaAAAAAACXQAAAAABXQAAAAABXwAAAAADaAAAAAABaAAAAAACaAAAAAAAXwAAAAABaAAAAAACJAAAAAAAJAAAAAADJAAAAAADJAAAAAACJAAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABaAAAAAACaAAAAAAAaAAAAAACaAAAAAACaAAAAAACaAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABewAAAAABewAAAAABewAAAAACewAAAAACewAAAAAAJAAAAAACJAAAAAADJAAAAAACJAAAAAAAJAAAAAACXQAAAAACXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAADHwAAAAABHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAAAewAAAAACfgAAAAAAaAAAAAADaAAAAAABaAAAAAACAgAAAAAAJAAAAAABJAAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABewAAAAAAewAAAAADfgAAAAAAaAAAAAACaAAAAAABaAAAAAADAgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAAQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACAQAAAAADPAAAAAAAXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAPAAAAAAAPAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIwAAAAADRQAAAAAAIwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAFQAAAAAGgQAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAggAAAAAAFQAAAAAGegAAAAACfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAACegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAggAAAAACgQAAAAAAFQAAAAADfgAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAgQAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAggAAAAABFQAAAAAEegAAAAABegAAAAACfgAAAAAAegAAAAADegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIwAAAAACRQAAAAAAIwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAFQAAAAAGgQAAAAAAegAAAAABegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAggAAAAABFQAAAAACegAAAAADfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAggAAAAACgQAAAAAAgQAAAAAAgQAAAAAAggAAAAABegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAggAAAAACgQAAAAAAFQAAAAAGfgAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAFQAAAAAEfgAAAAAAgQAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAggAAAAACFQAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: aAAAAAABaAAAAAADaAAAAAACaAAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACegAAAAACegAAAAADXQAAAAADEgAAAAACEgAAAAACEgAAAAADEgAAAAACEgAAAAADfgAAAAAAfgAAAAAAJAAAAAACaAAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACegAAAAAAegAAAAADXQAAAAAAEgAAAAABEgAAAAADEgAAAAADEgAAAAACEgAAAAACAwAAAAAAAwAAAAAAJAAAAAABaAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADegAAAAADegAAAAACXQAAAAADEgAAAAABEgAAAAABEgAAAAACEgAAAAADEgAAAAABAwAAAAAAAwAAAAAAJAAAAAABaAAAAAADaAAAAAACXQAAAAABaAAAAAAAXQAAAAAAegAAAAABegAAAAABXQAAAAADEgAAAAAAEgAAAAABEgAAAAABEgAAAAABEgAAAAACAwAAAAAAAwAAAAAAJAAAAAABaAAAAAADaAAAAAADXQAAAAABaAAAAAACXQAAAAABegAAAAABegAAAAAAXQAAAAADEgAAAAADEgAAAAACEgAAAAAAEgAAAAADEgAAAAABAwAAAAAAAwAAAAAAJAAAAAABaAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABegAAAAADegAAAAACXQAAAAACEgAAAAAAEgAAAAAAEgAAAAABEgAAAAACEgAAAAABfgAAAAAAfgAAAAAAJAAAAAACaAAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACKAAAAAABKAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACaAAAAAABaAAAAAACaAAAAAADaAAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABKAAAAAADKAAAAAADKAAAAAABKAAAAAADKAAAAAAAKAAAAAAAKAAAAAADKAAAAAADaAAAAAACaAAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAADfgAAAAAAewAAAAAAewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAADfgAAAAAAewAAAAACewAAAAACewAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACKAAAAAAB + tiles: aAAAAAABaAAAAAADaAAAAAABaAAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADegAAAAAAegAAAAADXQAAAAADEgAAAAAAEgAAAAACEgAAAAACEgAAAAADEgAAAAACfgAAAAAAfgAAAAAAJAAAAAACaAAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAegAAAAAAegAAAAACXQAAAAAAEgAAAAADEgAAAAABEgAAAAACEgAAAAABEgAAAAACAwAAAAAAAwAAAAAAJAAAAAACaAAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAACegAAAAAAegAAAAABXQAAAAABEgAAAAADEgAAAAAAEgAAAAABEgAAAAABEgAAAAACAwAAAAAAAwAAAAAAJAAAAAABaAAAAAACaAAAAAAAXQAAAAABaAAAAAAAXQAAAAACegAAAAABegAAAAABXQAAAAAAEgAAAAAAEgAAAAADEgAAAAACEgAAAAADEgAAAAABAwAAAAAAAwAAAAAAJAAAAAAAaAAAAAADaAAAAAACXQAAAAADaAAAAAADXQAAAAABegAAAAAAegAAAAAAXQAAAAADEgAAAAADEgAAAAAAEgAAAAADEgAAAAACEgAAAAAAAwAAAAAAAwAAAAAAJAAAAAABaAAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAABegAAAAADegAAAAAAXQAAAAAAEgAAAAABEgAAAAACEgAAAAAAEgAAAAACEgAAAAADfgAAAAAAfgAAAAAAJAAAAAADaAAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAACKAAAAAADKAAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACaAAAAAADaAAAAAADaAAAAAADaAAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACKAAAAAADKAAAAAABKAAAAAABKAAAAAADKAAAAAAAKAAAAAADKAAAAAABKAAAAAABaAAAAAAAaAAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAABfgAAAAAAewAAAAAAewAAAAACewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAACfgAAAAAAewAAAAAAewAAAAABewAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADKAAAAAAC version: 6 -3,-3: ind: -3,-3 - tiles: XQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAaAAAAAAAXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAATgAAAAADTgAAAAABaAAAAAAATgAAAAABTgAAAAADaAAAAAADaAAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAJAAAAAAAJAAAAAACHwAAAAADHwAAAAACfgAAAAAAegAAAAADaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAegAAAAACaAAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABHwAAAAADHwAAAAADfgAAAAAAegAAAAACTgAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACXQAAAAABfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAACfgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABXQAAAAABTgAAAAABXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACXQAAAAAAaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAATgAAAAABXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACTgAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAKAAAAAACKAAAAAACKAAAAAACKAAAAAADKAAAAAACKAAAAAABKAAAAAAAKAAAAAAAaAAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAKAAAAAACKAAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAD + tiles: XQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABaAAAAAACXQAAAAABfgAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAABaAAAAAAAaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAJAAAAAABJAAAAAABHwAAAAADHwAAAAADfgAAAAAAegAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABHwAAAAACHwAAAAACfgAAAAAAegAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADHwAAAAAAHwAAAAABfgAAAAAAegAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACXQAAAAACTgAAAAACXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABXQAAAAACaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAATgAAAAABXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABKAAAAAADKAAAAAADKAAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAABKAAAAAACaAAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABKAAAAAABKAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAB version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAAAXQAAAAAAXQAAAAAAZQAAAAADZQAAAAADZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAADTgAAAAAATgAAAAACaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAACXQAAAAACXQAAAAACZQAAAAABZQAAAAADZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAACJAAAAAABJAAAAAACJAAAAAADJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAXQAAAAABXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACXQAAAAADJAAAAAABJAAAAAABJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAADJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAAAXQAAAAAAXQAAAAACZQAAAAAAZQAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAACaAAAAAAATgAAAAADTgAAAAAAaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAAAXQAAAAADXQAAAAAAZQAAAAADZQAAAAACZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABJAAAAAABJAAAAAAAJAAAAAADJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADXQAAAAAAXQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAXQAAAAAAJAAAAAADJAAAAAABJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAJAAAAAABJAAAAAAAJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAACJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAACXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAAAXQAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADXQAAAAAAJAAAAAACJAAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAACXQAAAAACXQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACJAAAAAADJAAAAAADJAAAAAADJAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAACXQAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAABXQAAAAADJAAAAAADJAAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABXQAAAAABXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAAB version: 6 -4,-2: ind: -4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADJAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAABaAAAAAAAJAAAAAACAwAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAABaAAAAAAAJAAAAAACAwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAACJAAAAAABAwAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAABHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABaAAAAAADJAAAAAACAwAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABHwAAAAACfgAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAABXQAAAAABaAAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAADaAAAAAABXQAAAAADaAAAAAADaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAaAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABaAAAAAACaAAAAAADaAAAAAAAaAAAAAABaAAAAAACfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABJAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAABaAAAAAAAJAAAAAACAwAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAADaAAAAAAAJAAAAAACAwAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADaAAAAAAAJAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABaAAAAAACJAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACHwAAAAADfgAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAACaAAAAAACXQAAAAAAaAAAAAADJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAXQAAAAACaAAAAAADaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABaAAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACaAAAAAACaAAAAAADaAAAAAAAaAAAAAAAaAAAAAACfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAABaAAAAAACaAAAAAADTgAAAAACTgAAAAABaAAAAAADTgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXgAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXgAAAAABXgAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACYQAAAAAEYQAAAAAEXgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAABaAAAAAAAaAAAAAADTgAAAAADTgAAAAAAaAAAAAAATgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXgAAAAAAXgAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACYQAAAAAAYQAAAAAEXgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA version: 6 2,0: ind: 2,0 - tiles: HwAAAAACHwAAAAACHwAAAAADfgAAAAAAaAAAAAABaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADXQAAAAAAaAAAAAAAXQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACJAAAAAABXQAAAAACXQAAAAACXQAAAAAAaAAAAAADXQAAAAAAXQAAAAADTgAAAAAAXQAAAAACdQAAAAAAdQAAAAAAdQAAAAADfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAABTgAAAAADTgAAAAADaAAAAAAAaAAAAAADaAAAAAABTgAAAAABTgAAAAABXQAAAAACdQAAAAACdQAAAAAAaAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACaAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADdQAAAAACdQAAAAADdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAdQAAAAAAdQAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAABcAAAAAADdQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAdQAAAAABTgAAAAABcAAAAAAAdQAAAAACcAAAAAAATgAAAAACdQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAAAdQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdAAAAAABdQAAAAAAdQAAAAAAdQAAAAACdAAAAAACdQAAAAACfgAAAAAAXQAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAABdQAAAAAAdQAAAAAAdQAAAAABdAAAAAACJAAAAAACXQAAAAADXQAAAAACegAAAAABegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAXQAAAAADegAAAAABegAAAAACegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAACHwAAAAADJAAAAAAAfgAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADJAAAAAADTwAAAAAATwAAAAAA + tiles: HwAAAAACHwAAAAADHwAAAAACfgAAAAAAaAAAAAAAaAAAAAABaAAAAAABfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAABaAAAAAABXQAAAAABdQAAAAABdQAAAAAAdQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACJAAAAAAAXQAAAAAAXQAAAAADXQAAAAADaAAAAAACXQAAAAAAXQAAAAADTgAAAAACXQAAAAAAdQAAAAACdQAAAAACdQAAAAAAfgAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAACTgAAAAABTgAAAAACaAAAAAAAaAAAAAAAaAAAAAACTgAAAAADTgAAAAABXQAAAAADdQAAAAACdQAAAAACaAAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAaAAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAdQAAAAAAdQAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAADdQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAADdQAAAAACTgAAAAACcAAAAAABdQAAAAAAcAAAAAADTgAAAAABdQAAAAADXQAAAAACXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAADdQAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAACdQAAAAABdQAAAAABdQAAAAAAdAAAAAABdQAAAAAAfgAAAAAAXQAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAACdQAAAAAAdQAAAAACdQAAAAABdAAAAAACJAAAAAADXQAAAAABXQAAAAADegAAAAACegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAACegAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADJAAAAAACHwAAAAAAJAAAAAAAfgAAAAAAXQAAAAACegAAAAADegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAJAAAAAADTwAAAAAATwAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -221,71 +221,71 @@ entities: version: 6 0,2: ind: 0,2 - tiles: fgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAdAAAAAADdAAAAAAAdQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAABHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAdAAAAAACdAAAAAACdQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HwAAAAAAHwAAAAABewAAAAABewAAAAADewAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAJAAAAAABJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAewAAAAADewAAAAACewAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABewAAAAACewAAAAAAewAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdAAAAAACdAAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAA + tiles: HwAAAAAAHwAAAAAAewAAAAADewAAAAADewAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABJAAAAAADJAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAHwAAAAACewAAAAACewAAAAACewAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAABewAAAAADewAAAAABewAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACHwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdAAAAAADdAAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACgQAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAACJAAAAAABJAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADJAAAAAADXQAAAAADXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJAAAAAABXQAAAAABXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: XQAAAAABHwAAAAABHwAAAAAAJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAAAHwAAAAABHwAAAAACJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAABHwAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAABTwAAAAAATwAAAAAAfgAAAAAAJAAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTgAAAAAATgAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABTgAAAAABTgAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAaAAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAACTwAAAAAATwAAAAAAfgAAAAAAJAAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTgAAAAADTgAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAATgAAAAADTgAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAaAAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: fgAAAAAAdQAAAAAAdQAAAAADdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAdQAAAAACdQAAAAABdQAAAAABcAAAAAACdQAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAAAdQAAAAABdQAAAAABdQAAAAACfgAAAAAAcAAAAAACdQAAAAACdQAAAAACdQAAAAAAdQAAAAAAdQAAAAAAcAAAAAACdQAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABdQAAAAAAdQAAAAABdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADcAAAAAAAcAAAAAACcAAAAAADdQAAAAABcAAAAAACdQAAAAADcAAAAAADcAAAAAADcAAAAAACcAAAAAAAdQAAAAADdQAAAAACdQAAAAADfgAAAAAAcAAAAAADdQAAAAACdQAAAAABdQAAAAAAdQAAAAAAdQAAAAACcAAAAAAAdQAAAAACcAAAAAADfgAAAAAAcAAAAAABcAAAAAAAdQAAAAAAdQAAAAACdQAAAAADfgAAAAAAcAAAAAABcAAAAAABfgAAAAAAdQAAAAAAdQAAAAADdQAAAAABcAAAAAACdQAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdQAAAAACcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAADdQAAAAADcAAAAAAAcAAAAAACcAAAAAAAdQAAAAAAdQAAAAACdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAABcAAAAAADfgAAAAAAcAAAAAABdQAAAAABdQAAAAACdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACdQAAAAACcAAAAAADdQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAcAAAAAABdQAAAAACcAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAADdQAAAAABcAAAAAAAcAAAAAADcAAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAABcAAAAAADfgAAAAAAcAAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACdQAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdQAAAAABdQAAAAABdQAAAAABcAAAAAABcAAAAAACcAAAAAADdQAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdQAAAAACdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADdQAAAAABdQAAAAADdQAAAAAAcAAAAAACfgAAAAAAfgAAAAAA + tiles: fgAAAAAAdQAAAAACdQAAAAACdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAdQAAAAADdQAAAAACdQAAAAACcAAAAAABdQAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAAAdQAAAAADdQAAAAAAdQAAAAABfgAAAAAAcAAAAAACdQAAAAACdQAAAAABdQAAAAADdQAAAAAAdQAAAAAAcAAAAAADdQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABdQAAAAABdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADdQAAAAABcAAAAAAAcAAAAAACcAAAAAABdQAAAAAAcAAAAAACdQAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAAAdQAAAAABdQAAAAAAdQAAAAAAfgAAAAAAcAAAAAACdQAAAAACdQAAAAABdQAAAAABdQAAAAABdQAAAAACcAAAAAAAdQAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADdQAAAAAAdQAAAAADdQAAAAACfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAdQAAAAADdQAAAAAAdQAAAAAAcAAAAAAAdQAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdQAAAAADcAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABcAAAAAABdQAAAAADcAAAAAAAcAAAAAAAcAAAAAACdQAAAAADdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAADdQAAAAAAcAAAAAADfgAAAAAAcAAAAAACdQAAAAAAdQAAAAACdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAdQAAAAAAcAAAAAAAdQAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAcAAAAAAAdQAAAAABcAAAAAABfgAAAAAAJAAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAACdQAAAAAAcAAAAAABcAAAAAABcAAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdQAAAAACcAAAAAACfgAAAAAAcAAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAdQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdQAAAAABdQAAAAAAdQAAAAABcAAAAAABcAAAAAADcAAAAAABdQAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdQAAAAAAdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAdQAAAAABdQAAAAABdQAAAAACcAAAAAACfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAADdQAAAAABdQAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAegAAAAACegAAAAABegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXgAAAAAAZAAAAAAAXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXgAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAACdQAAAAACdQAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXgAAAAABZAAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAJAAAAAACJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAJAAAAAADJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAJAAAAAABJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAADJAAAAAABJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + tiles: AAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABJAAAAAADJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADJAAAAAABJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADJAAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADJAAAAAACJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAJAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADTgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADTgAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAABJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAJAAAAAADJAAAAAAAJAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAADXQAAAAABfgAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAADfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAJAAAAAABJAAAAAACJAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAAAXQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAABfgAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAaAAAAAABaAAAAAADaAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAACJAAAAAACJAAAAAADJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdQAAAAABdQAAAAADdQAAAAACcAAAAAADfgAAAAAAdQAAAAACdQAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADdQAAAAADcAAAAAACcAAAAAADcAAAAAADdQAAAAADdQAAAAACfgAAAAAAcAAAAAAAdQAAAAADdQAAAAABdQAAAAABcAAAAAACfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABdQAAAAABcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdQAAAAACdQAAAAACdQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAcAAAAAADdQAAAAABdQAAAAADdQAAAAADcAAAAAAAcAAAAAABdQAAAAABcAAAAAADcAAAAAABcAAAAAABaAAAAAACaAAAAAABaAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAcAAAAAACcAAAAAACcAAAAAADdQAAAAABcAAAAAABcAAAAAABcAAAAAADaAAAAAADaAAAAAABaAAAAAADcAAAAAABfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADdQAAAAABcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdQAAAAAAdQAAAAACdQAAAAAAcAAAAAABfgAAAAAAdQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdQAAAAACdQAAAAADdQAAAAABcAAAAAACcAAAAAABdQAAAAADdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAADJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAABdQAAAAAAdQAAAAABcAAAAAACfgAAAAAAdQAAAAADdQAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACdQAAAAACcAAAAAADcAAAAAADcAAAAAADdQAAAAAAdQAAAAABfgAAAAAAcAAAAAABdQAAAAACdQAAAAACdQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAdQAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdQAAAAADdQAAAAADdQAAAAADcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADdQAAAAADdQAAAAACdQAAAAACcAAAAAADcAAAAAAAdQAAAAABcAAAAAAAcAAAAAABcAAAAAABaAAAAAACaAAAAAABaAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACdQAAAAADcAAAAAADcAAAAAACcAAAAAADdQAAAAAAcAAAAAABcAAAAAADcAAAAAACaAAAAAADaAAAAAAAaAAAAAACcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADdQAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdQAAAAADdQAAAAAAdQAAAAAAcAAAAAADfgAAAAAAdQAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdQAAAAADdQAAAAACdQAAAAACcAAAAAAAcAAAAAABdQAAAAADdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: XQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAABfgAAAAAAaAAAAAACaAAAAAABaAAAAAACaAAAAAADaAAAAAABfgAAAAAAXQAAAAABbQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAATgAAAAACXQAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAACaAAAAAACfgAAAAAAXQAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADaAAAAAACaAAAAAADaAAAAAACaAAAAAADaAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAAAaAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADXQAAAAACXQAAAAABXQAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAACfgAAAAAAaAAAAAAAaAAAAAABaAAAAAABaAAAAAACaAAAAAABfgAAAAAAXQAAAAADbQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAATgAAAAABXQAAAAADfgAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAACaAAAAAAAfgAAAAAAXQAAAAABbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAAAaAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAaAAAAAACaAAAAAABaAAAAAABaAAAAAACaAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAAAXQAAAAACXQAAAAACaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAggAAAAABfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAggAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAggAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJAAAAAADJAAAAAABJAAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADJAAAAAABHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACegAAAAACegAAAAAAegAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAaAAAAAADXQAAAAADegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABegAAAAADegAAAAAAegAAAAABXQAAAAAAXQAAAAABJAAAAAACfgAAAAAAaAAAAAABXQAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAaAAAAAACXQAAAAACJAAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACbQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAATgAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABbQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAJAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABJAAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABegAAAAADegAAAAACegAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAaAAAAAACXQAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADegAAAAADegAAAAABegAAAAADXQAAAAADXQAAAAAAJAAAAAACfgAAAAAAaAAAAAACXQAAAAABegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAAAJAAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACbQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAATgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 5,-1: ind: 5,-1 @@ -293,19 +293,19 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADXQAAAAAAXQAAAAADaAAAAAADaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACXQAAAAAAXQAAAAAAJAAAAAAAJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACXQAAAAADXQAAAAADJAAAAAABJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAXQAAAAADXQAAAAACaAAAAAACaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABXQAAAAABXQAAAAACJAAAAAAAJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADXQAAAAACXQAAAAAAJAAAAAACJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: CwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADJAAAAAADfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAKfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAACwAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAfwAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABJAAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAACwAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHfwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACfgAAAAAAfgAAAAAAJAAAAAABJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAKfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAJAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAJAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAJAAAAAAC version: 6 -5,-3: ind: -5,-3 @@ -313,7 +313,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -325,11 +325,11 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAFWwAAAAAAWwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAJgwAAAAAAgwAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAKfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAgwAAAAAAgwAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -337,15 +337,15 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAADBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAEfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAALCwAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEfwAAAAAABwAAAAACBwAAAAAAfwAAAAAABwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGfwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAKfwAAAAAAfgAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -372,20 +372,20 @@ entities: color: '#32CD32FF' id: Arrows decals: - 1684: 53,14 + 1654: 53,14 - node: angle: 1.5707963267948966 rad color: '#32CD32FF' id: Arrows decals: - 1685: 55,14 + 1655: 55,14 - node: angle: 4.71238898038469 rad color: '#DE3A3A96' id: Arrows decals: - 1170: 3,31 - 1171: 3,30 + 1141: 3,31 + 1142: 3,30 - node: angle: 1.5707963267948966 rad color: '#EFB34196' @@ -398,174 +398,174 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 6853: 46,14 + 6778: 46,14 - node: color: '#FFFFFFFF' id: Arrows decals: - 1827: 69,-28 - 1828: 70,-28 - 5960: -44.266167,24.17379 - 5961: -43.71579,24.16156 - 6625: 7.80612,-46.838108 - 6626: 8.233204,-46.827694 - 6848: 43.669937,12.024849 - 6849: 43.669937,12.431099 - 6850: 44.341812,12.009224 - 6851: 44.341812,12.399849 + 1797: 69,-28 + 1798: 70,-28 + 5887: -44.266167,24.17379 + 5888: -43.71579,24.16156 + 6550: 7.80612,-46.838108 + 6551: 8.233204,-46.827694 + 6773: 43.669937,12.024849 + 6774: 43.669937,12.431099 + 6775: 44.341812,12.009224 + 6776: 44.341812,12.399849 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 350: 44,-22 - 1244: 22,15 - 1302: -18,28 - 1723: 62,-25 - 1724: 62,-24 - 1865: 61,-18 - 1866: 61,-20 - 1890: 22,-38 - 1891: 22,-37 - 5958: -45.159,22.681658 - 5959: -45.17123,23.256496 + 348: 44,-22 + 1215: 22,15 + 1272: -18,28 + 1693: 62,-25 + 1694: 62,-24 + 1835: 61,-18 + 1836: 61,-20 + 1860: 22,-38 + 1861: 22,-37 + 5885: -45.159,22.681658 + 5886: -45.17123,23.256496 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2885: -25,37 + 2838: -25,37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 1248: 25,23 - 1249: 29,23 - 1748: 68.96644,-11.160069 - 1749: 69.96644,-11.15081 - 1750: 67.97107,-11.15544 - 5956: -43.71579,21.837746 - 5957: -44.32732,21.837746 - 6449: -33,-12 + 1219: 25,23 + 1220: 29,23 + 1718: 68.96644,-11.160069 + 1719: 69.96644,-11.15081 + 1720: 67.97107,-11.15544 + 5883: -43.71579,21.837746 + 5884: -44.32732,21.837746 + 6374: -33,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 1247: 25,12 - 5954: -42.87188,22.669428 - 5955: -42.85965,23.219805 + 1218: 25,12 + 5881: -42.87188,22.669428 + 5882: -42.85965,23.219805 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 309: 26,-21 - 2140: 26,1 + 307: 26,-21 + 2110: 26,1 - node: cleanable: True color: '#FFFFFFFF' id: Basalt1 decals: - 2926: 80.98914,-5.89228 + 2879: 80.98914,-5.89228 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 313: 25,-24 + 311: 25,-24 - node: cleanable: True color: '#FFFFFFFF' id: Basalt2 decals: - 2928: 79.36655,-6.805498 + 2881: 79.36655,-6.805498 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 312: 26,-24 - 1697: 57,19 + 310: 26,-24 + 1667: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 2925: 80.410225,-6.9767265 + 2878: 80.410225,-6.9767265 - node: color: '#FFFFFFFF' id: Basalt4 decals: - 315: 26,-24 - 916: -48,-27 + 313: 26,-24 + 887: -48,-27 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 311: 26,-22 - 314: 25,-23 - 915: -48,-28 - 2141: 25,1 + 309: 26,-22 + 312: 25,-23 + 886: -48,-28 + 2111: 25,1 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 914: -48,-29 + 885: -48,-29 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 310: 25,-22 - 913: -49,-29 - 1698: 57,18 + 308: 25,-22 + 884: -49,-29 + 1668: 57,18 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 2927: 80.88314,-7.8817906 + 2880: 80.88314,-7.8817906 - node: color: '#FFFFFFFF' id: Basalt8 decals: 34: -4,-12 - 917: -47,-30 + 888: -47,-30 - node: color: '#FFFFFFFF' id: Basalt9 decals: 33: -5,-12 - 308: 25,-21 + 306: 25,-21 - node: cleanable: True color: '#FFFFFFFF' id: Basalt9 decals: - 2929: 79.17086,-7.824714 + 2882: 79.17086,-7.824714 - node: color: '#D4D4D428' id: Bot decals: - 2095: -36,-58 - 2096: -36,-59 - 2097: -36,-60 - 2098: -36,-61 - 2099: -36,-62 - 2100: -36,-63 - 2101: -36,-64 - 2102: -60,-58 - 2103: -60,-59 - 2104: -60,-60 - 2105: -60,-61 - 2106: -60,-62 - 2107: -60,-63 - 2108: -60,-64 + 2065: -36,-58 + 2066: -36,-59 + 2067: -36,-60 + 2068: -36,-61 + 2069: -36,-62 + 2070: -36,-63 + 2071: -36,-64 + 2072: -60,-58 + 2073: -60,-59 + 2074: -60,-60 + 2075: -60,-61 + 2076: -60,-62 + 2077: -60,-63 + 2078: -60,-64 - node: color: '#DE3A3A41' id: Bot decals: - 6379: -38,-45 - 6380: -38,-45 + 6304: -38,-45 + 6305: -38,-45 - node: color: '#EFB34196' id: Bot @@ -597,592 +597,592 @@ entities: 152: 2,-28 153: 2,-24 154: 2,-23 - 184: 4,-24 - 185: 9,-21 - 202: 14,-26 - 203: 12,-25 - 204: 11,-25 - 205: 16,-25 - 206: 17,-25 - 238: 10,-21 - 250: 22,-17 - 251: 22,-18 - 252: 22,-19 - 253: 23,-17 - 254: 23,-18 - 255: 23,-19 - 256: 24,-17 - 257: 24,-18 - 258: 24,-19 - 259: 25,-17 - 260: 25,-19 - 261: 25,-18 - 262: 18,-15 - 263: 19,-15 - 264: 20,-15 - 265: 22,-15 - 266: 23,-15 - 267: 24,-15 - 288: 18,-21 - 289: 15,-22 - 290: 15,-21 - 6840: 41,13 - 6841: 41,12 - 6842: 41,11 - 6843: 47,11 - 6844: 45,11 - 6845: 45,12 - 6846: 43,11 - 6847: 43,12 + 183: 4,-24 + 184: 9,-21 + 201: 14,-26 + 202: 12,-25 + 203: 11,-25 + 204: 16,-25 + 205: 17,-25 + 236: 10,-21 + 248: 22,-17 + 249: 22,-18 + 250: 22,-19 + 251: 23,-17 + 252: 23,-18 + 253: 23,-19 + 254: 24,-17 + 255: 24,-18 + 256: 24,-19 + 257: 25,-17 + 258: 25,-19 + 259: 25,-18 + 260: 18,-15 + 261: 19,-15 + 262: 20,-15 + 263: 22,-15 + 264: 23,-15 + 265: 24,-15 + 286: 18,-21 + 287: 15,-22 + 288: 15,-21 + 6765: 41,13 + 6766: 41,12 + 6767: 41,11 + 6768: 47,11 + 6769: 45,11 + 6770: 45,12 + 6771: 43,11 + 6772: 43,12 - node: color: '#EFB341FF' id: Bot decals: - 227: 0,-26 - 228: -1,-26 - 291: 15,-21 - 292: 15,-22 + 225: 0,-26 + 226: -1,-26 + 289: 15,-21 + 290: 15,-22 - node: color: '#FFFFFF4A' id: Bot decals: - 6496: 18,-56 - 6497: 19,-56 + 6421: 18,-56 + 6422: 19,-56 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 1725: 63,-25 - 1726: 63,-24 - 1727: 65,-25 - 1728: 65,-24 + 1695: 63,-25 + 1696: 63,-24 + 1697: 65,-25 + 1698: 65,-24 - node: color: '#FFFFFFFF' id: Bot decals: - 307: -14,1 - 333: 22,-27 - 334: 9,-28 - 345: 45,-26 - 346: 40,-22 - 347: 41,-22 - 348: 42,-22 - 380: -21,-2 - 393: -25,21 - 412: -21,-28 - 413: -21,-27 - 414: -21,-26 - 479: -35,-5 - 480: -30,-5 - 717: -38,-34 - 718: -37,-34 - 719: -36,-34 - 762: -19,-35 - 860: -52,3 - 861: -52,-1 - 1059: 33,-3 - 1060: 34,-3 - 1084: 39,-28 - 1085: -26,-32 - 1086: 49,-22 - 1087: 35,2 - 1088: 21,21 - 1089: 34,-37 - 1090: -62,-29 - 1100: -5,31 - 1101: -6,31 - 1102: -6,32 - 1103: -5,32 - 1106: 2,26 - 1207: -1,27 - 1208: 7,30 - 1209: 7,31 - 1210: 7,32 - 1211: 7,33 - 1212: 6,33 - 1213: 2,32 - 1224: -4,48 - 1241: 23,15 - 1242: 23,13 - 1250: 23,8 - 1251: 23,7 - 1252: 23,6 - 1253: 24,6 - 1254: 24,7 - 1255: 24,8 - 1256: 25,6 - 1263: 25,7 - 1264: 25,8 - 1265: 26,20 - 1266: 25,20 - 1267: 24,20 - 1268: 24,19 - 1269: 25,19 - 1270: 26,19 - 1271: 28,20 - 1272: 29,20 - 1273: 30,20 - 1274: 28,19 - 1275: 29,19 - 1276: 30,19 - 1283: 29,17 - 1294: -10,34 - 1295: -9,34 - 1296: -8,34 - 1297: -7,34 - 1301: -18,25 - 1304: 33,17 - 1406: 58,-33 - 1413: 57,-35 - 1705: 61,-12 - 1706: 57,-15 - 1707: 57,-14 - 1711: 64,-24 - 1712: 64,-25 - 1745: 71,-11 - 1746: 71,-12 - 1747: 71,-13 - 1807: 63,-19 - 1812: 70,-22 - 1841: 69,-13 - 1870: 22,-39 - 1889: 22,-36 - 1930: 28,-36 - 1931: 29,-36 - 1932: 28,-47 - 1987: 12,-46 - 1988: 13,-46 - 2029: -2,-35 - 2030: -1,-35 - 2031: 3,-38 - 2032: 3,-37 - 2037: 10,-41 - 2043: 12,-38 - 2062: -6,-34 - 2063: -5,-34 - 2064: -4,-34 - 2112: 41,-10 - 2113: -23,12 - 2724: 66,-23 - 2756: -27,30 - 2769: 57,15 - 3047: 75,-13 - 3048: 75,-15 - 3053: 75,-19 - 3054: 75,-17 - 6163: 48,-10 - 6164: 51,5 - 6165: 53,10 - 6307: -36,-65 - 6308: -60,-65 - 6437: -34,-11 - 6438: -34,-10 - 6439: -32,-11 - 6440: -32,-10 - 6459: 61,-21 - 6466: -24,-42 - 6476: 3,48 - 6581: 54,-33 - 6585: 22,-59 - 6586: 15,-59 - 6589: -19,-38 - 6615: 7,-48 - 6616: 7,-49 - 6617: 9,-48 - 6618: 9,-49 - 6627: 7,-45 - 6628: 9,-45 - 6629: 76,-23 - 6630: 80,-25 - 6631: 76,-25 - 6642: 76,-23 - 6643: 58,-27 - 6644: 58,-26 - 6645: 49,17 - 6646: 50,17 - 6647: 53,17 - 6648: 54,17 - 6649: 55,17 - 6650: 69,6 - 6651: 68,4 - 6652: 69,4 - 6653: 67,0 - 6654: 65,-4 - 6655: 65,-5 - 6656: 79,-11 - 6657: 80,-11 - 6658: 81,-11 - 6659: 21,-41 - 6660: 5,-42 - 6661: 5,-43 - 6662: 5,-40 - 6663: 5,-39 - 6664: -12,-34 - 6665: -11,-34 - 6666: -10,-34 - 6667: -14,-34 - 6668: -15,-34 - 6669: -62,-32 - 6670: -63,-32 - 6671: -64,-32 - 6672: -46,-12 - 6673: -45,-12 - 6674: -41,17 - 6675: -40,17 - 6676: -39,17 - 6677: -21,31 - 6678: -20,31 - 6679: -7,38 - 6680: -6,38 - 6681: -5,38 - 6682: 3,38 - 6683: -11,17 - 6684: -10,17 - 6685: -9,17 - 6686: -12,17 - 6687: -13,17 - 6688: 1,16 - 6689: 2,16 - 6690: 3,16 - 6691: 10,16 - 6692: 11,16 - 6693: 15,4 - 6694: 17,1 - 6695: -14,-12 - 6696: -14,-11 - 6697: 39,-7 - 6698: 39,-8 - 6699: 39,-9 - 6700: 39,-10 - 6701: 39,-11 - 6702: 73,-21 - 6703: 73,-22 - 6704: 45,-10 - 6705: 45,-11 - 6706: 15,1 - 6707: -17,17 - 6708: 45,-17 - 6709: 45,-16 - 6710: 45,-15 - 6711: -37,-42 - 6712: -37,-40 - 6713: -37,-41 - 6752: -29,15 - 6825: 47,12 - 6854: 45,15 - 6896: 82,-11 - 6904: 59,-4 - 6945: -11,-40 - 6946: -12,-40 - 6995: 55,-30 - 6996: 56,-30 - 6999: 53,-24 - 7009: 65,19 - 7010: 65,21 + 305: -14,1 + 331: 22,-27 + 332: 9,-28 + 343: 45,-26 + 344: 40,-22 + 345: 41,-22 + 346: 42,-22 + 378: -21,-2 + 391: -25,21 + 410: -21,-28 + 411: -21,-27 + 412: -21,-26 + 688: -38,-34 + 689: -37,-34 + 690: -36,-34 + 733: -19,-35 + 831: -52,3 + 832: -52,-1 + 1030: 33,-3 + 1031: 34,-3 + 1055: 39,-28 + 1056: -26,-32 + 1057: 49,-22 + 1058: 35,2 + 1059: 21,21 + 1060: 34,-37 + 1061: -62,-29 + 1071: -5,31 + 1072: -6,31 + 1073: -6,32 + 1074: -5,32 + 1077: 2,26 + 1178: -1,27 + 1179: 7,30 + 1180: 7,31 + 1181: 7,32 + 1182: 7,33 + 1183: 6,33 + 1184: 2,32 + 1195: -4,48 + 1212: 23,15 + 1213: 23,13 + 1221: 23,8 + 1222: 23,7 + 1223: 23,6 + 1224: 24,6 + 1225: 24,7 + 1226: 24,8 + 1227: 25,6 + 1234: 25,7 + 1235: 25,8 + 1236: 26,20 + 1237: 25,20 + 1238: 24,20 + 1239: 24,19 + 1240: 25,19 + 1241: 28,20 + 1242: 29,20 + 1243: 30,20 + 1244: 28,19 + 1245: 29,19 + 1246: 30,19 + 1253: 29,17 + 1264: -10,34 + 1265: -9,34 + 1266: -8,34 + 1267: -7,34 + 1271: -18,25 + 1274: 33,17 + 1376: 58,-33 + 1383: 57,-35 + 1675: 61,-12 + 1676: 57,-15 + 1677: 57,-14 + 1681: 64,-24 + 1682: 64,-25 + 1715: 71,-11 + 1716: 71,-12 + 1717: 71,-13 + 1777: 63,-19 + 1782: 70,-22 + 1811: 69,-13 + 1840: 22,-39 + 1859: 22,-36 + 1900: 28,-36 + 1901: 29,-36 + 1902: 28,-47 + 1957: 12,-46 + 1958: 13,-46 + 1999: -2,-35 + 2000: -1,-35 + 2001: 3,-38 + 2002: 3,-37 + 2007: 10,-41 + 2013: 12,-38 + 2032: -6,-34 + 2033: -5,-34 + 2034: -4,-34 + 2082: 41,-10 + 2083: -23,12 + 2694: 66,-23 + 2726: -27,30 + 2739: 57,15 + 3000: 75,-13 + 3001: 75,-15 + 3006: 75,-19 + 3007: 75,-17 + 6089: 48,-10 + 6090: 51,5 + 6091: 53,10 + 6232: -36,-65 + 6233: -60,-65 + 6362: -34,-11 + 6363: -34,-10 + 6364: -32,-11 + 6365: -32,-10 + 6384: 61,-21 + 6391: -24,-42 + 6401: 3,48 + 6506: 54,-33 + 6510: 22,-59 + 6511: 15,-59 + 6514: -19,-38 + 6540: 7,-48 + 6541: 7,-49 + 6542: 9,-48 + 6543: 9,-49 + 6552: 7,-45 + 6553: 9,-45 + 6554: 76,-23 + 6555: 80,-25 + 6556: 76,-25 + 6567: 76,-23 + 6568: 58,-27 + 6569: 58,-26 + 6570: 49,17 + 6571: 50,17 + 6572: 53,17 + 6573: 54,17 + 6574: 55,17 + 6575: 69,6 + 6576: 68,4 + 6577: 69,4 + 6578: 67,0 + 6579: 65,-4 + 6580: 65,-5 + 6581: 79,-11 + 6582: 80,-11 + 6583: 81,-11 + 6584: 21,-41 + 6585: 5,-42 + 6586: 5,-43 + 6587: 5,-40 + 6588: 5,-39 + 6589: -12,-34 + 6590: -11,-34 + 6591: -10,-34 + 6592: -14,-34 + 6593: -15,-34 + 6594: -62,-32 + 6595: -63,-32 + 6596: -64,-32 + 6597: -46,-12 + 6598: -45,-12 + 6599: -41,17 + 6600: -40,17 + 6601: -39,17 + 6602: -21,31 + 6603: -20,31 + 6604: -7,38 + 6605: -6,38 + 6606: -5,38 + 6607: 3,38 + 6608: -11,17 + 6609: -10,17 + 6610: -9,17 + 6611: -12,17 + 6612: -13,17 + 6613: 1,16 + 6614: 2,16 + 6615: 3,16 + 6616: 10,16 + 6617: 11,16 + 6618: 15,4 + 6619: 17,1 + 6620: -14,-12 + 6621: -14,-11 + 6622: 39,-7 + 6623: 39,-8 + 6624: 39,-9 + 6625: 39,-10 + 6626: 39,-11 + 6627: 73,-21 + 6628: 73,-22 + 6629: 45,-10 + 6630: 45,-11 + 6631: 15,1 + 6632: -17,17 + 6633: 45,-17 + 6634: 45,-16 + 6635: 45,-15 + 6636: -37,-42 + 6637: -37,-40 + 6638: -37,-41 + 6677: -29,15 + 6750: 47,12 + 6779: 45,15 + 6821: 82,-11 + 6829: 59,-4 + 6870: -11,-40 + 6871: -12,-40 + 6920: 55,-30 + 6921: 56,-30 + 6924: 53,-24 + 6934: 65,19 + 6935: 65,21 + 6947: 26,19 + 6973: -29,-5 + 6974: -36,-5 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2853: -25,34 - 2854: -25,35 - 2855: -30,35 - 2856: -30,34 - 2882: -23,38 - 2883: -10,38 - 2884: -9,38 - 2930: 78,-8 - 2931: 79,-8 + 2806: -25,34 + 2807: -25,35 + 2808: -30,35 + 2809: -30,34 + 2835: -23,38 + 2836: -10,38 + 2837: -9,38 + 2883: 78,-8 + 2884: 79,-8 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 6325: 91,-19 - 6326: 91,-18 - 6327: 92,-18 - 6328: 92,-19 - 6329: 87,-19 - 6330: 88,-19 - 6331: 88,-18 - 6332: 87,-18 + 6250: 91,-19 + 6251: 91,-18 + 6252: 92,-18 + 6253: 92,-19 + 6254: 87,-19 + 6255: 88,-19 + 6256: 88,-18 + 6257: 87,-18 - node: color: '#52B4E996' id: BotGreyscale decals: - 6068: 55,8 - 6069: 55,8 - 6070: 56,8 - 6071: 56,8 - 6085: 57,1 - 6086: 57,1 - 6087: 56,1 - 6088: 56,1 - 6089: 55,4 - 6090: 55,4 - 6091: 56,4 - 6092: 56,4 - 6093: 57,4 - 6094: 57,4 + 5995: 55,8 + 5996: 55,8 + 5997: 56,8 + 5998: 56,8 + 6011: 57,1 + 6012: 57,1 + 6013: 56,1 + 6014: 56,1 + 6015: 55,4 + 6016: 55,4 + 6017: 56,4 + 6018: 56,4 + 6019: 57,4 + 6020: 57,4 - node: cleanable: True color: '#D4D4D428' id: BotGreyscale decals: - 2903: 78,-30 + 2856: 78,-30 - node: color: '#EFB34196' id: BotLeft decals: - 6856: 43,14 + 6781: 43,14 - node: cleanable: True color: '#EFB341FF' id: BotLeft decals: - 5894: 6,-14 - 5896: 6,-14 + 5821: 6,-14 + 5823: 6,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1805: 74,-13 - 1806: 74,-12 - 1871: 23,-39 - 1872: 24,-39 - 1873: 25,-39 - 2041: 12,-39 - 6287: -3,33 - 6753: -33,12 - 6754: -34,12 - 6755: -35,12 - 6756: -35,11 - 6757: -34,11 - 6758: -33,11 - 6903: 60,-4 - 6997: 54,-24 + 1775: 74,-13 + 1776: 74,-12 + 1841: 23,-39 + 1842: 24,-39 + 1843: 25,-39 + 2011: 12,-39 + 6212: -3,33 + 6678: -33,12 + 6679: -34,12 + 6680: -35,12 + 6681: -35,11 + 6682: -34,11 + 6683: -33,11 + 6828: 60,-4 + 6922: 54,-24 - node: cleanable: True color: '#FFFFFFFF' id: BotLeft decals: - 5891: 6,-14 + 5818: 6,-14 - node: color: '#D4D4D496' id: BotLeftGreyscale decals: - 6634: 77,-30 - 6635: 76,-30 + 6559: 77,-30 + 6560: 76,-30 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotLeftGreyscale decals: - 6367: -1,-20 - 6368: -1,-21 + 6292: -1,-20 + 6293: -1,-21 - node: cleanable: True color: '#EFB341FF' id: BotLeftGreyscale decals: - 5895: 6,-14 + 5822: 6,-14 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotRight decals: - 6369: -2,-21 - 6370: -2,-20 + 6294: -2,-21 + 6295: -2,-20 - node: color: '#EFB34196' id: BotRight decals: - 6855: 47,14 + 6780: 47,14 - node: cleanable: True color: '#EFB341FF' id: BotRight decals: - 5897: 6,-15 + 5824: 6,-15 - node: color: '#FFFFFFFF' id: BotRight decals: - 1803: 73,-12 - 1804: 73,-13 - 1874: 23,-36 - 1875: 24,-36 - 1876: 25,-36 - 2042: 12,-40 - 6288: -3,34 - 6759: -35,16 - 6760: -34,16 - 6761: -33,16 - 6762: -33,17 - 6763: -34,17 - 6764: -35,17 - 6902: 58,-4 - 6998: 52,-24 + 1773: 73,-12 + 1774: 73,-13 + 1844: 23,-36 + 1845: 24,-36 + 1846: 25,-36 + 2012: 12,-40 + 6213: -3,34 + 6684: -35,16 + 6685: -34,16 + 6686: -33,16 + 6687: -33,17 + 6688: -34,17 + 6689: -35,17 + 6827: 58,-4 + 6923: 52,-24 - node: cleanable: True color: '#FFFFFFFF' id: BotRight decals: - 5892: 6,-15 + 5819: 6,-15 - node: color: '#D4D4D496' id: BotRightGreyscale decals: - 6632: 79,-30 - 6633: 80,-30 + 6557: 79,-30 + 6558: 80,-30 - node: cleanable: True color: '#EFB341FF' id: BotRightGreyscale decals: - 5893: 6,-15 + 5820: 6,-15 - node: color: '#EFB34196' id: Box decals: - 6852: 45,14 + 6777: 45,14 - node: color: '#FFFFFFFF' id: Box decals: - 1061: 33,0 - 1062: 34,0 - 1091: -57,-24 - 1092: -56,-24 - 1904: 19,-37 - 1905: 19,-36 - 6352: 92,-20 - 6749: -31,17 - 6750: -30,17 - 6751: -29,16 - 6765: -31,12 - 6766: -30,12 - 6767: -30,11 - 6768: -31,11 - 6818: 47,16 - 6905: 60,-8 - 6906: 61,-8 - 7000: 66,-25 - 7001: 66,-24 + 1032: 33,0 + 1033: 34,0 + 1062: -57,-24 + 1063: -56,-24 + 1874: 19,-37 + 1875: 19,-36 + 6277: 92,-20 + 6674: -31,17 + 6675: -30,17 + 6676: -29,16 + 6690: -31,12 + 6691: -30,12 + 6692: -30,11 + 6693: -31,11 + 6743: 47,16 + 6830: 60,-8 + 6831: 61,-8 + 6925: 66,-25 + 6926: 66,-24 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: - 6915: 57,-8 + 6840: 57,-8 - node: color: '#52B4E996' id: BrickLineOverlayS decals: - 6916: 58,-8 + 6841: 58,-8 - node: color: '#FFFFFFFF' id: BrickLineOverlayS decals: - 6907: 58,-5 - 6908: 59,-5 - 6909: 60,-5 + 6832: 58,-5 + 6833: 59,-5 + 6834: 60,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 770: -31,-36 - 1042: 28,-29 - 1405: 58,-34 - 1820: 69,-29 - 2011: 22,-53 - 6614: 9,-48 + 741: -31,-36 + 1013: 28,-29 + 1375: 58,-34 + 1790: 69,-29 + 1981: 22,-53 + 6539: 9,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 128: 0,-21 - 769: -33,-36 - 1040: 24,-29 - 1402: 56,-34 - 1819: 70,-29 - 2014: 15,-53 - 6613: 7,-48 + 740: -33,-36 + 1011: 24,-29 + 1372: 56,-34 + 1789: 70,-29 + 1984: 15,-53 + 6538: 7,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 768: -31,-38 - 969: 46,-34 - 1041: 28,-34 - 1403: 58,-36 - 1822: 69,-30 - 1989: 17,-53 - 2013: 22,-60 - 6612: 9,-49 + 739: -31,-38 + 940: 46,-34 + 1012: 28,-34 + 1373: 58,-36 + 1792: 69,-30 + 1959: 17,-53 + 1983: 22,-60 + 6537: 9,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 767: -33,-38 - 968: 34,-34 - 1043: 24,-34 - 1404: 56,-36 - 1821: 70,-30 - 1990: 20,-53 - 2012: 15,-60 - 6611: 7,-49 + 738: -33,-38 + 939: 34,-34 + 1014: 24,-34 + 1374: 56,-36 + 1791: 70,-30 + 1960: 20,-53 + 1982: 15,-60 + 6536: 7,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 119: -4,-16 - 604: -39,-16 - 1127: -4,21 - 1397: 56,-36 - 1744: 70,-11 - 1799: 74,-17 - 1802: 74,-14 - 2005: 15,-60 - 2010: 22,-53 - 2017: 21,-53 - 2018: 22,-54 + 575: -39,-16 + 1098: -4,21 + 1367: 56,-36 + 1714: 70,-11 + 1769: 74,-17 + 1772: 74,-14 + 1975: 15,-60 + 1980: 22,-53 + 1987: 21,-53 + 1988: 22,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 46: -12,-19 81: -5,-15 - 231: 0,-22 - 1126: -1,21 - 1396: 58,-36 - 1743: 68,-11 - 2006: 22,-60 - 2009: 15,-53 - 2015: 16,-53 - 2016: 15,-54 + 229: 0,-22 + 1097: -1,21 + 1366: 58,-36 + 1713: 68,-11 + 1976: 22,-60 + 1979: 15,-53 + 1985: 16,-53 + 1986: 15,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 603: -39,-13 - 1132: -4,27 - 1395: 56,-34 - 1800: 74,-15 - 1801: 74,-19 - 2004: 15,-53 - 2007: 22,-60 - 2019: 21,-60 + 574: -39,-13 + 1103: -4,27 + 1365: 56,-34 + 1770: 74,-15 + 1771: 74,-19 + 1974: 15,-53 + 1977: 22,-60 + 1989: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: 45: -12,-14 - 478: -25,-1 - 1394: 58,-34 - 2003: 22,-53 - 2008: 15,-60 - 2020: 16,-60 + 451: -25,-1 + 1364: 58,-34 + 1973: 22,-53 + 1978: 15,-60 + 1990: 16,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1190,102 +1190,102 @@ entities: 82: -4,-14 83: -4,-13 118: -4,-15 - 169: 8,-18 - 170: 8,-20 - 171: 8,-19 - 172: 8,-21 - 173: 8,-22 - 174: 8,-23 - 175: 8,-24 - 176: 8,-25 - 221: 10,-18 - 222: 10,-17 - 302: -15,-1 - 303: -15,0 - 304: -15,2 - 305: -15,1 - 306: -15,3 - 389: -19,17 - 390: -19,21 - 418: -20,-28 - 419: -20,-27 - 420: -20,-26 - 489: -38,1 - 490: -30,1 - 491: -38,2 - 492: -34,2 - 493: -34,1 - 500: -30,2 - 587: -39,-15 - 588: -39,-14 - 679: -41,-34 - 680: -41,-33 - 681: -41,-32 - 682: -41,-31 - 683: -41,-30 - 684: -41,-29 - 685: -41,-28 - 686: -41,-27 - 687: -41,-26 - 688: -41,-25 - 707: -37,-15 - 708: -37,-14 - 709: -34,-15 - 710: -34,-14 - 711: -31,-15 - 712: -31,-14 - 713: -28,-15 - 714: -28,-14 - 757: -27,-38 - 758: -27,-37 - 765: -32,-40 - 766: -32,-39 - 774: -31,-37 - 775: -52,-2 - 776: -52,-3 - 777: -52,4 - 778: -52,5 - 895: -48,12 - 896: -48,13 - 943: -48,9 - 944: -48,10 - 945: -46,11 - 1022: 42,-34 - 1026: 28,-33 - 1027: 28,-32 - 1028: 28,-31 - 1033: 28,-30 - 1122: -4,23 - 1123: -4,24 - 1124: -4,24 - 1125: -4,25 - 1144: -3,36 - 1145: -3,37 - 1146: -3,38 - 1217: 0,45 - 1218: 0,46 - 1219: 0,47 - 1230: 0,48 - 1391: 56,-35 - 1398: 58,-35 - 1815: 69,-30 - 1816: 69,-29 - 1867: 22,-39 - 1868: 22,-38 - 1869: 22,-37 - 1910: 27,-47 - 1911: 27,-46 - 1912: 27,-45 - 1913: 27,-44 - 1914: 27,-43 - 1915: 27,-42 - 1999: 15,-58 - 2000: 15,-57 - 2001: 15,-55 - 2002: 15,-54 - 2025: 16,-60 - 6166: 53,12 - 6167: 53,11 + 168: 8,-18 + 169: 8,-20 + 170: 8,-19 + 171: 8,-21 + 172: 8,-22 + 173: 8,-23 + 174: 8,-24 + 175: 8,-25 + 219: 10,-18 + 220: 10,-17 + 300: -15,-1 + 301: -15,0 + 302: -15,2 + 303: -15,1 + 304: -15,3 + 387: -19,17 + 388: -19,21 + 416: -20,-28 + 417: -20,-27 + 418: -20,-26 + 460: -38,1 + 461: -30,1 + 462: -38,2 + 463: -34,2 + 464: -34,1 + 471: -30,2 + 558: -39,-15 + 559: -39,-14 + 650: -41,-34 + 651: -41,-33 + 652: -41,-32 + 653: -41,-31 + 654: -41,-30 + 655: -41,-29 + 656: -41,-28 + 657: -41,-27 + 658: -41,-26 + 659: -41,-25 + 678: -37,-15 + 679: -37,-14 + 680: -34,-15 + 681: -34,-14 + 682: -31,-15 + 683: -31,-14 + 684: -28,-15 + 685: -28,-14 + 728: -27,-38 + 729: -27,-37 + 736: -32,-40 + 737: -32,-39 + 745: -31,-37 + 746: -52,-2 + 747: -52,-3 + 748: -52,4 + 749: -52,5 + 866: -48,12 + 867: -48,13 + 914: -48,9 + 915: -48,10 + 916: -46,11 + 993: 42,-34 + 997: 28,-33 + 998: 28,-32 + 999: 28,-31 + 1004: 28,-30 + 1093: -4,23 + 1094: -4,24 + 1095: -4,24 + 1096: -4,25 + 1115: -3,36 + 1116: -3,37 + 1117: -3,38 + 1188: 0,45 + 1189: 0,46 + 1190: 0,47 + 1201: 0,48 + 1361: 56,-35 + 1368: 58,-35 + 1785: 69,-30 + 1786: 69,-29 + 1837: 22,-39 + 1838: 22,-38 + 1839: 22,-37 + 1880: 27,-47 + 1881: 27,-46 + 1882: 27,-45 + 1883: 27,-44 + 1884: 27,-43 + 1885: 27,-42 + 1969: 15,-58 + 1970: 15,-57 + 1971: 15,-55 + 1972: 15,-54 + 1995: 16,-60 + 6092: 53,12 + 6093: 53,11 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1301,95 +1301,95 @@ entities: 127: 0,-21 135: -10,-27 136: -5,-27 - 229: -2,-22 - 230: -1,-22 - 244: 5,-29 - 245: 6,-29 - 246: 7,-29 - 247: 8,-29 - 248: 9,-29 - 249: 23,-22 - 576: -38,-16 - 577: -37,-16 - 578: -36,-16 - 579: -35,-16 - 580: -34,-16 - 581: -32,-16 - 582: -33,-16 - 583: -31,-16 - 584: -29,-16 - 585: -30,-16 - 586: -28,-16 - 771: -32,-36 - 956: 35,-38 - 957: 36,-38 - 958: 37,-38 - 959: 38,-38 - 960: 39,-38 - 961: 40,-38 - 962: 41,-38 - 963: 42,-38 - 964: 43,-38 - 965: 44,-38 - 989: 46,-38 - 994: 31,-35 - 995: 32,-35 - 996: 33,-35 - 997: 47,-35 - 998: 48,-35 - 999: 49,-35 - 1037: 25,-29 - 1038: 26,-29 - 1039: 27,-29 - 1056: 30,-2 - 1057: 31,-2 - 1058: 32,-2 - 1073: -46,-16 - 1074: -45,-16 - 1075: -44,-16 - 1128: -2,21 - 1129: -3,21 - 1220: -3,51 - 1221: -2,51 - 1222: 1,51 - 1223: 2,51 - 1393: 57,-36 - 1400: 57,-34 - 1451: -52,-49 - 1452: -51,-49 - 1453: -50,-49 - 1454: -48,-49 - 1455: -49,-49 - 1456: -48,-49 - 1457: -48,-49 - 1458: -47,-49 - 1459: -46,-49 - 1460: -45,-49 - 1461: -44,-49 - 1741: 67,-11 - 1742: 71,-11 - 1825: 71,-29 - 1826: 68,-29 - 1924: 28,-43 - 1925: 29,-43 - 1993: 16,-60 - 1994: 21,-60 - 2021: 15,-57 - 2022: 22,-57 - 5881: -14,-23 - 5882: -15,-23 - 5883: -16,-23 - 6340: 87,-20 - 6341: 88,-20 - 6342: 89,-20 - 6343: 90,-20 - 6344: 91,-20 - 6345: 92,-20 - 6600: 33,-2 - 6601: 34,-2 - 6608: 7,-48 - 6609: 8,-48 - 6610: 9,-48 + 227: -2,-22 + 228: -1,-22 + 242: 5,-29 + 243: 6,-29 + 244: 7,-29 + 245: 8,-29 + 246: 9,-29 + 247: 23,-22 + 547: -38,-16 + 548: -37,-16 + 549: -36,-16 + 550: -35,-16 + 551: -34,-16 + 552: -32,-16 + 553: -33,-16 + 554: -31,-16 + 555: -29,-16 + 556: -30,-16 + 557: -28,-16 + 742: -32,-36 + 927: 35,-38 + 928: 36,-38 + 929: 37,-38 + 930: 38,-38 + 931: 39,-38 + 932: 40,-38 + 933: 41,-38 + 934: 42,-38 + 935: 43,-38 + 936: 44,-38 + 960: 46,-38 + 965: 31,-35 + 966: 32,-35 + 967: 33,-35 + 968: 47,-35 + 969: 48,-35 + 970: 49,-35 + 1008: 25,-29 + 1009: 26,-29 + 1010: 27,-29 + 1027: 30,-2 + 1028: 31,-2 + 1029: 32,-2 + 1044: -46,-16 + 1045: -45,-16 + 1046: -44,-16 + 1099: -2,21 + 1100: -3,21 + 1191: -3,51 + 1192: -2,51 + 1193: 1,51 + 1194: 2,51 + 1363: 57,-36 + 1370: 57,-34 + 1421: -52,-49 + 1422: -51,-49 + 1423: -50,-49 + 1424: -48,-49 + 1425: -49,-49 + 1426: -48,-49 + 1427: -48,-49 + 1428: -47,-49 + 1429: -46,-49 + 1430: -45,-49 + 1431: -44,-49 + 1711: 67,-11 + 1712: 71,-11 + 1795: 71,-29 + 1796: 68,-29 + 1894: 28,-43 + 1895: 29,-43 + 1963: 16,-60 + 1964: 21,-60 + 1991: 15,-57 + 1992: 22,-57 + 5808: -14,-23 + 5809: -15,-23 + 5810: -16,-23 + 6265: 87,-20 + 6266: 88,-20 + 6267: 89,-20 + 6268: 90,-20 + 6269: 91,-20 + 6270: 92,-20 + 6525: 33,-2 + 6526: 34,-2 + 6533: 7,-48 + 6534: 8,-48 + 6535: 9,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1404,107 +1404,107 @@ entities: 78: -4,-19 91: -10,-19 92: -4,-19 - 464: -40,-1 - 465: -39,-1 - 466: -38,-1 - 467: -36,-1 - 468: -35,-1 - 469: -34,-1 - 470: -33,-1 - 471: -32,-1 - 472: -31,-1 - 473: -30,-1 - 474: -29,-1 - 475: -28,-1 - 476: -27,-1 - 477: -26,-1 - 488: -37,-1 - 573: -29,-18 - 574: -30,-18 - 575: -28,-18 - 589: -38,-13 - 590: -37,-13 - 591: -35,-13 - 592: -36,-13 - 593: -35,-13 - 594: -34,-13 - 595: -33,-13 - 596: -32,-13 - 597: -31,-13 - 598: -31,-13 - 599: -30,-13 - 600: -28,-13 - 601: -28,-13 - 602: -29,-13 - 772: -32,-38 - 947: 31,-25 - 948: 32,-25 - 949: 33,-25 - 950: 47,-25 - 951: 49,-25 - 952: 48,-25 - 966: 35,-34 - 967: 45,-34 - 979: 39,-35 - 1034: 25,-34 - 1035: 26,-34 - 1036: 27,-34 - 1093: -57,-27 - 1094: -56,-27 - 1095: -55,-27 - 1096: -54,-27 - 1130: -3,27 - 1131: -2,27 - 1392: 57,-34 - 1401: 57,-36 - 1462: -56,-54 - 1463: -55,-54 - 1464: -54,-54 - 1465: -41,-54 - 1466: -40,-54 - 1823: 68,-30 - 1824: 71,-30 - 1926: 28,-46 - 1927: 29,-46 - 1991: 16,-53 - 1992: 21,-53 - 2023: 22,-55 - 2024: 15,-55 - 2048: 10,-40 - 2049: 11,-40 - 2111: -42,-54 - 5878: -14,-25 - 5879: -15,-25 - 5880: -16,-25 - 5963: -3,43 - 5964: -2,43 - 5965: -1,43 - 6140: 49,-11 - 6141: 52,-11 - 6304: -29,-17 - 6346: 87,-21 - 6347: 89,-21 - 6348: 88,-21 - 6349: 90,-21 - 6350: 91,-21 - 6351: 92,-21 - 6605: 7,-49 - 6606: 8,-49 - 6607: 9,-49 + 440: -40,-1 + 441: -39,-1 + 442: -38,-1 + 443: -36,-1 + 444: -34,-1 + 445: -33,-1 + 446: -32,-1 + 447: -31,-1 + 448: -28,-1 + 449: -27,-1 + 450: -26,-1 + 459: -37,-1 + 544: -29,-18 + 545: -30,-18 + 546: -28,-18 + 560: -38,-13 + 561: -37,-13 + 562: -35,-13 + 563: -36,-13 + 564: -35,-13 + 565: -34,-13 + 566: -33,-13 + 567: -32,-13 + 568: -31,-13 + 569: -31,-13 + 570: -30,-13 + 571: -28,-13 + 572: -28,-13 + 573: -29,-13 + 743: -32,-38 + 918: 31,-25 + 919: 32,-25 + 920: 33,-25 + 921: 47,-25 + 922: 49,-25 + 923: 48,-25 + 937: 35,-34 + 938: 45,-34 + 950: 39,-35 + 1005: 25,-34 + 1006: 26,-34 + 1007: 27,-34 + 1064: -57,-27 + 1065: -56,-27 + 1066: -55,-27 + 1067: -54,-27 + 1101: -3,27 + 1102: -2,27 + 1362: 57,-34 + 1371: 57,-36 + 1432: -56,-54 + 1433: -55,-54 + 1434: -54,-54 + 1435: -41,-54 + 1436: -40,-54 + 1793: 68,-30 + 1794: 71,-30 + 1896: 28,-46 + 1897: 29,-46 + 1961: 16,-53 + 1962: 21,-53 + 1993: 22,-55 + 1994: 15,-55 + 2018: 10,-40 + 2019: 11,-40 + 2081: -42,-54 + 5805: -14,-25 + 5806: -15,-25 + 5807: -16,-25 + 5890: -3,43 + 5891: -2,43 + 5892: -1,43 + 6066: 49,-11 + 6067: 52,-11 + 6229: -29,-17 + 6271: 87,-21 + 6272: 89,-21 + 6273: 88,-21 + 6274: 90,-21 + 6275: 91,-21 + 6276: 92,-21 + 6530: 7,-49 + 6531: 8,-49 + 6532: 9,-49 + 6956: -29,-1 + 6971: -35,-1 + 6972: -30,-1 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2857: -30,36 - 2858: -29,36 - 2859: -28,36 - 2860: -27,36 - 2861: -26,36 - 2881: -30,36 - 2900: 77,-25 - 2901: 78,-25 - 2902: 79,-25 + 2810: -30,36 + 2811: -29,36 + 2812: -28,36 + 2813: -27,36 + 2814: -26,36 + 2834: -30,36 + 2853: 77,-25 + 2854: 78,-25 + 2855: 79,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1515,725 +1515,726 @@ entities: 44: -12,-15 57: -5,-14 58: -5,-14 - 328: -17,6 - 329: -17,7 - 330: -17,5 - 331: -17,6 - 332: -17,7 - 338: 42,-26 - 339: 42,-24 - 340: 42,-25 - 391: -24,17 - 392: -24,21 - 394: -18,-11 - 395: -18,-10 - 396: -18,-9 - 415: -16,-28 - 416: -16,-27 - 417: -16,-26 - 494: -38,1 - 495: -38,2 - 496: -34,1 - 497: -34,2 - 498: -30,1 - 499: -30,2 - 689: -28,-34 - 690: -28,-33 - 691: -28,-32 - 692: -28,-31 - 693: -28,-30 - 694: -28,-29 - 695: -28,-28 - 696: -28,-28 - 697: -28,-28 - 698: -28,-27 - 699: -28,-26 - 700: -28,-25 - 701: -35,-15 - 702: -35,-14 - 703: -32,-15 - 704: -32,-14 - 705: -29,-15 - 706: -29,-14 - 715: -38,-15 - 716: -38,-14 - 763: -33,-40 - 764: -33,-39 - 773: -33,-37 - 783: -43,3 - 784: -43,4 - 785: -43,5 - 786: -43,-1 - 787: -43,-2 - 788: -43,-3 - 892: -48,10 - 893: -48,12 - 894: -48,13 - 942: -48,9 - 946: -50,11 - 1021: 38,-34 - 1029: 24,-33 - 1030: 24,-32 - 1031: 24,-31 - 1032: 24,-30 - 1119: -1,23 - 1120: -1,24 - 1121: -1,25 - 1141: -1,36 - 1142: -1,37 - 1143: -1,38 - 1214: -4,45 - 1215: -4,46 - 1216: -4,47 - 1260: 26,6 - 1261: 26,7 - 1262: 26,8 - 1390: 58,-35 - 1399: 56,-35 - 1817: 70,-30 - 1818: 70,-29 - 1995: 22,-58 - 1996: 22,-57 - 1997: 22,-55 - 1998: 22,-54 - 2026: 21,-60 + 326: -17,6 + 327: -17,7 + 328: -17,5 + 329: -17,6 + 330: -17,7 + 336: 42,-26 + 337: 42,-24 + 338: 42,-25 + 389: -24,17 + 390: -24,21 + 392: -18,-11 + 393: -18,-10 + 394: -18,-9 + 413: -16,-28 + 414: -16,-27 + 415: -16,-26 + 465: -38,1 + 466: -38,2 + 467: -34,1 + 468: -34,2 + 469: -30,1 + 470: -30,2 + 660: -28,-34 + 661: -28,-33 + 662: -28,-32 + 663: -28,-31 + 664: -28,-30 + 665: -28,-29 + 666: -28,-28 + 667: -28,-28 + 668: -28,-28 + 669: -28,-27 + 670: -28,-26 + 671: -28,-25 + 672: -35,-15 + 673: -35,-14 + 674: -32,-15 + 675: -32,-14 + 676: -29,-15 + 677: -29,-14 + 686: -38,-15 + 687: -38,-14 + 734: -33,-40 + 735: -33,-39 + 744: -33,-37 + 754: -43,3 + 755: -43,4 + 756: -43,5 + 757: -43,-1 + 758: -43,-2 + 759: -43,-3 + 863: -48,10 + 864: -48,12 + 865: -48,13 + 913: -48,9 + 917: -50,11 + 992: 38,-34 + 1000: 24,-33 + 1001: 24,-32 + 1002: 24,-31 + 1003: 24,-30 + 1090: -1,23 + 1091: -1,24 + 1092: -1,25 + 1112: -1,36 + 1113: -1,37 + 1114: -1,38 + 1185: -4,45 + 1186: -4,46 + 1187: -4,47 + 1231: 26,6 + 1232: 26,7 + 1233: 26,8 + 1360: 58,-35 + 1369: 56,-35 + 1787: 70,-30 + 1788: 70,-29 + 1965: 22,-58 + 1966: 22,-57 + 1967: 22,-55 + 1968: 22,-54 + 1996: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 213: 7,-19 - 1133: -6,28 + 212: 7,-19 + 1104: -6,28 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 6745: -29,12 + 6670: -29,12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 678: -39,-34 - 6444: -33,-12 + 649: -39,-34 + 6369: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 677: -30,-34 - 6443: -33,-12 + 648: -30,-34 + 6368: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 676: -39,-25 + 647: -39,-25 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 675: -30,-25 - 1389: 44,5 + 646: -30,-25 + 1359: 44,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 207: 7,-25 - 208: 7,-24 - 209: 7,-23 - 210: 7,-22 - 211: 7,-21 - 212: 7,-20 - 565: -34,-21 - 637: -39,-33 - 638: -39,-32 - 639: -39,-31 - 640: -39,-30 - 641: -39,-29 - 642: -39,-29 - 643: -39,-28 - 644: -39,-27 - 645: -39,-26 - 728: -39,-33 - 729: -39,-26 - 779: -52,0 - 780: -52,2 - 1139: -6,27 - 1140: -6,26 - 1794: 74,-15 - 1795: 74,-14 - 1796: 74,-17 - 1797: 74,-18 - 1798: 74,-19 - 6742: -29,13 - 6743: -29,14 - 6888: -34,-18 - 6889: -34,-21 - 6890: -34,-20 - 6891: -34,-19 - 6892: -34,-18 - 6893: -34,-19 - 6894: -34,-20 - 6895: -34,-21 + 206: 7,-25 + 207: 7,-24 + 208: 7,-23 + 209: 7,-22 + 210: 7,-21 + 211: 7,-20 + 536: -34,-21 + 608: -39,-33 + 609: -39,-32 + 610: -39,-31 + 611: -39,-30 + 612: -39,-29 + 613: -39,-29 + 614: -39,-28 + 615: -39,-27 + 616: -39,-26 + 699: -39,-33 + 700: -39,-26 + 750: -52,0 + 751: -52,2 + 1110: -6,27 + 1111: -6,26 + 1764: 74,-15 + 1765: 74,-14 + 1766: 74,-17 + 1767: 74,-18 + 1768: 74,-19 + 6667: -29,13 + 6668: -29,14 + 6813: -34,-18 + 6814: -34,-21 + 6815: -34,-20 + 6816: -34,-19 + 6817: -34,-18 + 6818: -34,-19 + 6819: -34,-20 + 6820: -34,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 214: 6,-19 - 215: 4,-19 - 385: -22,12 - 386: -21,12 - 387: -20,12 - 388: -19,12 - 668: -35,-34 - 669: -35,-34 - 670: -34,-34 - 671: -33,-34 - 672: -32,-34 - 673: -31,-34 - 674: -31,-34 - 918: -50,-26 - 919: -46,-26 - 936: -50,-26 - 937: -46,-26 - 1049: 37,-4 - 1050: 38,-4 - 1051: 39,-4 - 1052: 36,-4 - 1134: -7,28 - 1135: -8,28 - 1136: -9,28 - 1137: -10,28 - 1138: -11,28 - 1813: 69,-28 - 1814: 70,-28 - 2027: 0,-37 - 2028: 1,-37 - 2033: 2,-37 - 2753: -27,27 - 2754: -26,27 - 2755: -25,27 - 6441: -34,-12 - 6442: -32,-12 - 6739: -32,16 - 6740: -31,16 - 6741: -30,16 - 6886: -22,10 - 6887: -21,10 + 213: 6,-19 + 214: 4,-19 + 383: -22,12 + 384: -21,12 + 385: -20,12 + 386: -19,12 + 639: -35,-34 + 640: -35,-34 + 641: -34,-34 + 642: -33,-34 + 643: -32,-34 + 644: -31,-34 + 645: -31,-34 + 889: -50,-26 + 890: -46,-26 + 907: -50,-26 + 908: -46,-26 + 1020: 37,-4 + 1021: 38,-4 + 1022: 39,-4 + 1023: 36,-4 + 1105: -7,28 + 1106: -8,28 + 1107: -9,28 + 1108: -10,28 + 1109: -11,28 + 1783: 69,-28 + 1784: 70,-28 + 1997: 0,-37 + 1998: 1,-37 + 2003: 2,-37 + 2723: -27,27 + 2724: -26,27 + 2725: -25,27 + 6366: -34,-12 + 6367: -32,-12 + 6664: -32,16 + 6665: -31,16 + 6666: -30,16 + 6811: -22,10 + 6812: -21,10 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineS decals: - 5899: 83,-35 + 5826: 83,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 658: -38,-25 - 659: -36,-25 - 660: -36,-25 - 661: -37,-25 - 662: -36,-25 - 663: -35,-25 - 664: -34,-25 - 665: -33,-25 - 666: -31,-25 - 667: -32,-25 - 920: -50,-31 - 921: -46,-31 - 934: -50,-31 - 935: -46,-31 - 1046: 36,-1 - 1047: 37,-1 - 1048: 39,-1 - 1053: 38,-1 - 1076: -48,-16 - 1077: -49,-16 - 1078: -50,-16 - 1079: -51,-16 - 1386: 40,5 - 1387: 42,5 - 1388: 43,5 - 1427: 41,5 - 2935: 51,22 - 2936: 50,22 - 2937: 52,22 - 6302: -34,-17 - 6303: -33,-17 - 6744: -32,12 - 6884: -22,10 - 6885: -21,10 + 629: -38,-25 + 630: -36,-25 + 631: -36,-25 + 632: -37,-25 + 633: -36,-25 + 634: -35,-25 + 635: -34,-25 + 636: -33,-25 + 637: -31,-25 + 638: -32,-25 + 891: -50,-31 + 892: -46,-31 + 905: -50,-31 + 906: -46,-31 + 1017: 36,-1 + 1018: 37,-1 + 1019: 39,-1 + 1024: 38,-1 + 1047: -48,-16 + 1048: -49,-16 + 1049: -50,-16 + 1050: -51,-16 + 1356: 40,5 + 1357: 42,5 + 1358: 43,5 + 1397: 41,5 + 2888: 51,22 + 2889: 50,22 + 2890: 52,22 + 6227: -34,-17 + 6228: -33,-17 + 6669: -32,12 + 6809: -22,10 + 6810: -21,10 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineW decals: - 5898: 81,-34 + 5825: 81,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 646: -30,-33 - 647: -30,-32 - 648: -30,-31 - 649: -30,-31 - 650: -30,-30 - 651: -30,-30 - 652: -30,-29 - 653: -30,-29 - 654: -30,-28 - 655: -30,-27 - 656: -30,-27 - 657: -30,-26 - 730: -30,-26 - 731: -30,-33 - 781: -43,0 - 782: -43,2 - 1097: 3,23 - 1098: 3,24 - 1099: 3,25 - 1104: -6,33 - 1105: -6,34 - 1383: 44,1 - 1384: 44,2 - 1385: 44,3 - 1421: 44,4 - 6735: -35,13 - 6736: -35,14 - 6737: -35,14 - 6738: -35,15 + 617: -30,-33 + 618: -30,-32 + 619: -30,-31 + 620: -30,-31 + 621: -30,-30 + 622: -30,-30 + 623: -30,-29 + 624: -30,-29 + 625: -30,-28 + 626: -30,-27 + 627: -30,-27 + 628: -30,-26 + 701: -30,-26 + 702: -30,-33 + 752: -43,0 + 753: -43,2 + 1068: 3,23 + 1069: 3,24 + 1070: 3,25 + 1075: -6,33 + 1076: -6,34 + 1353: 44,1 + 1354: 44,2 + 1355: 44,3 + 1391: 44,4 + 6660: -35,13 + 6661: -35,14 + 6662: -35,14 + 6663: -35,15 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 1324: 28,15 - 1357: 28,8 - 1374: 36,22 - 1375: 27,14 + 1294: 28,15 + 1327: 28,8 + 1344: 36,22 + 1345: 27,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1729: 60,-13 - 1751: 70,-12 - 7017: 54,-23 + 1699: 60,-13 + 1721: 70,-12 + 6942: 54,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 6433: 52,-26 + 6358: 52,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2730: -4,14 + 2700: -4,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2866: -25,38 + 2819: -25,38 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 1373: 33,22 - 1378: 26,14 + 1343: 33,22 + 1348: 26,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1730: 58,-13 - 1754: 68,-12 - 7016: 52,-23 + 1700: 58,-13 + 1724: 68,-12 + 6941: 52,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 6432: 51,-26 + 6357: 51,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2091: -54,9 - 2729: -2,14 + 2061: -54,9 + 2699: -2,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2865: -30,38 + 2818: -30,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 1323: 28,10 - 1356: 28,6 - 1372: 36,17 - 1376: 27,11 + 1293: 28,10 + 1326: 28,6 + 1342: 36,17 + 1346: 27,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 1731: 60,-14 - 1752: 70,-14 + 1701: 60,-14 + 1722: 70,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6431: 52,-27 + 6356: 52,-27 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 1377: 26,11 + 1347: 26,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 1732: 58,-14 - 1753: 68,-14 + 1702: 58,-14 + 1723: 68,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6434: 51,-27 + 6359: 51,-27 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 2752: 63,9 + 2722: 63,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 988: 46,-38 - 990: 46,-38 - 1025: 37,-34 + 959: 46,-38 + 961: 46,-38 + 996: 37,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1429: 41,5 - 6114: 48,-1 - 6131: 49,-7 + 1399: 41,5 + 6040: 48,-1 + 6057: 49,-7 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 1359: 26,8 + 1329: 26,8 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1300: -18,27 + 1270: -18,27 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1020: 43,-34 + 991: 43,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1428: 45,5 - 6113: 52,-1 - 6130: 51,-7 + 1398: 45,5 + 6039: 52,-1 + 6056: 51,-7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 983: 46,-37 + 954: 46,-37 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1431: 45,4 - 6112: 48,-8 - 6129: 49,-2 - 6133: 50,-8 + 1401: 45,4 + 6038: 48,-8 + 6055: 49,-2 + 6059: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 1354: 31,23 - 1358: 26,6 + 1324: 31,23 + 1328: 26,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1186: -15,26 - 1187: -11,26 - 1188: -7,26 - 1229: -4,45 - 1299: -18,29 + 1157: -15,26 + 1158: -11,26 + 1159: -7,26 + 1200: -4,45 + 1269: -18,29 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 6111: 52,-8 - 6128: 51,-2 - 6132: 50,-8 + 6037: 52,-8 + 6054: 51,-2 + 6058: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1355: 30,17 + 1325: 30,17 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1184: -13,26 - 1185: -9,26 - 1228: 0,45 + 1155: -13,26 + 1156: -9,26 + 1199: 0,45 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 183: 5,-24 + 182: 5,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 984: 46,-37 - 985: 46,-36 - 986: 46,-35 - 987: 46,-34 + 955: 46,-37 + 956: 46,-36 + 957: 46,-35 + 958: 46,-34 - node: color: '#52B4E93E' id: BrickTileWhiteLineE decals: - 6582: 51,6 - 6583: 51,6 - 6584: 51,6 + 6507: 51,6 + 6508: 51,6 + 6509: 51,6 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 6017: 42,9 - 6018: 42,7 - 6024: 47,9 - 6025: 47,8 - 6026: 47,7 - 6042: 51,1 - 6043: 51,2 - 6044: 51,3 - 6045: 51,4 - 6046: 51,7 - 6047: 51,8 - 6048: 51,9 - 6049: 51,10 - 6050: 51,11 - 6051: 51,12 - 6052: 51,13 - 6053: 51,14 - 6054: 51,15 - 6059: 56,10 - 6060: 56,11 - 6061: 56,12 - 6065: 56,6 - 6066: 56,7 - 6067: 56,8 - 6103: 52,-1 - 6104: 52,-2 - 6105: 52,-3 - 6106: 52,-4 - 6107: 52,-5 - 6108: 52,-6 - 6109: 52,-7 - 6110: 52,-8 - 6124: 49,-6 - 6125: 49,-5 - 6126: 49,-4 - 6127: 49,-3 - 6911: 61,-7 - 6912: 61,-6 - 6913: 61,-5 - 6914: 61,-4 + 5944: 42,9 + 5945: 42,7 + 5951: 47,9 + 5952: 47,8 + 5953: 47,7 + 5969: 51,1 + 5970: 51,2 + 5971: 51,3 + 5972: 51,4 + 5973: 51,7 + 5974: 51,8 + 5975: 51,9 + 5976: 51,10 + 5977: 51,11 + 5978: 51,12 + 5979: 51,13 + 5980: 51,14 + 5981: 51,15 + 5986: 56,10 + 5987: 56,11 + 5988: 56,12 + 5992: 56,6 + 5993: 56,7 + 5994: 56,8 + 6029: 52,-1 + 6030: 52,-2 + 6031: 52,-3 + 6032: 52,-4 + 6033: 52,-5 + 6034: 52,-6 + 6035: 52,-7 + 6036: 52,-8 + 6050: 49,-6 + 6051: 49,-5 + 6052: 49,-4 + 6053: 49,-3 + 6836: 61,-7 + 6837: 61,-6 + 6838: 61,-5 + 6839: 61,-4 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1686: 61,17 - 1687: 61,16 - 1688: 61,15 - 1689: 61,14 + 1656: 61,17 + 1657: 61,16 + 1658: 61,15 + 1659: 61,14 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1307: 28,7 - 1316: 28,14 - 1317: 28,13 - 1318: 28,12 - 1319: 28,11 - 1336: 31,22 - 1337: 31,21 - 1338: 31,20 - 1339: 31,19 - 1340: 31,18 - 1341: 31,17 - 1342: 31,16 - 1343: 31,15 - 1344: 31,14 - 1345: 31,13 - 1346: 31,12 - 1362: 36,19 - 1363: 36,20 - 1364: 36,21 - 1369: 36,18 - 1379: 27,13 - 1380: 27,12 + 1277: 28,7 + 1286: 28,14 + 1287: 28,13 + 1288: 28,12 + 1289: 28,11 + 1306: 31,22 + 1307: 31,21 + 1308: 31,20 + 1309: 31,19 + 1310: 31,18 + 1311: 31,17 + 1312: 31,16 + 1313: 31,15 + 1314: 31,14 + 1315: 31,13 + 1316: 31,12 + 1332: 36,19 + 1333: 36,20 + 1334: 36,21 + 1339: 36,18 + 1349: 27,13 + 1350: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1755: 70,-13 - 1759: 65,-21 - 1760: 65,-20 - 1761: 65,-19 - 1762: 65,-18 - 1763: 65,-17 - 1764: 65,-16 - 1765: 65,-15 - 1766: 65,-14 - 1767: 65,-13 - 1768: 65,-12 - 1842: 71,-27 - 1843: 71,-26 + 1725: 70,-13 + 1729: 65,-21 + 1730: 65,-20 + 1731: 65,-19 + 1732: 65,-18 + 1733: 65,-17 + 1734: 65,-16 + 1735: 65,-15 + 1736: 65,-14 + 1737: 65,-13 + 1738: 65,-12 + 1812: 71,-27 + 1813: 71,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1109: -1,23 - 1110: -1,24 - 1117: -1,25 - 1298: -18,28 - 6371: -37,-44 - 6372: -37,-45 - 6385: -37,-46 + 1080: -1,23 + 1081: -1,24 + 1088: -1,25 + 1268: -18,28 + 6296: -37,-44 + 6297: -37,-45 + 6310: -37,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 177: 2,-22 - 235: 10,-23 - 236: 10,-22 - 2068: -4,-37 - 2069: -4,-35 - 2767: -39,-38 + 176: 2,-22 + 233: 10,-23 + 234: 10,-22 + 2038: -4,-37 + 2039: -4,-35 + 2737: -39,-38 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2864: -25,37 - 2871: -32,38 - 2872: -32,37 - 2873: -32,36 - 2874: -32,35 - 2875: -32,34 + 2817: -25,37 + 2824: -32,38 + 2825: -32,37 + 2826: -32,36 + 2827: -32,35 + 2828: -32,34 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1239: 2,40 + 1210: 2,40 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 991: 39,-34 - 992: 40,-34 - 993: 41,-34 - 1023: 38,-34 - 1024: 42,-34 - 1883: 19,-36 - 1884: 20,-36 - 1888: 21,-36 - 1918: 24,-46 + 962: 39,-34 + 963: 40,-34 + 964: 41,-34 + 994: 38,-34 + 995: 42,-34 + 1853: 19,-36 + 1854: 20,-36 + 1858: 21,-36 + 1888: 24,-46 - node: color: '#474F52A7' id: BrickTileWhiteLineN decals: - 1189: -16,24 - 1190: -15,24 - 1191: -14,24 - 1192: -12,24 - 1193: -11,24 - 1194: -10,24 - 1195: -8,24 - 1196: -7,24 - 1197: -6,24 + 1160: -16,24 + 1161: -15,24 + 1162: -14,24 + 1163: -12,24 + 1164: -11,24 + 1165: -10,24 + 1166: -8,24 + 1167: -7,24 + 1168: -6,24 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1424: 43,5 - 1425: 42,5 - 1426: 44,5 - 1670: 59,4 - 1671: 60,4 - 6076: 53,3 - 6077: 54,3 - 6078: 55,3 - 6079: 57,3 - 6115: 51,-1 - 6116: 50,-1 - 6117: 49,-1 - 6137: 49,-10 - 6138: 50,-10 - 6139: 51,-10 + 1394: 43,5 + 1395: 42,5 + 1396: 44,5 + 1640: 59,4 + 1641: 60,4 + 6003: 53,3 + 6004: 54,3 + 6005: 55,3 + 6006: 57,3 + 6041: 51,-1 + 6042: 50,-1 + 6043: 49,-1 + 6063: 49,-10 + 6064: 50,-10 + 6065: 51,-10 + 6949: 56,3 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 299: -15,-2 + 297: -15,-2 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1237: -1,53 - 1238: 0,53 - 1916: 24,-43 + 1208: -1,53 + 1209: 0,53 + 1886: 24,-43 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 1305: 27,8 - 1313: 25,15 - 1314: 26,15 - 1315: 27,15 - 1370: 34,22 - 1371: 35,22 + 1275: 27,8 + 1283: 25,15 + 1284: 26,15 + 1285: 27,15 + 1340: 34,22 + 1341: 35,22 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1713: 63,-23 - 1714: 64,-23 - 1715: 65,-23 - 1720: 61,-23 - 1721: 62,-23 - 1733: 59,-13 - 1757: 69,-12 - 1780: 77,-13 - 1781: 75,-13 - 1782: 77,-17 - 1783: 75,-17 - 3049: 76,-13 - 3052: 76,-17 - 7018: 53,-23 + 1683: 63,-23 + 1684: 64,-23 + 1685: 65,-23 + 1690: 61,-23 + 1691: 62,-23 + 1703: 59,-13 + 1727: 69,-12 + 1750: 77,-13 + 1751: 75,-13 + 1752: 77,-17 + 1753: 75,-17 + 3002: 76,-13 + 3005: 76,-17 + 6943: 53,-23 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 1917: 25,-43 + 1887: 25,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1178: -3,32 - 1179: -2,32 - 1180: -1,32 - 1919: 25,-46 + 1149: -3,32 + 1150: -2,32 + 1151: -1,32 + 1889: 25,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2241,150 +2242,150 @@ entities: 106: -7,-22 141: -8,-26 142: -6,-26 - 166: -7,-26 - 239: 5,-27 - 240: 6,-27 - 241: 7,-27 - 242: 8,-27 - 243: 9,-27 - 284: 19,-21 - 285: 20,-21 - 286: 21,-21 - 2065: 0,-35 - 2066: 1,-35 - 2092: -53,9 - 2765: -62,-21 - 2766: -61,-21 - 6829: 43,13 - 6830: 44,13 - 6831: 45,13 - 6858: 47,13 + 165: -7,-26 + 237: 5,-27 + 238: 6,-27 + 239: 7,-27 + 240: 8,-27 + 241: 9,-27 + 282: 19,-21 + 283: 20,-21 + 284: 21,-21 + 2035: 0,-35 + 2036: 1,-35 + 2062: -53,9 + 2735: -62,-21 + 2736: -61,-21 + 6754: 43,13 + 6755: 44,13 + 6756: 45,13 + 6783: 47,13 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2867: -29,38 - 2868: -28,38 - 2869: -27,38 - 2870: -26,38 + 2820: -29,38 + 2821: -28,38 + 2822: -27,38 + 2823: -26,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 2122: 13,25 - 2123: 14,25 - 2124: 15,25 - 5944: 14,22 + 2092: 13,25 + 2093: 14,25 + 2094: 15,25 + 5871: 14,22 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 335: 31,-22 - 336: 32,-22 - 337: 33,-22 - 356: 47,-22 - 357: 48,-22 - 358: 49,-22 - 1885: 19,-39 - 1886: 20,-39 - 1887: 21,-39 - 6412: 52,-37 - 6413: 51,-37 + 333: 31,-22 + 334: 32,-22 + 335: 33,-22 + 354: 47,-22 + 355: 48,-22 + 356: 49,-22 + 1855: 19,-39 + 1856: 20,-39 + 1857: 21,-39 + 6337: 52,-37 + 6338: 51,-37 - node: color: '#474F52A7' id: BrickTileWhiteLineS decals: - 1198: -12,23 - 1199: -11,23 - 1200: -10,23 - 1201: -14,23 - 1202: -15,23 - 1203: -16,23 - 1204: -8,23 - 1205: -6,23 - 1206: -7,23 + 1169: -12,23 + 1170: -11,23 + 1171: -10,23 + 1172: -14,23 + 1173: -15,23 + 1174: -16,23 + 1175: -8,23 + 1176: -6,23 + 1177: -7,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1430: 46,4 - 1668: 60,0 - 1669: 59,0 - 1922: 24,-46 - 6080: 57,2 - 6081: 56,2 - 6082: 55,2 - 6083: 54,2 - 6084: 53,2 - 6118: 49,-8 - 6119: 51,-8 - 6134: 48,-11 - 6135: 51,-11 - 6136: 53,-11 - 6142: 50,-11 + 1400: 46,4 + 1638: 60,0 + 1639: 59,0 + 1892: 24,-46 + 6007: 56,2 + 6008: 55,2 + 6009: 54,2 + 6010: 53,2 + 6044: 49,-8 + 6045: 51,-8 + 6060: 48,-11 + 6061: 51,-11 + 6062: 53,-11 + 6068: 50,-11 + 6948: 57,2 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 298: -15,4 + 296: -15,4 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1231: -3,50 - 1232: -1,50 - 1233: -2,50 - 1234: 0,50 - 1235: 1,50 - 1236: 2,50 + 1202: -3,50 + 1203: -1,50 + 1204: -2,50 + 1205: 0,50 + 1206: 1,50 + 1207: 2,50 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 1306: 27,6 - 1320: 25,10 - 1321: 26,10 - 1322: 27,10 - 1325: 23,17 - 1326: 24,17 - 1327: 25,17 - 1328: 26,17 - 1329: 27,17 - 1330: 28,17 - 1360: 34,17 - 1361: 35,17 - 1920: 24,-43 + 1276: 27,6 + 1290: 25,10 + 1291: 26,10 + 1292: 27,10 + 1295: 23,17 + 1296: 24,17 + 1297: 25,17 + 1298: 26,17 + 1299: 27,17 + 1300: 28,17 + 1330: 34,17 + 1331: 35,17 + 1890: 24,-43 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1716: 63,-27 - 1717: 64,-27 - 1718: 65,-27 - 1719: 66,-27 - 1734: 59,-14 - 1735: 58,-15 - 1736: 59,-15 - 1737: 60,-15 - 1756: 69,-14 - 1784: 75,-19 - 1785: 77,-19 - 1786: 75,-15 - 1787: 77,-15 - 1923: 25,-43 - 3050: 76,-15 - 3051: 76,-19 + 1686: 63,-27 + 1687: 64,-27 + 1688: 65,-27 + 1689: 66,-27 + 1704: 59,-14 + 1705: 58,-15 + 1706: 59,-15 + 1707: 60,-15 + 1726: 69,-14 + 1754: 75,-19 + 1755: 77,-19 + 1756: 75,-15 + 1757: 77,-15 + 1893: 25,-43 + 3003: 76,-15 + 3004: 76,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1181: -10,26 - 1182: -14,26 - 1183: -6,26 - 1225: -3,45 - 1226: -2,45 - 1227: -1,45 + 1152: -10,26 + 1153: -14,26 + 1154: -6,26 + 1196: -3,45 + 1197: -2,45 + 1198: -1,45 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2401,478 +2402,478 @@ entities: 139: -6,-28 140: -5,-28 143: -10,-28 - 237: 7,-25 - 282: 21,-23 - 283: 20,-23 - 1921: 25,-46 - 2040: 9,-41 - 2741: 61,-31 - 2742: 62,-31 - 2743: 63,-31 - 6826: 43,13 - 6827: 44,13 - 6828: 45,13 - 6857: 47,13 + 235: 7,-25 + 280: 21,-23 + 281: 20,-23 + 1891: 25,-46 + 2010: 9,-41 + 2711: 61,-31 + 2712: 62,-31 + 2713: 63,-31 + 6751: 43,13 + 6752: 44,13 + 6753: 45,13 + 6782: 47,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1418: 45,4 - 1419: 46,4 - 1420: 44,4 + 1388: 45,4 + 1389: 46,4 + 1390: 44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 980: 34,-34 - 981: 34,-35 - 982: 34,-36 - 1414: 54,-36 - 1415: 54,-35 - 1416: 54,-34 - 1417: 54,-33 + 951: 34,-34 + 952: 34,-35 + 953: 34,-36 + 1384: 54,-36 + 1385: 54,-35 + 1386: 54,-34 + 1387: 54,-33 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 6019: 46,7 - 6020: 46,9 - 6021: 41,9 - 6022: 41,8 - 6023: 41,7 - 6027: 49,1 - 6028: 49,2 - 6029: 49,3 - 6030: 49,4 - 6031: 49,5 - 6032: 49,6 - 6033: 49,7 - 6034: 49,8 - 6035: 49,9 - 6036: 49,10 - 6037: 49,11 - 6038: 49,12 - 6039: 49,13 - 6040: 49,14 - 6041: 49,15 - 6062: 53,6 - 6063: 53,7 - 6064: 53,8 - 6095: 48,-8 - 6096: 48,-7 - 6097: 48,-6 - 6098: 48,-5 - 6099: 48,-4 - 6100: 48,-3 - 6101: 48,-2 - 6102: 48,-1 - 6120: 51,-6 - 6121: 51,-5 - 6122: 51,-4 - 6123: 51,-3 - 6910: 57,-7 - 6918: 57,-6 - 6919: 57,-5 - 6920: 57,-4 + 5946: 46,7 + 5947: 46,9 + 5948: 41,9 + 5949: 41,8 + 5950: 41,7 + 5954: 49,1 + 5955: 49,2 + 5956: 49,3 + 5957: 49,4 + 5958: 49,5 + 5959: 49,6 + 5960: 49,7 + 5961: 49,8 + 5962: 49,9 + 5963: 49,10 + 5964: 49,11 + 5965: 49,12 + 5966: 49,13 + 5967: 49,14 + 5968: 49,15 + 5989: 53,6 + 5990: 53,7 + 5991: 53,8 + 6021: 48,-8 + 6022: 48,-7 + 6023: 48,-6 + 6024: 48,-5 + 6025: 48,-4 + 6026: 48,-3 + 6027: 48,-2 + 6028: 48,-1 + 6046: 51,-6 + 6047: 51,-5 + 6048: 51,-4 + 6049: 51,-3 + 6835: 57,-7 + 6843: 57,-6 + 6844: 57,-5 + 6845: 57,-4 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1690: 57,16 - 1691: 57,17 + 1660: 57,16 + 1661: 57,17 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 1308: 30,7 - 1309: 30,8 - 1310: 30,9 - 1311: 30,10 - 1312: 30,6 - 1331: 30,16 - 1332: 30,15 - 1333: 30,14 - 1334: 30,13 - 1335: 30,12 - 1347: 33,15 - 1348: 33,14 - 1349: 33,13 - 1350: 33,12 - 1365: 33,18 - 1366: 33,19 - 1367: 33,20 - 1368: 33,21 - 1381: 26,12 - 1382: 26,13 + 1278: 30,7 + 1279: 30,8 + 1280: 30,9 + 1281: 30,10 + 1282: 30,6 + 1301: 30,16 + 1302: 30,15 + 1303: 30,14 + 1304: 30,13 + 1305: 30,12 + 1317: 33,15 + 1318: 33,14 + 1319: 33,13 + 1320: 33,12 + 1335: 33,18 + 1336: 33,19 + 1337: 33,20 + 1338: 33,21 + 1351: 26,12 + 1352: 26,13 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1758: 68,-13 - 1769: 63,-21 - 1770: 63,-20 - 1771: 63,-19 - 1772: 63,-17 - 1773: 63,-18 - 1774: 63,-16 - 1775: 63,-15 - 1776: 63,-14 - 1777: 63,-13 - 1778: 63,-12 - 1837: 68,-23 - 1838: 68,-22 - 1839: 68,-21 - 1840: 68,-24 - 1844: 68,-27 - 1845: 68,-26 + 1728: 68,-13 + 1739: 63,-21 + 1740: 63,-20 + 1741: 63,-19 + 1742: 63,-17 + 1743: 63,-18 + 1744: 63,-16 + 1745: 63,-15 + 1746: 63,-14 + 1747: 63,-13 + 1748: 63,-12 + 1807: 68,-23 + 1808: 68,-22 + 1809: 68,-21 + 1810: 68,-24 + 1814: 68,-27 + 1815: 68,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1107: -4,23 - 1108: -4,24 - 1118: -4,25 + 1078: -4,23 + 1079: -4,24 + 1089: -4,25 - node: color: '#EFB34131' id: BrickTileWhiteLineW decals: - 6555: 14,39 - 6556: 14,40 - 6557: 14,41 - 6558: 14,42 + 6480: 14,39 + 6481: 14,40 + 6482: 14,41 + 6483: 14,42 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: 144: -1,-27 145: -1,-28 - 178: 4,-21 - 179: 4,-20 - 180: 4,-18 - 181: 4,-23 - 182: 5,-25 - 216: 4,-19 - 220: 4,-22 - 2038: 8,-40 - 2039: 8,-39 - 2067: -2,-36 - 2070: -6,-37 - 2071: -6,-36 - 2072: -6,-35 - 2081: 39,-15 - 2082: 39,-17 - 2083: 39,-16 - 2759: -22,34 - 2760: -22,35 + 177: 4,-21 + 178: 4,-20 + 179: 4,-18 + 180: 4,-23 + 181: 5,-25 + 215: 4,-19 + 218: 4,-22 + 2008: 8,-40 + 2009: 8,-39 + 2037: -2,-36 + 2040: -6,-37 + 2041: -6,-36 + 2042: -6,-35 + 2051: 39,-15 + 2052: 39,-17 + 2053: 39,-16 + 2729: -22,34 + 2730: -22,35 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2862: -30,36 - 2863: -30,37 - 2876: -34,34 - 2877: -34,35 - 2878: -34,36 - 2879: -34,37 - 2880: -34,38 + 2815: -30,36 + 2816: -30,37 + 2829: -34,34 + 2830: -34,35 + 2831: -34,36 + 2832: -34,37 + 2833: -34,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1240: -6,40 + 1211: -6,40 - node: color: '#FFFFFFFF' id: BushAOne decals: - 559: -24,5 - 839: -48,4 - 845: -51,-2 - 1437: -52,-49 - 1676: 59,19 - 1694: 57,18 + 530: -24,5 + 810: -48,4 + 816: -51,-2 + 1407: -52,-49 + 1646: 59,19 + 1664: 57,18 - node: color: '#FFFFFFFF' id: BushAThree decals: - 526: -39,7 - 840: -50,-2 - 903: -49,-30 + 497: -39,7 + 811: -50,-2 + 874: -49,-30 - node: color: '#FFFFFFFF' id: BushCOne decals: - 837: -45,4 + 808: -45,4 - node: color: '#FFFFFFFF' id: BushCThree decals: - 320: 26,-24 - 527: -40,6 - 841: -48,-2 - 1080: 42,-30 - 1433: -49,-49 - 2136: 24,1 + 318: 26,-24 + 498: -40,6 + 812: -48,-2 + 1051: 42,-30 + 1403: -49,-49 + 2106: 24,1 - node: color: '#FFFFFFFF' id: BushCTwo decals: 36: -4,-12 - 321: 26,-23 - 525: -38,6 - 1434: -46,-49 + 319: 26,-23 + 496: -38,6 + 1404: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: BushCTwo decals: - 2906: 81,-8 + 2859: 81,-8 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 846: -49,4 + 817: -49,4 - node: color: '#FFFFFFFF' id: Busha1 decals: - 523: -39,5 - 900: -48,-28 + 494: -39,5 + 871: -48,-28 - node: cleanable: True color: '#FFFFFFFF' id: Busha1 decals: - 2907: 82,-6 + 2860: 82,-6 - node: color: '#FFFFFFFF' id: Busha2 decals: - 531: -30,7 - 901: -47,-29 - 1675: 58,19 + 502: -30,7 + 872: -47,-29 + 1645: 58,19 - node: color: '#FFFFFFFF' id: Busha3 decals: - 319: 25,-24 - 529: -30,5 - 838: -47,4 - 1436: -44,-49 + 317: 25,-24 + 500: -30,5 + 809: -47,4 + 1406: -44,-49 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 316: 25,-21 - 843: -46,-2 - 844: -44,-2 + 314: 25,-21 + 814: -46,-2 + 815: -44,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushb1 decals: - 2904: 81,-7 + 2857: 81,-7 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 558: -24,7 - 891: -47,-8 - 1693: 57,19 + 529: -24,7 + 862: -47,-8 + 1663: 57,19 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 317: 26,-22 - 836: -50,4 - 902: -48,-30 + 315: 26,-22 + 807: -50,4 + 873: -48,-30 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 318: 25,-23 - 524: -39,6 - 530: -29,6 - 842: -45,-2 - 904: -49,-27 + 316: 25,-23 + 495: -39,6 + 501: -29,6 + 813: -45,-2 + 875: -49,-27 - node: cleanable: True color: '#FFFFFFFF' id: Bushc1 decals: - 2905: 82,-7 + 2858: 82,-7 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 528: -28,6 - 1435: -47,-49 - 2138: 25,1 + 499: -28,6 + 1405: -47,-49 + 2108: 25,1 - node: color: '#FFFFFFFF' id: Bushc3 decals: 35: -5,-12 - 1432: -51,-49 - 2137: 26,1 + 1402: -51,-49 + 2107: 26,1 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 848: -49,-2 + 819: -49,-2 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 847: -44,4 + 818: -44,4 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 536: -28,7 + 507: -28,7 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 535: -40,5 - 537: -28,5 + 506: -40,5 + 508: -28,5 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 534: -29,5 - 560: -24,4 - 850: -47,-2 - 905: -48,-29 - 1439: -48,-49 - 1677: 60,19 + 505: -29,5 + 531: -24,4 + 821: -47,-2 + 876: -48,-29 + 1409: -48,-49 + 1647: 60,19 - node: cleanable: True color: '#FFFFFFFF' id: Bushi1 decals: - 2910: 80,-7 + 2863: 80,-7 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 322: 25,-22 - 851: -51,4 - 888: -48,-8 - 889: -51,-9 - 2139: 24,1 + 320: 25,-22 + 822: -51,4 + 859: -48,-8 + 860: -51,-9 + 2109: 24,1 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 532: -38,5 - 906: -47,-27 - 1438: -50,-49 + 503: -38,5 + 877: -47,-27 + 1408: -50,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 2908: 82,-8 + 2861: 82,-8 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 533: -40,7 - 849: -46,4 - 890: -46,-7 - 1081: 42,-31 - 1440: -45,-49 + 504: -40,7 + 820: -46,4 + 861: -46,-7 + 1052: 42,-31 + 1410: -45,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi4 decals: - 2909: 81,-6 + 2862: 81,-6 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 324: 25,-23 + 322: 25,-23 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 323: 26,-21 + 321: 26,-21 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 538: -38,7 + 509: -38,7 - node: color: '#FFFFFFFF' id: Caution decals: - 1896: 24,-37 - 1900: 23,-37 - 1901: 25,-37 + 1866: 24,-37 + 1870: 23,-37 + 1871: 25,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1897: 24,-38 - 1898: 23,-38 - 1899: 25,-38 + 1867: 24,-38 + 1868: 23,-38 + 1869: 25,-38 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 1892: 20,-37 - 1893: 21,-37 - 1894: 21,-38 - 1895: 20,-38 + 1862: 20,-37 + 1863: 21,-37 + 1864: 21,-38 + 1865: 20,-38 - node: color: '#474F528F' id: CheckerNWSE decals: - 2114: -17,11 - 2115: -16,11 - 2116: -16,12 - 2117: -17,12 - 2118: -17,13 - 2119: -16,13 - 2120: -16,14 - 2121: -17,14 + 2084: -17,11 + 2085: -16,11 + 2086: -16,12 + 2087: -17,12 + 2088: -17,13 + 2089: -16,13 + 2090: -16,14 + 2091: -17,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1699: 55,-5 - 1700: 55,-4 - 1701: 56,-4 - 1702: 56,-5 - 1703: 53,-5 - 1704: 53,-4 + 1669: 55,-5 + 1670: 55,-4 + 1671: 56,-4 + 1672: 56,-5 + 1673: 53,-5 + 1674: 53,-4 - node: color: '#D381C996' id: CheckerNWSE decals: - 1779: 66,-21 + 1749: 66,-21 - node: color: '#DE3A3A41' id: CheckerNWSE decals: - 6373: -36,-46 - 6374: -36,-45 - 6375: -36,-44 - 6376: -35,-44 - 6377: -35,-45 - 6378: -35,-46 + 6298: -36,-46 + 6299: -36,-45 + 6300: -36,-44 + 6301: -35,-44 + 6302: -35,-45 + 6303: -35,-46 - node: color: '#EFB34131' id: CheckerNWSE decals: - 6506: 13,40 - 6507: 13,39 - 6508: 13,41 - 6509: 13,42 - 6554: 15,40 + 6431: 13,40 + 6432: 13,39 + 6433: 13,41 + 6434: 13,42 + 6479: 15,40 - node: color: '#EFB34196' id: CheckerNWSE @@ -2883,83 +2884,83 @@ entities: 149: -2,-27 150: -3,-27 151: -3,-28 - 2076: 37,-15 - 2077: 37,-16 - 2078: 37,-17 - 2079: 38,-16 - 2080: 38,-15 - 2084: 38,-17 - 2085: 38,6 - 2086: 38,7 - 2087: -54,10 - 2088: -53,10 - 2089: -55,10 - 2090: -55,9 - 2725: -4,15 - 2726: -3,15 - 2727: -2,15 - 2728: -3,14 - 2731: -38,-54 - 2732: -38,-53 - 2733: -37,-53 - 2734: -37,-54 - 2735: 61,-32 - 2736: 62,-32 - 2737: 63,-32 - 2738: 63,-33 - 2739: 62,-33 - 2740: 61,-33 - 2744: 63,10 - 2745: 64,10 - 2746: 65,10 - 2747: 65,9 - 2748: 65,8 - 2749: 64,8 - 2750: 63,8 - 2751: 64,9 - 2757: -23,34 - 2758: -23,35 - 2761: 14,-39 - 2762: 15,-39 - 2763: -61,-20 - 2764: -62,-20 - 2768: -38,-38 - 6423: 51,-30 - 6424: 51,-29 - 6425: 52,-29 - 6426: 52,-30 + 2046: 37,-15 + 2047: 37,-16 + 2048: 37,-17 + 2049: 38,-16 + 2050: 38,-15 + 2054: 38,-17 + 2055: 38,6 + 2056: 38,7 + 2057: -54,10 + 2058: -53,10 + 2059: -55,10 + 2060: -55,9 + 2695: -4,15 + 2696: -3,15 + 2697: -2,15 + 2698: -3,14 + 2701: -38,-54 + 2702: -38,-53 + 2703: -37,-53 + 2704: -37,-54 + 2705: 61,-32 + 2706: 62,-32 + 2707: 63,-32 + 2708: 63,-33 + 2709: 62,-33 + 2710: 61,-33 + 2714: 63,10 + 2715: 64,10 + 2716: 65,10 + 2717: 65,9 + 2718: 65,8 + 2719: 64,8 + 2720: 63,8 + 2721: 64,9 + 2727: -23,34 + 2728: -23,35 + 2731: 14,-39 + 2732: 15,-39 + 2733: -61,-20 + 2734: -62,-20 + 2738: -38,-38 + 6348: 51,-30 + 6349: 51,-29 + 6350: 52,-29 + 6351: 52,-30 - node: color: '#D4D4D496' id: Delivery decals: - 6309: 0,30 - 6310: 0,31 + 6234: 0,30 + 6235: 0,31 - node: color: '#DE3A3A41' id: Delivery decals: - 6381: -38,-46 - 6382: -38,-46 - 6383: -38,-44 - 6384: -38,-44 + 6306: -38,-46 + 6307: -38,-46 + 6308: -38,-44 + 6309: -38,-44 - node: color: '#DE3A3A96' id: Delivery decals: - 1111: -3,25 - 1112: -2,25 - 1174: 4,31 - 1175: 5,31 - 1176: 2,31 - 1177: 2,30 + 1082: -3,25 + 1083: -2,25 + 1145: 4,31 + 1146: 5,31 + 1147: 2,31 + 1148: 2,30 - node: color: '#EFB34131' id: Delivery decals: - 6550: 15,41 - 6551: 15,41 - 6552: 15,41 - 6553: 15,41 + 6475: 15,41 + 6476: 15,41 + 6477: 15,41 + 6478: 15,41 - node: color: '#EFB34196' id: Delivery @@ -2978,15 +2979,14 @@ entities: 159: -11,-16 160: -3,-15 161: -3,-14 - 162: 3,-22 - 163: -7,-25 - 164: -9,-27 - 165: -10,-29 - 167: -8,-29 - 223: 15,-19 - 224: 15,-18 - 225: 15,-17 - 226: 15,-16 + 162: -7,-25 + 163: -9,-27 + 164: -10,-29 + 166: -8,-29 + 221: 15,-19 + 222: 15,-18 + 223: 15,-17 + 224: 15,-16 - node: angle: 3.141592653589793 rad color: '#EFB341FF' @@ -2999,3848 +2999,3840 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 349: 43,-22 - 409: -23,-28 - 410: -23,-27 - 411: -23,-26 - 1243: 23,14 - 1245: 24,12 - 1257: 25,6 - 1258: 24,6 - 1259: 23,6 - 1277: 24,21 - 1278: 25,21 - 1279: 26,21 - 1280: 28,21 - 1281: 29,21 - 1282: 30,21 - 1422: 46,3 - 1423: 46,3 - 1708: 60,-12 - 1902: 26,-37 - 1903: 26,-38 - 1906: 31,-37 - 1907: 31,-38 - 2050: 8,-41 - 2943: 3,20 - 2944: -9,19 - 2945: -9,20 - 2946: -9,21 - 2947: -17,21 - 2948: -17,20 - 2949: -17,19 - 2950: 3,21 - 2951: 3,19 - 2952: 17,19 - 2953: 17,20 - 2954: 17,21 - 2955: 19,17 - 2956: 21,17 - 2957: 20,17 - 2958: 21,6 - 2959: 20,6 - 2960: 19,6 - 2961: 29,2 - 2962: 29,4 - 2963: 29,3 - 2964: 39,2 - 2965: 39,3 - 2966: 39,4 - 2967: 43,0 - 2968: 42,0 - 2969: 41,0 - 2970: 43,-14 - 2971: 42,-14 - 2972: 41,-14 - 2973: 46,-21 - 2974: 46,-19 - 2975: 46,-20 - 2976: 38,-19 - 2977: 38,-21 - 2978: 38,-20 - 2979: 30,-21 - 2980: 30,-20 - 2981: 30,-19 - 2982: 30,-20 - 2983: 21,-28 - 2984: 20,-28 - 2985: 19,-28 - 2986: 18,-32 - 2987: 18,-33 - 2988: 18,-34 - 2989: 10,-34 - 2990: 10,-33 - 2991: 10,-32 - 2992: 4,-32 - 2993: 4,-31 - 2994: 4,-30 - 2995: -9,-32 - 2996: -9,-31 - 2997: -9,-30 - 2998: -20,-32 - 2999: -20,-30 - 3000: -20,-31 - 3001: -24,-22 - 3002: -25,-22 - 3003: -26,-22 - 3004: -42,-29 - 3005: -42,-28 - 3006: -27,-29 - 3007: -27,-28 - 3008: -26,-12 - 3009: -25,-12 - 3010: -24,-12 - 3011: -23,-6 - 3012: -24,-6 - 3013: -25,-6 - 3014: -25,10 - 3015: -26,10 - 3016: -27,10 - 3017: -42,0 - 3018: -42,1 - 3019: -42,2 - 3020: -53,-5 - 3021: -54,-5 - 3022: -55,-5 - 3023: -55,-19 - 3024: -54,-19 - 3025: -53,-19 - 3026: -49,-34 - 3027: -47,-34 - 3028: -48,-34 - 3029: -47,-45 - 3030: -48,-45 - 3031: -49,-45 - 3032: -41,-49 - 3033: -42,-49 - 3034: -40,-49 - 3035: -54,-49 - 3036: -55,-49 - 3037: -56,-49 - 3038: -56,-55 - 3039: -55,-55 - 3040: -54,-55 - 3041: -42,-55 - 3042: -41,-55 - 3043: -40,-55 - 6311: 60,-24 - 6312: 60,-23 - 6411: 32,21 + 347: 43,-22 + 407: -23,-28 + 408: -23,-27 + 409: -23,-26 + 1214: 23,14 + 1216: 24,12 + 1228: 25,6 + 1229: 24,6 + 1230: 23,6 + 1247: 24,21 + 1248: 25,21 + 1249: 26,21 + 1250: 28,21 + 1251: 29,21 + 1252: 30,21 + 1392: 46,3 + 1393: 46,3 + 1678: 60,-12 + 1872: 26,-37 + 1873: 26,-38 + 1876: 31,-37 + 1877: 31,-38 + 2020: 8,-41 + 2896: 3,20 + 2897: -9,19 + 2898: -9,20 + 2899: -9,21 + 2900: -17,21 + 2901: -17,20 + 2902: -17,19 + 2903: 3,21 + 2904: 3,19 + 2905: 17,19 + 2906: 17,20 + 2907: 17,21 + 2908: 19,17 + 2909: 21,17 + 2910: 20,17 + 2911: 21,6 + 2912: 20,6 + 2913: 19,6 + 2914: 29,2 + 2915: 29,4 + 2916: 29,3 + 2917: 39,2 + 2918: 39,3 + 2919: 39,4 + 2920: 43,0 + 2921: 42,0 + 2922: 41,0 + 2923: 43,-14 + 2924: 42,-14 + 2925: 41,-14 + 2926: 46,-21 + 2927: 46,-19 + 2928: 46,-20 + 2929: 38,-19 + 2930: 38,-21 + 2931: 38,-20 + 2932: 30,-21 + 2933: 30,-20 + 2934: 30,-19 + 2935: 30,-20 + 2936: 21,-28 + 2937: 20,-28 + 2938: 19,-28 + 2939: 18,-32 + 2940: 18,-33 + 2941: 18,-34 + 2942: 10,-34 + 2943: 10,-33 + 2944: 10,-32 + 2945: 4,-32 + 2946: 4,-31 + 2947: 4,-30 + 2948: -9,-32 + 2949: -9,-31 + 2950: -9,-30 + 2951: -20,-32 + 2952: -20,-30 + 2953: -20,-31 + 2954: -24,-22 + 2955: -25,-22 + 2956: -26,-22 + 2957: -42,-29 + 2958: -42,-28 + 2959: -27,-29 + 2960: -27,-28 + 2961: -26,-12 + 2962: -25,-12 + 2963: -24,-12 + 2964: -23,-6 + 2965: -24,-6 + 2966: -25,-6 + 2967: -25,10 + 2968: -26,10 + 2969: -27,10 + 2970: -42,0 + 2971: -42,1 + 2972: -42,2 + 2973: -53,-5 + 2974: -54,-5 + 2975: -55,-5 + 2976: -55,-19 + 2977: -54,-19 + 2978: -53,-19 + 2979: -49,-34 + 2980: -47,-34 + 2981: -48,-34 + 2982: -47,-45 + 2983: -48,-45 + 2984: -49,-45 + 2985: -41,-49 + 2986: -42,-49 + 2987: -40,-49 + 2988: -54,-49 + 2989: -55,-49 + 2990: -56,-49 + 2991: -56,-55 + 2992: -55,-55 + 2993: -54,-55 + 2994: -42,-55 + 2995: -41,-55 + 2996: -40,-55 + 6236: 60,-24 + 6237: 60,-23 + 6336: 32,21 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 2886: 24,5 - 2887: 25,5 - 2888: 26,5 - 2889: 14,1 - 2890: 14,-12 - 2891: 0,14 - 2892: -6,14 + 2839: 24,5 + 2840: 25,5 + 2841: 26,5 + 2842: 14,1 + 2843: 14,-12 + 2844: 0,14 + 2845: -6,14 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 6072: 48,2 - 6073: 48,2 - 6074: 48,1 - 6075: 48,1 - 6305: 50,-5 - 6306: 50,-5 + 5999: 48,2 + 6000: 48,2 + 6001: 48,1 + 6002: 48,1 + 6230: 50,-5 + 6231: 50,-5 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 1172: 4,31 - 1173: 5,31 + 1143: 4,31 + 1144: 5,31 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2125: 9,23 - 2126: 9,24 + 2095: 9,23 + 2096: 9,24 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2771: -37,28 - 2772: -36,27 - 2773: -37,27 - 2774: -37,25 - 2775: -37,24 - 2776: -36,25 - 2777: -36,24 - 2778: -36,25 - 2779: -38,28 - 2780: -39,29 - 2781: -40,28 - 2782: -38,28 - 2783: -37,27 - 2784: -37,28 - 2785: -37,27 - 2786: -36,25 - 2787: -36,24 - 2788: -34,24 - 2789: -34,23 - 2790: -34,22 - 2791: -36,22 - 2792: -37,22 - 2793: -36,24 - 2794: -37,24 - 2795: -36,23 - 2796: -37,25 - 2797: -36,25 - 2798: -37,26 - 2799: -38,27 - 2800: -38,28 - 2801: -39,27 - 2802: -39,26 - 2803: -39,26 + 2741: -37,28 + 2742: -36,27 + 2743: -37,27 + 2744: -37,25 + 2745: -37,24 + 2746: -36,25 + 2747: -36,24 + 2748: -36,25 + 2749: -38,28 + 2750: -39,29 + 2751: -40,28 + 2752: -38,28 + 2753: -37,27 + 2754: -37,28 + 2755: -37,27 + 2756: -36,25 + 2757: -36,24 + 2758: -34,24 + 2759: -34,23 + 2760: -34,22 + 2761: -36,22 + 2762: -37,22 + 2763: -36,24 + 2764: -37,24 + 2765: -36,23 + 2766: -37,25 + 2767: -36,25 + 2768: -37,26 + 2769: -38,27 + 2770: -38,28 + 2771: -39,27 + 2772: -39,26 + 2773: -39,26 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 5250: -34,-26 - 5251: -37,-25 - 5252: -39,-28 - 5253: -40,-28 - 5254: -40,-31 - 5255: -39,-33 - 5256: -37,-33 - 5257: -32,-33 - 5258: -29,-33 - 5259: -29,-31 - 5260: -30,-28 - 5261: -29,-27 - 5262: -25,-30 - 5263: -25,-27 - 5264: -25,-26 - 5265: -25,-23 - 5266: -24,-21 - 5267: -25,-18 - 5268: -29,-20 - 5269: -29,-19 - 5270: -33,-19 - 5271: -33,-20 - 5272: -31,-14 - 5273: -29,-15 - 5274: -33,-16 - 5275: -29,-13 - 5276: -29,-11 - 5277: -38,-11 - 5278: -37,-15 - 5279: -36,-16 - 5280: -40,-10 - 5281: -38,-17 - 5282: -47,-8 - 5283: -45,0 - 5284: -47,0 - 5285: -44,2 - 5286: -48,-2 - 5287: -47,-1 - 5288: -49,3 - 5289: -50,-1 - 5290: -45,1 - 5291: -53,4 - 5292: -48,5 - 5293: -50,6 - 5294: -47,1 - 5295: -38,-1 - 5296: -36,1 - 5297: -35,-1 - 5298: -32,-1 - 5299: -33,0 - 5300: -33,-3 - 5301: -24,-2 - 5302: -28,3 - 5303: -26,3 - 5304: -26,8 - 5305: -27,13 - 5306: -26,14 - 5307: -26,18 - 5308: -22,13 - 5309: -20,12 - 5310: -22,13 - 5311: -24,19 - 5312: -20,20 - 5313: -18,19 - 5314: -16,20 - 5315: -13,19 - 5316: -15,24 - 5317: -14,24 - 5318: -13,27 - 5319: -14,28 - 5320: -13,27 - 5321: -5,28 - 5322: -20,28 - 5323: -18,25 - 5324: -13,31 - 5325: -15,32 - 5326: -14,34 - 5327: -17,32 - 5328: -8,32 - 5329: -8,32 - 5330: -6,33 - 5331: -6,27 - 5332: -3,28 - 5333: -1,30 - 5334: -2,33 - 5335: -2,33 - 5336: -2,36 - 5337: -2,43 - 5338: -7,42 - 5339: -5,45 - 5340: -3,47 - 5341: 0,45 - 5342: -2,47 - 5343: -1,47 - 5344: -2,51 - 5345: 1,51 - 5346: -1,52 - 5347: 1,52 - 5348: 2,45 - 5349: 2,47 - 5350: 2,42 - 5351: 1,40 - 5352: 6,41 - 5353: 8,39 - 5354: 6,41 - 5355: 5,31 - 5356: 3,31 - 5357: 5,30 - 5358: 4,30 - 5359: 3,26 - 5360: 2,27 - 5361: 4,25 - 5362: 3,23 - 5363: 2,24 - 5364: 1,23 - 5365: -2,24 - 5366: 1,21 - 5367: -1,19 - 5368: 4,20 - 5369: 9,20 - 5370: 9,20 - 5371: 15,19 - 5372: 11,24 - 5373: 14,23 - 5374: 14,25 - 5375: 15,24 - 5376: 14,29 - 5377: 14,31 - 5378: 17,25 - 5379: 17,23 - 5380: 16,20 - 5381: 20,20 - 5382: 20,18 - 5383: 20,15 - 5384: 21,15 - 5385: 20,12 - 5386: 22,12 - 5387: 20,11 - 5388: 27,12 - 5389: 27,11 - 5390: 26,14 - 5391: 25,19 - 5392: 30,19 - 5393: 31,16 - 5394: 31,12 - 5395: 35,14 - 5396: 35,14 - 5397: 35,14 - 5398: 32,8 - 5399: 34,9 - 5400: 32,7 - 5401: 26,7 - 5402: 24,7 - 5403: 24,3 - 5404: 24,2 - 5405: 23,2 - 5406: 20,6 - 5407: 20,9 - 5408: 23,3 - 5409: 32,3 - 5410: 34,2 - 5411: 32,-2 - 5412: 32,-2 - 5413: 32,-4 - 5414: 37,-4 - 5415: 36,3 - 5416: 42,2 - 5417: 38,-2 - 5418: 42,-5 - 5419: 42,-2 - 5420: 42,-4 - 5421: 43,6 - 5422: 52,12 - 5423: 50,14 - 5424: 50,7 - 5425: 53,14 - 5426: 59,15 - 5427: 60,17 - 5428: 55,7 - 5429: 54,7 - 5430: 50,7 - 5431: 49,0 - 5432: 45,-1 - 5433: 46,-5 - 5434: 46,-8 - 5435: 50,-4 - 5436: 50,-7 - 5437: 55,-5 - 5438: 53,-5 - 5439: 59,-14 - 5440: 60,-14 - 5441: 59,-14 - 5442: 59,-18 - 5443: 59,-20 - 5444: 60,-18 - 5445: 60,-17 - 5446: 64,-13 - 5447: 64,-17 - 5448: 65,-19 - 5449: 64,-19 - 5450: 64,-25 - 5451: 65,-24 - 5452: 63,-26 - 5453: 63,-24 - 5454: 62,-26 - 5455: 64,-26 - 5456: 70,-28 - 5457: 71,-26 - 5458: 69,-27 - 5459: 69,-23 - 5460: 70,-24 - 5461: 69,-22 - 5462: 66,-18 - 5463: 70,-18 - 5464: 71,-17 - 5465: 69,-13 - 5466: 71,-14 - 5467: 69,-12 - 5468: 70,-14 - 5469: 76,-17 - 5470: 77,-18 - 5471: 74,-15 - 5472: 76,-14 - 5473: 74,-14 - 5474: 68,-8 - 5475: 70,-10 - 5476: 76,-6 - 5477: 48,-25 - 5478: 48,-26 - 5479: 48,-27 - 5480: 48,-30 - 5481: 48,-31 - 5482: 47,-31 - 5483: 49,-34 - 5484: 47,-36 - 5485: 46,-36 - 5486: 44,-37 - 5487: 42,-35 - 5488: 42,-36 - 5489: 38,-36 - 5490: 38,-35 - 5491: 37,-37 - 5492: 32,-35 - 5493: 32,-36 - 5494: 32,-33 - 5495: 33,-31 - 5496: 32,-31 - 5497: 33,-27 - 5498: 32,-25 - 5499: 33,-24 - 5500: 35,-26 - 5501: 37,-26 - 5502: 41,-25 - 5503: 40,-26 - 5504: 41,-29 - 5505: 40,-29 - 5506: 40,-31 - 5507: 43,-29 - 5508: 44,-31 - 5509: 45,-30 - 5510: 27,-34 - 5511: 25,-34 - 5512: 24,-32 - 5513: 26,-29 - 5514: 23,-29 - 5515: 23,-31 - 5516: 25,-38 - 5517: 24,-37 - 5518: 22,-38 - 5519: 21,-37 - 5520: 21,-38 - 5521: 29,-39 - 5522: 28,-41 - 5523: 29,-44 - 5524: 28,-42 - 5525: 28,-45 - 5526: 26,-45 - 5527: 27,-44 - 5528: 24,-43 - 5529: 25,-46 - 5530: 27,-45 - 5531: 25,-46 - 5532: 32,-30 - 5533: 33,-28 - 5534: 36,-26 - 5535: 35,-26 - 5536: 36,-23 - 5537: 36,-30 - 5538: 42,-28 - 5539: 43,-29 - 5540: 52,-31 - 5541: 52,-35 - 5542: 55,-29 - 5543: 55,-30 - 5544: 57,-30 - 5545: 55,-34 - 5546: 55,-34 - 5547: 55,-36 - 5548: 57,-34 - 5549: 20,-45 - 5550: 17,-44 - 5551: 18,-45 - 5552: 19,-46 - 5553: 18,-48 - 5554: 19,-49 - 5555: 18,-50 - 5556: 20,-53 - 5557: 18,-54 - 5558: 17,-54 - 5559: 16,-54 - 5560: 16,-58 - 5561: 16,-59 - 5562: 19,-58 - 5563: 21,-58 - 5564: 21,-59 - 5565: 13,-47 - 5566: 14,-47 - 5567: 13,-48 - 5568: 13,-45 - 5569: 12,-45 - 5570: 10,-39 - 5571: 11,-39 - 5572: 0,-37 - 5573: 0,-36 - 5574: 1,-36 - 5575: 2,-38 - 5576: 0,-36 - 5577: -1,-37 - 5578: -2,-36 - 5579: -5,-36 - 5580: -4,-36 - 5581: -6,-36 - 5582: -7,-32 - 5583: -8,-32 - 5584: -7,-30 - 5585: -11,-31 - 5586: -12,-32 - 5587: -15,-32 - 5588: -16,-32 - 5589: -13,-30 - 5590: -16,-30 - 5591: -17,-30 - 5592: -22,-30 - 5593: -23,-30 - 5594: -24,-30 - 5595: -24,-29 - 5596: -24,-28 - 5597: -22,-32 - 5598: -24,-32 - 5599: -25,-32 - 5600: -26,-30 - 5601: -26,-28 - 5602: -26,-26 - 5603: -26,-24 - 5604: -24,-24 - 5605: -24,-22 - 5606: -24,-19 - 5607: -26,-21 - 5608: -26,-18 - 5609: -26,-17 - 5610: -24,-14 - 5611: -25,-15 - 5612: -27,-15 - 5613: -30,-15 - 5614: -30,-15 - 5615: -34,-15 - 5616: -35,-14 - 5617: -37,-15 - 5618: -38,-14 - 5619: -35,-15 - 5620: -34,-14 - 5621: -37,-10 - 5622: -38,-10 - 5623: -36,-9 - 5624: -29,-10 - 5625: -29,-11 - 5626: -33,-20 - 5627: -33,-18 - 5628: -32,-20 - 5629: -33,-18 - 5630: -29,-19 - 5631: -30,-21 - 5632: -29,-19 - 5633: -30,-20 - 5634: -37,-18 - 5635: -40,-18 - 5636: -39,-20 - 5637: -37,-19 - 5638: -39,-19 - 5639: -32,-26 - 5640: -35,-25 - 5641: -39,-26 - 5642: -39,-26 - 5643: -39,-27 - 5644: -40,-28 - 5645: -38,-30 - 5646: -39,-32 - 5647: -39,-33 - 5648: -37,-33 - 5649: -34,-33 - 5650: -31,-33 - 5651: -34,-34 - 5652: -30,-33 - 5653: -30,-31 - 5654: -31,-28 - 5655: -29,-27 - 5656: -29,-30 - 5657: -43,-30 - 5658: -44,-28 - 5659: -45,-31 - 5660: -46,-27 - 5661: -45,-25 - 5662: -45,-25 - 5663: -47,-25 - 5664: -49,-25 - 5665: -51,-26 - 5666: -50,-29 - 5667: -51,-30 - 5668: -51,-30 - 5669: -50,-32 - 5670: -47,-32 - 5671: -48,-33 - 5672: -44,-31 - 5673: -44,-29 - 5674: -55,-25 - 5675: -56,-25 - 5676: -55,-29 - 5677: -56,-29 - 5678: -55,-29 - 5679: -60,-27 - 5680: -60,-29 - 5681: -62,-27 - 5682: -61,-21 - 5683: -61,-21 - 5684: -54,-21 - 5685: -54,-21 - 5686: -55,-16 - 5687: -53,-14 - 5688: -54,-13 - 5689: -53,-10 - 5690: -54,-7 - 5691: -53,-5 - 5692: -55,-2 - 5693: -54,0 - 5694: -53,1 - 5695: -53,-4 - 5696: -54,-3 - 5697: -54,-4 - 5698: -54,-9 - 5699: -46,-4 - 5700: -47,-4 - 5701: -48,-3 - 5702: -50,0 - 5703: -45,1 - 5704: -47,1 - 5705: -44,1 - 5706: -47,1 - 5707: -46,7 - 5708: -49,7 - 5709: -49,11 - 5710: -46,11 - 5711: -49,10 - 5712: -48,13 - 5713: -45,11 - 5714: -54,10 - 5715: -54,9 - 5716: -53,10 - 5717: -39,1 - 5718: -37,0 - 5719: -39,-1 - 5720: -34,-1 - 5721: -37,-1 - 5722: -36,0 - 5723: -35,2 - 5724: -31,2 - 5725: -31,2 - 5726: -28,0 - 5727: -30,-1 - 5728: -27,-1 - 5729: -33,-4 - 5730: -27,-5 - 5731: -24,-3 - 5732: -24,1 - 5733: -22,3 - 5734: -23,-2 - 5735: -22,-3 - 5736: -17,-3 - 5737: -19,-3 - 5738: -17,-3 - 5739: -18,-4 - 5740: -14,-4 - 5741: -18,-4 - 5742: -17,-4 - 5743: -17,-4 - 5744: -19,-4 - 5745: -19,-2 - 5746: -19,-2 - 5747: -20,-3 - 5748: -20,-5 - 5749: -16,0 - 5750: -16,1 - 5751: -16,3 - 5752: -15,0 - 5753: -15,6 - 5754: -17,5 - 5755: -15,7 - 5756: -21,5 - 5757: -21,6 - 5758: -20,7 - 5759: -22,8 - 5760: -24,9 - 5761: -21,9 - 5762: -23,8 - 5763: -22,8 - 5764: -23,8 - 5765: -21,13 - 5766: -22,11 - 5767: -20,13 - 5768: -22,14 - 5769: -26,12 - 5770: -26,16 - 5771: -26,17 - 5772: -26,20 - 5773: -19,20 - 5774: -25,20 - 5775: -22,19 - 5776: -24,26 - 5777: -25,26 - 5778: -26,26 - 5779: -25,29 - 5780: -26,29 - 5781: -26,26 - 5782: -26,27 - 5783: -25,29 - 5784: -29,26 - 5785: -29,26 - 5786: -19,26 - 5787: -21,26 - 5788: -19,28 - 5789: -18,26 - 5790: -14,28 - 5791: -14,26 - 5792: -13,28 - 5793: -11,23 - 5794: -7,32 - 5795: -9,32 - 5796: -14,32 - 5797: -15,33 - 5798: -18,32 - 5799: -3,28 - 5800: -4,27 - 5801: -1,29 - 5802: -2,23 - 5803: -1,19 - 5804: -3,14 - 5805: -3,14 - 5806: -2,15 - 5807: -4,15 - 5808: -3,15 - 5809: 2,-14 - 5810: 2,-16 - 5811: -1,-17 - 5812: -2,-14 - 5813: -7,-17 - 5814: -6,-16 - 5815: -7,-19 - 5816: -7,-19 - 5817: -7,-23 - 5818: -1,-24 - 5819: 4,-20 - 5820: 6,-23 - 5821: 6,-20 - 5822: 7,-22 - 5823: 7,-20 - 5824: 11,-18 - 5825: 13,-18 - 5826: 13,-22 - 5827: 13,-22 - 5828: 12,-22 - 5829: 15,-26 - 5830: 12,-26 - 5831: 12,-29 - 5832: 7,-30 - 5833: 8,-32 - 5834: 7,-32 - 5835: 10,-34 - 5836: 13,-33 - 5837: 16,-32 - 5838: 21,-37 - 5839: 20,-38 - 5840: 24,-38 - 5841: 25,-37 - 5842: 28,-34 - 5843: 25,-34 - 5844: 27,-29 - 5845: 24,-29 - 5846: 33,-34 - 5847: 32,-37 - 5848: 35,-37 - 5849: 38,-36 - 5850: 40,-36 - 5851: 39,-30 - 5852: 44,-25 - 5853: 43,-25 - 5854: 42,-20 - 5855: 42,-18 - 5856: 41,-16 - 5857: 38,-16 - 5858: 37,-17 - 5859: 37,-15 - 5860: 37,-17 - 5861: 37,-16 - 5862: 37,-16 - 5863: 37,-16 - 5864: 38,-4 - 5865: 33,-3 - 5866: 33,-3 - 5867: 38,7 - 5868: 36,13 - 5869: 37,13 - 5870: 35,13 - 5871: 34,13 - 5872: 34,14 - 5873: 36,13 - 5874: 36,13 - 5875: 34,14 - 5876: 35,18 - 5877: 36,18 + 5181: -34,-26 + 5182: -37,-25 + 5183: -39,-28 + 5184: -40,-28 + 5185: -40,-31 + 5186: -39,-33 + 5187: -37,-33 + 5188: -32,-33 + 5189: -29,-33 + 5190: -29,-31 + 5191: -30,-28 + 5192: -29,-27 + 5193: -25,-30 + 5194: -25,-27 + 5195: -25,-26 + 5196: -25,-23 + 5197: -24,-21 + 5198: -25,-18 + 5199: -29,-20 + 5200: -29,-19 + 5201: -33,-19 + 5202: -33,-20 + 5203: -31,-14 + 5204: -29,-15 + 5205: -33,-16 + 5206: -29,-13 + 5207: -29,-11 + 5208: -38,-11 + 5209: -37,-15 + 5210: -36,-16 + 5211: -40,-10 + 5212: -38,-17 + 5213: -47,-8 + 5214: -45,0 + 5215: -47,0 + 5216: -44,2 + 5217: -48,-2 + 5218: -47,-1 + 5219: -49,3 + 5220: -50,-1 + 5221: -45,1 + 5222: -53,4 + 5223: -48,5 + 5224: -50,6 + 5225: -47,1 + 5226: -38,-1 + 5227: -36,1 + 5228: -32,-1 + 5229: -33,0 + 5230: -24,-2 + 5231: -28,3 + 5232: -26,3 + 5233: -26,8 + 5234: -27,13 + 5235: -26,14 + 5236: -26,18 + 5237: -22,13 + 5238: -20,12 + 5239: -22,13 + 5240: -24,19 + 5241: -20,20 + 5242: -18,19 + 5243: -16,20 + 5244: -13,19 + 5245: -15,24 + 5246: -14,24 + 5247: -13,27 + 5248: -14,28 + 5249: -13,27 + 5250: -5,28 + 5251: -20,28 + 5252: -18,25 + 5253: -13,31 + 5254: -15,32 + 5255: -14,34 + 5256: -17,32 + 5257: -8,32 + 5258: -8,32 + 5259: -6,33 + 5260: -6,27 + 5261: -3,28 + 5262: -1,30 + 5263: -2,33 + 5264: -2,33 + 5265: -2,36 + 5266: -2,43 + 5267: -7,42 + 5268: -5,45 + 5269: -3,47 + 5270: 0,45 + 5271: -2,47 + 5272: -1,47 + 5273: -2,51 + 5274: 1,51 + 5275: -1,52 + 5276: 1,52 + 5277: 2,45 + 5278: 2,47 + 5279: 2,42 + 5280: 1,40 + 5281: 6,41 + 5282: 8,39 + 5283: 6,41 + 5284: 5,31 + 5285: 3,31 + 5286: 5,30 + 5287: 4,30 + 5288: 3,26 + 5289: 2,27 + 5290: 4,25 + 5291: 3,23 + 5292: 2,24 + 5293: 1,23 + 5294: -2,24 + 5295: 1,21 + 5296: -1,19 + 5297: 4,20 + 5298: 9,20 + 5299: 9,20 + 5300: 15,19 + 5301: 11,24 + 5302: 14,23 + 5303: 14,25 + 5304: 15,24 + 5305: 14,29 + 5306: 14,31 + 5307: 17,25 + 5308: 17,23 + 5309: 16,20 + 5310: 20,20 + 5311: 20,18 + 5312: 20,15 + 5313: 21,15 + 5314: 20,12 + 5315: 22,12 + 5316: 20,11 + 5317: 27,12 + 5318: 27,11 + 5319: 26,14 + 5320: 25,19 + 5321: 30,19 + 5322: 31,16 + 5323: 31,12 + 5324: 35,14 + 5325: 35,14 + 5326: 35,14 + 5327: 32,8 + 5328: 34,9 + 5329: 32,7 + 5330: 26,7 + 5331: 24,7 + 5332: 24,3 + 5333: 24,2 + 5334: 23,2 + 5335: 20,6 + 5336: 20,9 + 5337: 23,3 + 5338: 32,3 + 5339: 34,2 + 5340: 32,-2 + 5341: 32,-2 + 5342: 32,-4 + 5343: 37,-4 + 5344: 36,3 + 5345: 42,2 + 5346: 38,-2 + 5347: 42,-5 + 5348: 42,-2 + 5349: 42,-4 + 5350: 43,6 + 5351: 52,12 + 5352: 50,14 + 5353: 50,7 + 5354: 53,14 + 5355: 59,15 + 5356: 60,17 + 5357: 55,7 + 5358: 54,7 + 5359: 50,7 + 5360: 49,0 + 5361: 45,-1 + 5362: 46,-5 + 5363: 46,-8 + 5364: 50,-4 + 5365: 50,-7 + 5366: 55,-5 + 5367: 53,-5 + 5368: 59,-14 + 5369: 60,-14 + 5370: 59,-14 + 5371: 59,-18 + 5372: 59,-20 + 5373: 60,-18 + 5374: 60,-17 + 5375: 64,-13 + 5376: 64,-17 + 5377: 65,-19 + 5378: 64,-19 + 5379: 64,-25 + 5380: 65,-24 + 5381: 63,-26 + 5382: 63,-24 + 5383: 62,-26 + 5384: 64,-26 + 5385: 70,-28 + 5386: 71,-26 + 5387: 69,-27 + 5388: 69,-23 + 5389: 70,-24 + 5390: 69,-22 + 5391: 66,-18 + 5392: 70,-18 + 5393: 71,-17 + 5394: 69,-13 + 5395: 71,-14 + 5396: 69,-12 + 5397: 70,-14 + 5398: 76,-17 + 5399: 77,-18 + 5400: 74,-15 + 5401: 76,-14 + 5402: 74,-14 + 5403: 68,-8 + 5404: 70,-10 + 5405: 76,-6 + 5406: 48,-25 + 5407: 48,-26 + 5408: 48,-27 + 5409: 48,-30 + 5410: 48,-31 + 5411: 47,-31 + 5412: 49,-34 + 5413: 47,-36 + 5414: 46,-36 + 5415: 44,-37 + 5416: 42,-35 + 5417: 42,-36 + 5418: 38,-36 + 5419: 38,-35 + 5420: 37,-37 + 5421: 32,-35 + 5422: 32,-36 + 5423: 32,-33 + 5424: 33,-31 + 5425: 32,-31 + 5426: 33,-27 + 5427: 32,-25 + 5428: 33,-24 + 5429: 35,-26 + 5430: 37,-26 + 5431: 41,-25 + 5432: 40,-26 + 5433: 41,-29 + 5434: 40,-29 + 5435: 40,-31 + 5436: 43,-29 + 5437: 44,-31 + 5438: 45,-30 + 5439: 27,-34 + 5440: 25,-34 + 5441: 24,-32 + 5442: 26,-29 + 5443: 23,-29 + 5444: 23,-31 + 5445: 25,-38 + 5446: 24,-37 + 5447: 22,-38 + 5448: 21,-37 + 5449: 21,-38 + 5450: 29,-39 + 5451: 28,-41 + 5452: 29,-44 + 5453: 28,-42 + 5454: 28,-45 + 5455: 26,-45 + 5456: 27,-44 + 5457: 24,-43 + 5458: 25,-46 + 5459: 27,-45 + 5460: 25,-46 + 5461: 32,-30 + 5462: 33,-28 + 5463: 36,-26 + 5464: 35,-26 + 5465: 36,-23 + 5466: 36,-30 + 5467: 42,-28 + 5468: 43,-29 + 5469: 52,-31 + 5470: 52,-35 + 5471: 55,-29 + 5472: 55,-30 + 5473: 57,-30 + 5474: 55,-34 + 5475: 55,-34 + 5476: 55,-36 + 5477: 57,-34 + 5478: 20,-45 + 5479: 17,-44 + 5480: 18,-45 + 5481: 19,-46 + 5482: 18,-48 + 5483: 19,-49 + 5484: 18,-50 + 5485: 20,-53 + 5486: 18,-54 + 5487: 17,-54 + 5488: 16,-54 + 5489: 16,-58 + 5490: 16,-59 + 5491: 19,-58 + 5492: 21,-58 + 5493: 21,-59 + 5494: 13,-47 + 5495: 14,-47 + 5496: 13,-48 + 5497: 13,-45 + 5498: 12,-45 + 5499: 10,-39 + 5500: 11,-39 + 5501: 0,-37 + 5502: 0,-36 + 5503: 1,-36 + 5504: 2,-38 + 5505: 0,-36 + 5506: -1,-37 + 5507: -2,-36 + 5508: -5,-36 + 5509: -4,-36 + 5510: -6,-36 + 5511: -7,-32 + 5512: -8,-32 + 5513: -7,-30 + 5514: -11,-31 + 5515: -12,-32 + 5516: -15,-32 + 5517: -16,-32 + 5518: -13,-30 + 5519: -16,-30 + 5520: -17,-30 + 5521: -22,-30 + 5522: -23,-30 + 5523: -24,-30 + 5524: -24,-29 + 5525: -24,-28 + 5526: -22,-32 + 5527: -24,-32 + 5528: -25,-32 + 5529: -26,-30 + 5530: -26,-28 + 5531: -26,-26 + 5532: -26,-24 + 5533: -24,-24 + 5534: -24,-22 + 5535: -24,-19 + 5536: -26,-21 + 5537: -26,-18 + 5538: -26,-17 + 5539: -24,-14 + 5540: -25,-15 + 5541: -27,-15 + 5542: -30,-15 + 5543: -30,-15 + 5544: -34,-15 + 5545: -35,-14 + 5546: -37,-15 + 5547: -38,-14 + 5548: -35,-15 + 5549: -34,-14 + 5550: -37,-10 + 5551: -38,-10 + 5552: -36,-9 + 5553: -29,-10 + 5554: -29,-11 + 5555: -33,-20 + 5556: -33,-18 + 5557: -32,-20 + 5558: -33,-18 + 5559: -29,-19 + 5560: -30,-21 + 5561: -29,-19 + 5562: -30,-20 + 5563: -37,-18 + 5564: -40,-18 + 5565: -39,-20 + 5566: -37,-19 + 5567: -39,-19 + 5568: -32,-26 + 5569: -35,-25 + 5570: -39,-26 + 5571: -39,-26 + 5572: -39,-27 + 5573: -40,-28 + 5574: -38,-30 + 5575: -39,-32 + 5576: -39,-33 + 5577: -37,-33 + 5578: -34,-33 + 5579: -31,-33 + 5580: -34,-34 + 5581: -30,-33 + 5582: -30,-31 + 5583: -31,-28 + 5584: -29,-27 + 5585: -29,-30 + 5586: -43,-30 + 5587: -44,-28 + 5588: -45,-31 + 5589: -46,-27 + 5590: -45,-25 + 5591: -45,-25 + 5592: -47,-25 + 5593: -49,-25 + 5594: -51,-26 + 5595: -50,-29 + 5596: -51,-30 + 5597: -51,-30 + 5598: -50,-32 + 5599: -47,-32 + 5600: -48,-33 + 5601: -44,-31 + 5602: -44,-29 + 5603: -55,-25 + 5604: -56,-25 + 5605: -55,-29 + 5606: -56,-29 + 5607: -55,-29 + 5608: -60,-27 + 5609: -60,-29 + 5610: -62,-27 + 5611: -61,-21 + 5612: -61,-21 + 5613: -54,-21 + 5614: -54,-21 + 5615: -55,-16 + 5616: -53,-14 + 5617: -54,-13 + 5618: -53,-10 + 5619: -54,-7 + 5620: -53,-5 + 5621: -55,-2 + 5622: -54,0 + 5623: -53,1 + 5624: -53,-4 + 5625: -54,-3 + 5626: -54,-4 + 5627: -54,-9 + 5628: -46,-4 + 5629: -47,-4 + 5630: -48,-3 + 5631: -50,0 + 5632: -45,1 + 5633: -47,1 + 5634: -44,1 + 5635: -47,1 + 5636: -46,7 + 5637: -49,7 + 5638: -49,11 + 5639: -46,11 + 5640: -49,10 + 5641: -48,13 + 5642: -45,11 + 5643: -54,10 + 5644: -54,9 + 5645: -53,10 + 5646: -39,1 + 5647: -37,0 + 5648: -39,-1 + 5649: -34,-1 + 5650: -37,-1 + 5651: -36,0 + 5652: -35,2 + 5653: -31,2 + 5654: -31,2 + 5655: -28,0 + 5656: -27,-1 + 5657: -27,-5 + 5658: -24,-3 + 5659: -24,1 + 5660: -22,3 + 5661: -23,-2 + 5662: -22,-3 + 5663: -17,-3 + 5664: -19,-3 + 5665: -17,-3 + 5666: -18,-4 + 5667: -14,-4 + 5668: -18,-4 + 5669: -17,-4 + 5670: -17,-4 + 5671: -19,-4 + 5672: -19,-2 + 5673: -19,-2 + 5674: -20,-3 + 5675: -20,-5 + 5676: -16,0 + 5677: -16,1 + 5678: -16,3 + 5679: -15,0 + 5680: -15,6 + 5681: -17,5 + 5682: -15,7 + 5683: -21,5 + 5684: -21,6 + 5685: -20,7 + 5686: -22,8 + 5687: -24,9 + 5688: -21,9 + 5689: -23,8 + 5690: -22,8 + 5691: -23,8 + 5692: -21,13 + 5693: -22,11 + 5694: -20,13 + 5695: -22,14 + 5696: -26,12 + 5697: -26,16 + 5698: -26,17 + 5699: -26,20 + 5700: -19,20 + 5701: -25,20 + 5702: -22,19 + 5703: -24,26 + 5704: -25,26 + 5705: -26,26 + 5706: -25,29 + 5707: -26,29 + 5708: -26,26 + 5709: -26,27 + 5710: -25,29 + 5711: -29,26 + 5712: -29,26 + 5713: -19,26 + 5714: -21,26 + 5715: -19,28 + 5716: -18,26 + 5717: -14,28 + 5718: -14,26 + 5719: -13,28 + 5720: -11,23 + 5721: -7,32 + 5722: -9,32 + 5723: -14,32 + 5724: -15,33 + 5725: -18,32 + 5726: -3,28 + 5727: -4,27 + 5728: -1,29 + 5729: -2,23 + 5730: -1,19 + 5731: -3,14 + 5732: -3,14 + 5733: -2,15 + 5734: -4,15 + 5735: -3,15 + 5736: 2,-14 + 5737: 2,-16 + 5738: -1,-17 + 5739: -2,-14 + 5740: -7,-17 + 5741: -6,-16 + 5742: -7,-19 + 5743: -7,-19 + 5744: -7,-23 + 5745: -1,-24 + 5746: 4,-20 + 5747: 6,-23 + 5748: 6,-20 + 5749: 7,-22 + 5750: 7,-20 + 5751: 11,-18 + 5752: 13,-18 + 5753: 13,-22 + 5754: 13,-22 + 5755: 12,-22 + 5756: 15,-26 + 5757: 12,-26 + 5758: 12,-29 + 5759: 7,-30 + 5760: 8,-32 + 5761: 7,-32 + 5762: 10,-34 + 5763: 13,-33 + 5764: 16,-32 + 5765: 21,-37 + 5766: 20,-38 + 5767: 24,-38 + 5768: 25,-37 + 5769: 28,-34 + 5770: 25,-34 + 5771: 27,-29 + 5772: 24,-29 + 5773: 33,-34 + 5774: 32,-37 + 5775: 35,-37 + 5776: 38,-36 + 5777: 40,-36 + 5778: 39,-30 + 5779: 44,-25 + 5780: 43,-25 + 5781: 42,-20 + 5782: 42,-18 + 5783: 41,-16 + 5784: 38,-16 + 5785: 37,-17 + 5786: 37,-15 + 5787: 37,-17 + 5788: 37,-16 + 5789: 37,-16 + 5790: 37,-16 + 5791: 38,-4 + 5792: 33,-3 + 5793: 33,-3 + 5794: 38,7 + 5795: 36,13 + 5796: 37,13 + 5797: 35,13 + 5798: 34,13 + 5799: 34,14 + 5800: 36,13 + 5801: 36,13 + 5802: 34,14 + 5803: 35,18 + 5804: 36,18 - node: cleanable: True color: '#D4D4D447' id: Dirt decals: - 6481: 37,-3 - 6482: 37,-2 - 6483: 37,-2 - 6484: 38,-3 - 6485: 39,-2 - 6486: 39,-2 - 6487: 38,-3 - 6488: 38,-2 - 6489: 36,-3 - 6490: 36,-3 - 6491: 36,-2 - 6492: 36,-2 - 6493: 39,-3 - 6494: 37,-3 - 6495: 37,-3 + 6406: 37,-3 + 6407: 37,-2 + 6408: 37,-2 + 6409: 38,-3 + 6410: 39,-2 + 6411: 39,-2 + 6412: 38,-3 + 6413: 38,-2 + 6414: 36,-3 + 6415: 36,-3 + 6416: 36,-2 + 6417: 36,-2 + 6418: 39,-3 + 6419: 37,-3 + 6420: 37,-3 - node: cleanable: True color: '#FFFFFF47' id: Dirt decals: - 6390: 15,-30 - 6391: 15,-30 - 6392: 16,-27 - 6393: 16,-27 + 6315: 15,-30 + 6316: 15,-30 + 6317: 16,-27 + 6318: 16,-27 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 5889: 51,20 - 5890: 50,21 - 5927: 81,-34 - 5928: 83,-35 - 5929: 81,-34 - 5930: 81,-34 - 5931: 83,-35 - 5932: 81,-35 - 5933: 82,-35 - 5934: 82,-35 - 5935: 80,-35 - 5936: 83,-36 - 5941: 82,-34 - 6462: -25,-42 + 5816: 51,20 + 5817: 50,21 + 5854: 81,-34 + 5855: 83,-35 + 5856: 81,-34 + 5857: 81,-34 + 5858: 83,-35 + 5859: 81,-35 + 5860: 82,-35 + 5861: 82,-35 + 5862: 80,-35 + 5863: 83,-36 + 5868: 82,-34 + 6387: -25,-42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 2897: -44,16 - 2898: -43,17 - 2899: -41,14 + 2850: -44,16 + 2851: -43,17 + 2852: -41,14 - node: cleanable: True color: '#1D1D21FF' id: DirtHeavy decals: - 2822: -39,26 - 2823: -40,29 - 2824: -38,28 - 2825: -36,29 - 2826: -35,27 - 2827: -35,26 - 2828: -35,26 - 2829: -37,26 - 2830: -37,26 - 2831: -37,25 - 2832: -39,26 - 2833: -34,25 - 2834: -34,25 - 2835: -36,24 + 2792: -39,26 + 2793: -40,29 + 2794: -38,28 + 2795: -36,29 + 2796: -35,27 + 2797: -35,26 + 2798: -35,26 + 2799: -37,26 + 2800: -37,26 + 2801: -37,25 + 2802: -39,26 + 2803: -34,25 + 2804: -34,25 + 2805: -36,24 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2814: -36,26 - 2815: -35,27 - 2816: -37,26 - 2817: -37,27 - 2818: -37,25 - 2819: -39,26 - 2820: -38,27 - 2821: -38,28 + 2784: -36,26 + 2785: -35,27 + 2786: -37,26 + 2787: -37,27 + 2788: -37,25 + 2789: -39,26 + 2790: -38,27 + 2791: -38,28 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 6355: 89,-20 - 6356: 87,-21 - 6357: 92,-21 + 6280: 89,-20 + 6281: 87,-21 + 6282: 92,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 2842: -8,-40 - 2843: -7,-39 - 2844: -5,-40 - 2845: -6,-42 - 2846: -4,-39 - 2847: -6,-40 - 2848: -6,-40 - 2849: -7,-40 - 2850: -7,-39 - 2851: -7,-39 - 2852: -8,-39 - 3507: -60,-66 - 3508: -59,-65 - 3509: -59,-63 - 3510: -59,-61 - 3511: -59,-59 - 3512: -59,-57 - 3513: -60,-57 - 3514: -57,-57 - 3515: -58,-58 - 3516: -56,-57 - 3517: -56,-58 - 3518: -56,-60 - 3519: -56,-62 - 3520: -56,-64 - 3521: -56,-66 - 3522: -58,-66 - 3523: -55,-56 - 3524: -54,-54 - 3525: -54,-52 - 3526: -54,-50 - 3527: -56,-53 - 3528: -56,-52 - 3529: -56,-47 - 3530: -53,-48 - 3531: -52,-46 - 3532: -54,-46 - 3533: -51,-46 - 3534: -50,-48 - 3535: -47,-48 - 3536: -45,-48 - 3537: -43,-46 - 3538: -45,-46 - 3539: -43,-48 - 3540: -42,-48 - 3541: -40,-48 - 3542: -40,-50 - 3543: -40,-52 - 3544: -40,-54 - 3545: -42,-51 - 3546: -42,-53 - 3547: -42,-54 - 3548: -41,-56 - 3549: -39,-57 - 3550: -40,-58 - 3551: -37,-57 - 3552: -37,-58 - 3553: -37,-61 - 3554: -37,-64 - 3555: -37,-65 - 3556: -36,-65 - 3557: -36,-66 - 3558: -39,-66 - 3559: -40,-65 - 3560: -40,-63 - 3561: -40,-60 - 3562: -47,-44 - 3563: -47,-42 - 3564: -47,-39 - 3565: -47,-35 - 3566: -47,-33 - 3567: -49,-33 - 3568: -49,-37 - 3569: -49,-39 - 3570: -49,-41 - 3571: -49,-44 - 3572: -49,-44 - 3573: -49,-43 - 3574: -44,-32 - 3575: -44,-30 - 3576: -43,-31 - 3577: -43,-27 - 3578: -44,-26 - 3579: -43,-26 - 3580: -44,-25 - 3581: -52,-32 - 3582: -52,-30 - 3583: -52,-29 - 3584: -52,-25 - 3585: -52,-22 - 3586: -54,-22 - 3587: -55,-22 - 3588: -52,-20 - 3589: -50,-20 - 3590: -47,-20 - 3591: -46,-20 - 3592: -45,-20 - 3593: -44,-20 - 3594: -44,-22 - 3595: -51,-18 - 3596: -51,-17 - 3597: -49,-17 - 3598: -48,-15 - 3599: -48,-13 - 3600: -50,-13 - 3601: -51,-14 - 3602: -51,-15 - 3603: -44,-15 - 3604: -46,-15 - 3605: -46,-14 - 3606: -54,-24 - 3607: -56,-24 - 3608: -54,-30 - 3609: -56,-29 - 3610: -57,-28 - 3611: -54,-28 - 3612: -61,-29 - 3613: -59,-29 - 3614: -59,-27 - 3615: -59,-25 - 3616: -61,-25 - 3617: -55,-17 - 3618: -55,-15 - 3619: -55,-13 - 3620: -55,-10 - 3621: -53,-17 - 3622: -53,-14 - 3623: -53,-12 - 3624: -53,-11 - 3625: -53,-9 - 3626: -53,-7 - 3627: -53,-6 - 3628: -53,-4 - 3629: -55,-3 - 3630: -55,-7 - 3631: -55,-8 - 3632: -53,0 - 3633: -53,-2 - 3634: -51,-4 - 3635: -49,-4 - 3636: -50,-5 - 3637: -48,-5 - 3646: -53,2 - 3647: -53,4 - 3648: -53,6 - 3649: -53,7 - 3650: -55,7 - 3651: -55,5 - 3652: -55,-1 - 3653: -51,6 - 3654: -50,7 - 3655: -47,7 - 3656: -48,6 - 3657: -46,6 - 3658: -45,7 - 3659: -47,9 - 3660: -45,9 - 3661: -44,9 - 3662: -50,9 - 3663: -50,9 - 3664: -51,11 - 3665: -51,13 - 3666: -50,13 - 3667: -48,13 - 3668: -46,13 - 3669: -48,12 - 3670: -43,11 - 3671: -44,12 - 3672: -43,13 - 3673: -43,12 - 3674: -54,10 - 3675: -53,9 - 3676: -54,9 - 3699: -40,2 - 3700: -39,1 - 3701: -39,1 - 3702: -40,-1 - 3703: -38,-1 - 3704: -40,-2 - 3705: -39,-2 - 3706: -40,-4 - 3707: -39,-5 - 3708: -38,-5 - 3709: -37,-5 - 3710: -36,-5 - 3711: -38,-4 - 3712: -36,-3 - 3713: -36,-2 - 3714: -36,-4 - 3715: -34,-3 - 3716: -32,-4 - 3717: -34,-1 - 3718: -32,0 - 3719: -35,0 - 3720: -39,3 - 3721: -40,4 - 3722: -38,4 - 3723: -31,2 - 3724: -31,-1 - 3725: -29,0 - 3726: -32,-2 - 3727: -31,-3 - 3728: -33,-4 - 3729: -32,-5 - 3730: -31,-4 - 3731: -30,-3 - 3732: -28,-3 - 3733: -28,-4 - 3734: -26,-5 - 3735: -27,-2 - 3736: -27,-3 - 3737: -29,0 - 3738: -27,0 - 3739: -27,2 - 3740: -28,3 - 3741: -27,3 - 3742: -27,1 - 3743: -26,-1 - 3744: -32,-1 - 3745: -28,4 - 3746: -26,5 - 3747: -26,6 - 3748: -26,3 - 3749: -26,3 - 3750: -24,2 - 3751: -23,1 - 3752: -25,0 - 3753: -23,-2 - 3754: -25,-3 - 3755: -23,-3 - 3756: -25,-4 - 3757: -23,-5 - 3758: -25,-5 - 3759: -24,-1 - 3760: -25,-1 - 3761: -23,3 - 3762: -15,-1 - 3763: -16,-1 - 3764: -15,0 - 3765: -16,1 - 3766: -16,3 - 3767: -15,3 - 3768: -15,2 - 3769: -15,1 - 3770: -15,1 - 3771: -27,6 - 3772: -27,7 - 3773: -27,9 - 3774: -20,5 - 3775: -21,5 - 3780: -17,5 - 3781: -16,5 - 3782: -16,5 - 3783: -22,11 - 3784: -21,11 - 3785: -22,13 - 3786: -20,14 - 3787: -22,13 - 3788: -22,15 - 3789: -20,14 - 3790: -20,13 - 3791: -20,12 - 3792: -19,11 - 3793: -22,14 - 3794: -23,14 - 3795: -17,11 - 3796: -17,11 - 3797: -17,12 - 3798: -16,11 - 3799: -16,12 - 3800: -17,13 - 3801: -16,14 - 3802: -17,14 - 3803: -16,12 - 3804: -17,12 - 3805: -17,11 - 3808: -39,11 - 3809: -27,11 - 3810: -27,13 - 3811: -27,16 - 3812: -27,17 - 3813: -27,19 - 3814: -27,20 - 3815: -27,21 - 3816: -25,18 - 3817: -25,16 - 3818: -25,14 - 3819: -25,12 - 3820: -25,11 - 3821: -24,18 - 3822: -22,18 - 3823: -23,17 - 3824: -21,17 - 3825: -20,18 - 3826: -19,17 - 3827: -20,20 - 3828: -22,20 - 3829: -24,20 - 3830: -20,21 - 3831: -17,19 - 3832: -16,19 - 3833: -14,19 - 3834: -17,21 - 3835: -15,21 - 3836: -13,21 - 3837: -11,21 - 3838: -13,19 - 3839: -10,19 - 3840: -8,19 - 3841: -6,19 - 3842: -9,21 - 3843: -7,21 - 3844: -5,21 - 3845: -3,21 - 3846: 0,21 - 3847: -5,19 - 3848: -2,19 - 3849: 0,19 - 3850: 0,21 - 3851: 2,21 - 3852: 5,21 - 3853: 6,21 - 3854: 2,19 - 3855: 4,19 - 3856: 7,19 - 3857: 10,19 - 3858: 8,21 - 3859: 10,21 - 3860: 11,21 - 3861: 13,21 - 3862: 12,19 - 3863: 14,19 - 3864: 15,19 - 3865: 17,19 - 3866: 15,23 - 3867: 14,23 - 3868: 13,24 - 3869: 15,25 - 3870: 15,24 - 3871: 11,23 - 3872: 10,23 - 3873: 11,24 - 3874: 17,23 - 3875: 17,25 - 3876: 17,25 - 3877: 16,23 - 3878: 18,19 - 3879: 19,19 - 3880: 19,21 - 3881: 17,21 - 3882: 16,21 - 3883: 21,20 - 3884: 21,18 - 3885: 21,17 - 3886: 19,18 - 3887: 19,15 - 3888: 19,12 - 3889: 19,11 - 3890: 21,16 - 3891: 21,13 - 3892: 21,12 - 3893: 21,10 - 3894: 21,8 - 3895: 21,7 - 3896: 19,9 - 3897: 19,7 - 3898: 19,6 - 3899: 23,10 - 3900: 24,10 - 3901: 26,10 - 3902: 27,10 - 3903: 28,7 - 3904: 27,8 - 3905: 27,6 - 3906: 28,6 - 3907: 30,6 - 3908: 30,8 - 3909: 30,9 - 3910: 30,10 - 3911: 33,10 - 3912: 34,10 - 3913: 31,12 - 3914: 31,13 - 3915: 30,14 - 3916: 31,17 - 3917: 30,17 - 3918: 31,19 - 3919: 31,20 - 3920: 31,22 - 3921: 30,22 - 3922: 28,22 - 3923: 29,23 - 3924: 26,22 - 3925: 24,22 - 3926: 23,22 - 3927: 23,23 - 3928: 23,20 - 3929: 23,18 - 3930: 25,18 - 3931: 25,17 - 3932: 26,18 - 3933: 27,17 - 3934: 26,19 - 3935: 27,20 - 3936: 29,18 - 3937: 27,18 - 3938: 30,17 - 3939: 33,22 - 3940: 35,22 - 3941: 33,19 - 3942: 33,18 - 3943: 35,18 - 3944: 36,17 - 3945: 34,17 - 3946: 35,17 - 3947: 33,13 - 3948: 33,15 - 3949: 33,15 - 3950: 32,13 - 3951: 26,7 - 3952: 23,2 - 3953: 26,2 - 3954: 20,2 - 3955: 21,2 - 3956: 19,4 - 3962: 31,2 - 3963: 33,2 - 3964: 33,4 - 3965: 32,4 - 3966: 35,4 - 3967: 37,4 - 3968: 37,2 - 3969: 40,2 - 3970: 41,2 - 3971: 41,1 - 3972: 38,2 - 3973: 39,-4 - 3974: 37,-4 - 3975: 39,-5 - 3976: 33,-1 - 3977: 31,-1 - 3978: 31,0 - 3979: 33,0 - 3980: 32,1 - 3981: 38,7 - 3982: 54,14 - 3983: 58,14 - 3984: 59,14 - 3985: 60,14 - 3986: 58,16 - 3987: 55,10 - 3988: 55,12 - 3989: 54,12 - 3990: 54,6 - 3991: 59,3 - 3992: 60,4 - 3993: 59,0 - 3994: 55,-5 - 3995: 56,-4 - 3996: 41,-1 - 3997: 41,-3 - 3998: 41,-5 - 3999: 41,-7 - 4000: 41,-10 - 4001: 41,-11 - 4002: 43,-12 - 4003: 43,-14 - 4004: 43,-16 - 4005: 43,-17 - 4006: 41,-15 - 4007: 41,-16 - 4008: 41,-17 - 4009: 41,-19 - 4010: 40,-19 - 4011: 40,-21 - 4012: 42,-21 - 4013: 43,-21 - 4014: 45,-21 - 4019: 45,-19 - 4020: 47,-19 - 4021: 48,-19 - 4022: 51,-19 - 4023: 47,-21 - 4024: 49,-21 - 4025: 47,-22 - 4026: 51,-21 - 4027: 59,-21 - 4028: 60,-21 - 4029: 61,-20 - 4030: 59,-19 - 4031: 61,-19 - 4032: 60,-17 - 4033: 60,-17 - 4034: 58,-18 - 4035: 58,-19 - 4036: 56,-19 - 4037: 55,-19 - 4038: 53,-19 - 4039: 60,-15 - 4040: 58,-15 - 4041: 59,-14 - 4042: 57,-13 - 4043: 57,-12 - 4044: 60,-13 - 4045: 60,-12 - 4046: 60,-14 - 4047: 61,-13 - 4048: 63,-13 - 4049: 64,-12 - 4050: 65,-14 - 4051: 63,-14 - 4052: 63,-16 - 4053: 65,-16 - 4054: 65,-18 - 4055: 65,-20 - 4056: 63,-18 - 4057: 63,-20 - 4058: 63,-21 - 4059: 65,-21 - 4060: 62,-23 - 4061: 61,-24 - 4062: 64,-24 - 4063: 63,-25 - 4064: 64,-26 - 4065: 65,-27 - 4066: 66,-26 - 4067: 65,-24 - 4068: 65,-23 - 4069: 65,-23 - 4073: 68,-21 - 4074: 69,-21 - 4075: 69,-23 - 4076: 69,-24 - 4078: 69,-27 - 4079: 70,-26 - 4080: 70,-26 - 4081: 71,-27 - 4082: 71,-28 - 4083: 70,-28 - 4084: 68,-28 - 4085: 69,-29 - 4086: 70,-30 - 4087: 69,-30 - 4088: 70,-29 - 4089: 70,-29 - 4090: 70,-29 - 4091: 71,-30 - 4092: 71,-17 - 4093: 68,-17 - 4094: 67,-19 - 4095: 70,-17 - 4096: 70,-19 - 4097: 71,-18 - 4098: 68,-18 - 4099: 69,-19 - 4119: 69,-9 - 4120: 68,-9 - 4121: 67,-9 - 4122: 70,-10 - 4123: 77,-18 - 4124: 75,-18 - 4125: 76,-19 - 4126: 77,-18 - 4127: 76,-17 - 4128: 76,-15 - 4129: 75,-15 - 4130: 76,-13 - 4131: 77,-14 - 4132: 74,-14 - 4133: 74,-16 - 4134: 73,-14 - 4135: 74,-17 - 4136: 74,-18 - 4137: 72,-17 - 4138: 73,-19 - 4139: 73,-17 - 4140: 74,-16 - 4141: 73,-15 - 4142: 74,-16 - 4143: 74,-15 - 4144: 76,-18 - 4145: 79,-14 - 4146: 80,-13 - 4147: 81,-14 - 4148: 79,-14 - 4149: 80,-15 - 4150: 81,-13 - 4151: 80,-19 - 4152: 79,-18 - 4153: 80,-18 - 4154: 80,-19 - 4155: 79,-19 - 4156: 80,-19 - 4157: 81,-19 - 4158: 80,-17 - 4159: 80,-18 - 4160: 79,-19 - 4161: 50,-13 - 4162: 51,-14 - 4163: 50,-13 - 4164: 51,-13 - 4165: 50,-14 - 4166: 50,-14 - 4167: 48,-13 - 4168: 48,-14 - 4169: 48,-13 - 4170: 53,-13 - 4171: 53,-14 - 4172: 53,-12 - 4173: 53,-14 - 4174: 53,-13 - 4175: 53,-14 - 4176: 50,-15 - 4177: 51,-15 - 4178: 50,-14 - 4179: 51,-13 - 4180: 50,-12 - 4181: 50,-12 - 4182: 48,-12 - 4183: 50,-12 - 4184: 51,-13 - 4185: 47,-24 - 4186: 49,-25 - 4187: 48,-26 - 4188: 47,-25 - 4189: 49,-25 - 4190: 48,-23 - 4191: 47,-28 - 4192: 49,-29 - 4193: 47,-30 - 4194: 48,-32 - 4195: 49,-31 - 4196: 48,-33 - 4197: 47,-33 - 4198: 49,-33 - 4199: 48,-34 - 4200: 47,-34 - 4201: 43,-36 - 4202: 40,-36 - 4203: 37,-35 - 4204: 36,-35 - 4205: 37,-36 - 4206: 40,-36 - 4207: 43,-35 - 4208: 43,-35 - 4209: 41,-35 - 4210: 43,-35 - 4211: 43,-34 - 4237: 33,-34 - 4238: 31,-34 - 4239: 33,-32 - 4240: 32,-32 - 4241: 32,-31 - 4242: 32,-30 - 4243: 33,-28 - 4244: 31,-29 - 4245: 33,-31 - 4246: 33,-31 - 4247: 35,-30 - 4248: 36,-30 - 4249: 36,-29 - 4250: 33,-25 - 4251: 31,-25 - 4252: 33,-25 - 4253: 31,-25 - 4254: 33,-25 - 4255: 32,-26 - 4256: 31,-25 - 4257: 32,-24 - 4258: 32,-25 - 4259: 31,-24 - 4260: 40,-25 - 4261: 39,-24 - 4262: 40,-26 - 4263: 42,-25 - 4264: 42,-25 - 4265: 44,-24 - 4266: 42,-25 - 4267: 44,-25 - 4268: 45,-25 - 4269: 42,-26 - 4270: 43,-25 - 4271: 43,-25 - 4272: 41,-25 - 4273: 40,-25 - 4274: 40,-25 - 4275: 40,-24 - 4276: 35,-23 - 4277: 37,-23 - 4278: 36,-23 - 4279: 35,-23 - 4280: 38,-21 - 4281: 35,-21 - 4282: 33,-21 - 4283: 33,-22 - 4284: 32,-22 - 4285: 32,-21 - 4286: 37,-19 - 4287: 34,-19 - 4288: 32,-19 - 4289: 31,-19 - 4290: 28,-19 - 4291: 27,-19 - 4292: 27,-20 - 4293: 27,-21 - 4294: 30,-21 - 4295: 29,-21 - 4296: 29,-23 - 4297: 29,-24 - 4298: 29,-25 - 4299: 29,-26 - 4300: 27,-22 - 4301: 27,-24 - 4302: 27,-25 - 4303: 26,-25 - 4304: 25,-25 - 4305: 29,-27 - 4306: 27,-27 - 4307: 25,-27 - 4308: 24,-27 - 4309: 21,-27 - 4310: 21,-25 - 4311: 20,-25 - 4312: 19,-25 - 4313: 19,-26 - 4314: 19,-28 - 4315: 19,-28 - 4316: 19,-30 - 4317: 19,-31 - 4318: 19,-32 - 4319: 21,-30 - 4320: 21,-33 - 4321: 21,-34 - 4322: 21,-34 - 4323: 19,-34 - 4324: 20,-36 - 4325: 20,-37 - 4326: 19,-37 - 4327: 20,-39 - 4328: 21,-38 - 4329: 22,-39 - 4330: 21,-37 - 4331: 24,-37 - 4332: 23,-38 - 4333: 25,-37 - 4334: 25,-38 - 4335: 24,-38 - 4336: 25,-38 - 4337: 17,-34 - 4338: 17,-35 - 4339: 16,-34 - 4340: 14,-34 - 4341: 17,-32 - 4342: 15,-32 - 4343: 13,-32 - 4344: 11,-32 - 4345: 10,-32 - 4346: 12,-34 - 4347: 9,-34 - 4348: 8,-34 - 4349: 7,-34 - 4350: 7,-32 - 4351: 7,-32 - 4352: 6,-32 - 4353: 9,-30 - 4354: 8,-29 - 4355: 7,-29 - 4356: 7,-29 - 4357: 6,-28 - 4358: 8,-27 - 4359: 9,-27 - 4360: 7,-28 - 4361: 6,-27 - 4362: 5,-29 - 4363: 7,-30 - 4364: 9,-30 - 4365: 3,-30 - 4366: 1,-30 - 4367: 3,-32 - 4368: 2,-32 - 4369: 2,-33 - 4370: 0,-33 - 4371: -1,-33 - 4372: -1,-32 - 4373: 0,-30 - 4374: -3,-30 - 4375: -4,-30 - 4376: -6,-30 - 4377: -7,-30 - 4378: -9,-30 - 4379: -6,-32 - 4380: -5,-32 - 4381: -3,-32 - 4382: -8,-32 - 4383: -8,-33 - 4384: -9,-32 - 4385: -10,-32 - 4386: -11,-32 - 4387: -13,-32 - 4388: -10,-30 - 4389: -11,-30 - 4390: -13,-30 - 4391: -15,-30 - 4392: -16,-30 - 4393: -12,-29 - 4394: -12,-30 - 4395: -16,-32 - 4396: -17,-33 - 4397: -17,-32 - 4398: -19,-32 - 4399: -18,-30 - 4400: -20,-30 - 4401: -22,-30 - 4402: -23,-30 - 4403: -23,-29 - 4404: -22,-32 - 4405: -24,-32 - 4406: -24,-32 - 4407: -26,-30 - 4408: -26,-29 - 4409: -26,-27 - 4410: -26,-25 - 4411: -24,-27 - 4412: -24,-26 - 4413: -24,-25 - 4414: -24,-24 - 4415: -26,-23 - 4416: -26,-22 - 4417: -26,-20 - 4418: -24,-21 - 4419: -24,-19 - 4420: -24,-18 - 4421: -24,-16 - 4422: -26,-17 - 4423: -26,-16 - 4424: -26,-14 - 4425: -26,-13 - 4426: -26,-12 - 4427: -26,-10 - 4428: -26,-9 - 4429: -25,-9 - 4430: -24,-11 - 4431: -23,-11 - 4432: -23,-10 - 4433: -23,-9 - 4434: -24,-5 - 4435: -24,-4 - 4436: -24,-2 - 4437: -19,-11 - 4438: -19,-10 - 4439: -20,-10 - 4440: -20,-9 - 4441: -19,-9 - 4442: -30,-21 - 4443: -30,-19 - 4444: -29,-19 - 4445: -30,-18 - 4446: -32,-21 - 4447: -32,-19 - 4448: -33,-18 - 4449: -36,-15 - 4450: -36,-14 - 4451: -33,-14 - 4452: -33,-14 - 4453: -33,-15 - 4454: -30,-14 - 4455: -36,-10 - 4456: -37,-9 - 4457: -37,-10 - 4458: -29,-10 - 4459: -30,-11 - 4460: -30,-9 - 4461: -28,-10 - 4462: -40,-11 - 4463: -41,-10 - 4464: -41,-9 - 4465: -40,-9 - 4466: -41,-10 - 4467: -41,-10 - 4468: -49,-18 - 4469: -38,-33 - 4470: -36,-33 - 4471: -33,-33 - 4472: -32,-33 - 4473: -31,-33 - 4474: -31,-31 - 4475: -31,-29 - 4476: -31,-28 - 4477: -31,-26 - 4478: -33,-26 - 4479: -35,-26 - 4480: -36,-26 - 4481: -37,-26 - 4482: -38,-26 - 4483: -38,-27 - 4484: -38,-29 - 4485: -38,-30 - 4486: -38,-31 - 4487: -38,-29 - 4488: -38,-26 - 4489: -40,-26 - 4490: -40,-25 - 4491: -41,-25 - 4492: -41,-26 - 4493: -41,-28 - 4494: -41,-29 - 4495: -41,-30 - 4496: -41,-32 - 4497: -41,-33 - 4498: -41,-34 - 4499: -39,-33 - 4500: -40,-34 - 4501: -35,-34 - 4502: -34,-34 - 4503: -32,-34 - 4504: -31,-34 - 4505: -30,-34 - 4506: -30,-33 - 4507: -28,-34 - 4508: -28,-32 - 4509: -28,-31 - 4510: -28,-29 - 4511: -28,-27 - 4512: -28,-26 - 4513: -29,-25 - 4514: -30,-25 - 4515: -30,-26 - 4516: -32,-25 - 4517: -33,-26 - 4518: -35,-25 - 4519: -32,6 - 4520: -32,7 - 4521: -32,6 - 4522: -36,6 - 4523: -36,5 - 4524: -36,7 - 4525: -34,6 - 4526: -34,5 - 4527: -35,6 - 4528: -33,6 - 4529: -35,-4 - 4530: -35,-2 - 4531: -36,-5 - 4532: -35,-2 - 4533: -34,-2 - 4534: -35,-1 - 4546: -25,28 - 4547: -26,28 - 4548: -18,32 - 4549: -17,31 - 4550: -17,33 - 4551: -18,32 - 4552: -15,34 - 4553: -15,32 - 4554: -15,31 - 4555: -13,31 - 4556: -12,31 - 4557: -15,34 - 4558: -15,34 - 4559: -12,39 - 4560: -13,40 - 4561: -14,40 - 4562: -15,40 - 4563: -16,40 - 4564: -16,40 - 4565: -13,40 - 4566: -12,40 - 4567: -12,38 - 4568: -12,40 - 4574: -5,40 - 4575: -6,40 - 4576: -6,42 - 4577: -6,43 - 4578: -5,42 - 4579: -6,43 - 4580: -6,45 - 4581: -6,46 - 4582: -6,47 - 4583: -5,46 - 4584: -4,48 - 4585: -5,46 - 4586: -2,48 - 4587: -4,46 - 4588: -1,47 - 4589: -3,45 - 4590: 0,46 - 4591: -3,47 - 4592: -1,45 - 4593: -3,46 - 4594: 1,45 - 4595: 1,47 - 4596: 0,46 - 4597: 1,48 - 4598: 2,48 - 4599: 3,47 - 4600: 2,45 - 4601: 2,44 - 4602: 2,43 - 4603: 2,42 - 4604: 1,42 - 4605: 3,42 - 4606: -2,43 - 4607: -1,41 - 4608: -3,40 - 4609: -3,40 - 4610: 1,51 - 4611: -2,50 - 4612: -3,50 - 4613: -2,51 - 4614: 0,51 - 4615: -1,52 - 4616: -2,51 - 4617: -2,53 - 4618: 1,53 - 4619: 2,51 - 4620: 2,50 - 4621: 0,50 - 4622: -4,45 - 4623: -4,47 - 4650: 6,42 - 4651: 5,41 - 4652: 5,39 - 4653: 7,39 - 4654: 8,39 - 4655: 9,41 - 4656: 9,40 - 4657: 8,42 - 4658: 8,41 - 4659: 15,37 - 4660: 14,37 - 4661: 14,35 - 4662: 14,34 - 4663: 13,35 - 4664: 13,36 - 4665: 15,34 - 4666: 16,35 - 4667: 15,36 - 4668: 15,34 - 4669: 15,35 - 4670: 15,37 - 4671: 14,37 - 4672: 15,30 - 4673: 14,29 - 4674: 14,29 - 4675: 15,28 - 4676: 14,29 - 4677: 14,32 - 4678: 13,32 - 4679: 15,24 - 4703: 2,24 - 4704: 1,24 - 4705: 1,24 - 4706: 2,23 - 4707: 4,23 - 4708: 4,24 - 4709: 3,26 - 4710: 4,28 - 4711: 2,27 - 4712: 2,27 - 4713: 3,27 - 4714: -2,25 - 4715: -3,25 - 4716: -3,23 - 4717: -2,24 - 4718: -4,23 - 4719: -4,25 - 4755: -14,28 - 4756: -15,28 - 4757: -14,29 - 4758: -13,26 - 4759: -10,26 - 4760: -9,27 - 4761: -10,28 - 4762: -7,28 - 4763: -8,26 - 4764: -5,28 - 4765: -7,24 - 4766: -8,24 - 4767: -7,23 - 4768: -6,24 - 4769: -6,23 - 4770: -7,23 - 4771: -8,23 - 4772: -8,23 - 4773: -12,23 - 4774: -11,24 - 4775: -10,23 - 4776: -10,24 - 4777: -10,24 - 4778: -12,24 - 4779: -12,24 - 4780: -14,24 - 4781: -14,23 - 4782: -16,24 - 4783: -14,24 - 4784: -15,23 - 4785: -16,24 - 4786: -14,25 - 4787: -10,25 - 4788: -7,25 - 4789: -1,28 - 4790: -3,27 - 4791: -1,30 - 4792: -1,33 - 4793: -1,34 - 4794: -1,37 - 4795: -3,37 - 4796: -3,38 - 4797: -1,37 - 4798: -2,37 - 4799: -1,40 - 4800: -3,41 - 4801: -3,43 - 4802: -2,43 - 4803: -20,25 - 4804: -21,25 - 4805: -19,25 - 4806: -21,25 - 4807: -22,17 - 4808: -23,17 - 4809: -22,5 - 4810: -22,5 - 4811: -22,5 - 4812: -19,-28 - 4813: -16,-28 - 4814: -16,-27 - 4815: -15,-28 - 4816: -16,-26 - 4817: -15,-27 - 4818: -15,-28 - 4819: -15,-26 - 4820: -15,-26 - 4821: -14,-26 - 4832: -25,-34 - 4833: -23,-34 - 4834: -22,-34 - 4835: -21,-34 - 4836: -20,-34 - 4837: -20,-37 - 4838: -20,-36 - 4839: -19,-38 - 4840: -19,-36 - 4841: -22,-37 - 4842: -23,-37 - 4843: -23,-38 - 4844: -23,-36 - 4845: -24,-37 - 4846: -26,-37 - 4847: -26,-36 - 4848: -26,-37 - 4849: -28,-40 - 4850: -27,-40 - 4851: -25,-40 - 4852: -24,-40 - 4853: -23,-40 - 4854: -21,-40 - 4855: -19,-40 - 4856: -21,-40 - 4857: -24,-40 - 4858: -26,-40 - 4859: -32,-40 - 4860: -31,-40 - 4861: -33,-39 - 4862: -33,-40 - 4863: -32,-39 - 4864: -31,-39 - 4865: -34,-39 - 4866: -33,-40 - 4867: -39,-38 - 4868: -38,-38 - 4869: -38,-53 - 4870: -38,-54 - 4871: -37,-53 - 4872: -37,-54 - 4873: -5,-41 - 4874: -5,-40 - 4875: -6,-42 - 4876: -5,-36 - 4877: -6,-36 - 4878: -4,-35 - 4879: -4,-36 - 4880: 0,-36 - 4881: -2,-36 - 4882: 1,-35 - 4883: 1,-37 - 4884: 1,-38 - 4885: 2,-37 - 4886: 2,-38 - 4887: 0,-37 - 4888: 3,-37 - 4889: -1,-36 - 4893: -6,-28 - 4894: -6,-27 - 4895: -5,-27 - 4896: -6,-26 - 4897: -2,-27 - 4898: -3,-26 - 4899: -2,-28 - 4900: -1,-27 - 4901: 0,-27 - 4902: 0,-27 - 4903: -2,-27 - 4904: -2,-27 - 4905: 0,-24 - 4906: -2,-24 - 4907: -2,-23 - 4908: 0,-22 - 4909: 1,-22 - 4910: 1,-21 - 4911: -4,-19 - 4912: -5,-19 - 4913: -7,-19 - 4914: -9,-19 - 4915: -6,-19 - 4916: -7,-17 - 4917: -8,-17 - 4918: -9,-16 - 4919: -9,-16 - 4920: -5,-16 - 4921: -4,-14 - 4922: -5,-15 - 4923: -8,-16 - 4924: -8,-15 - 4925: -14,-14 - 4926: -12,-14 - 4927: -12,-16 - 4928: -13,-18 - 4929: -14,-16 - 4930: -13,-16 - 4931: -13,-19 - 4932: -14,-19 - 4933: -2,-17 - 4934: -2,-15 - 4935: -2,-13 - 4936: -2,-12 - 4937: -1,-15 - 4938: -1,-16 - 4939: -1,-17 - 4940: 1,-17 - 4941: -1,-18 - 4942: 2,-18 - 4943: 2,-16 - 4944: 2,-15 - 4945: 2,-13 - 4946: 1,-12 - 4947: 1,-14 - 4948: -1,-13 - 4949: 0,-14 - 4950: 2,-16 - 4951: -4,-14 - 4952: -7,-24 - 4953: -7,-22 - 4954: -8,-23 - 4955: -10,-23 - 4956: -9,-23 - 4957: -1,-24 - 4958: 8,-23 - 4959: 8,-22 - 4960: 10,-22 - 4961: 9,-23 - 4962: 8,-25 - 4963: 8,-21 - 4964: 8,-19 - 4965: 8,-18 - 4966: 6,-18 - 4967: 5,-18 - 4968: 0,-27 - 4969: 2,-27 - 4970: 10,-23 - 4971: 13,-23 - 4972: 12,-23 - 4973: 13,-21 - 4974: 14,-22 - 4975: 13,-18 - 4976: 14,-18 - 4977: 14,-17 - 4978: 12,-18 - 4979: 11,-18 - 4980: 11,-16 - 4981: 13,-17 - 4982: 11,-30 - 4983: 11,-28 - 4984: 11,-27 - 4985: 11,-26 - 4986: 17,-26 - 4987: 17,-28 - 4988: 17,-28 - 4989: 17,-30 - 4990: 17,-30 - 4991: 18,-23 - 4992: 20,-22 - 4993: 21,-23 - 4994: 19,-22 - 4995: 21,-22 - 4996: 20,-21 - 4997: 24,-22 - 4998: 23,-23 - 4999: 23,-21 - 5000: 23,-23 - 5001: 17,-16 - 5002: 19,-14 - 5003: 18,-13 - 5004: 20,-13 - 5005: 19,-12 - 5006: 22,-11 - 5007: 22,-13 - 5008: 20,-11 - 5009: 24,-13 - 5010: 26,-11 - 5011: 21,-11 - 5012: 20,-11 - 5013: 25,-13 - 5014: 22,-13 - 5015: 23,-12 - 5016: 26,-12 - 5017: 19,-12 - 5018: 23,-13 - 5019: 23,-11 - 5020: 19,-10 - 5021: 26,-11 - 5022: 28,-12 - 5023: 25,-12 - 5024: 23,-16 - 5025: 23,-16 - 5026: 13,-19 - 5027: 23,-34 - 5028: 23,-31 - 5029: 23,-30 - 5030: 23,-29 - 5031: 23,-32 - 5032: 29,-34 - 5033: 29,-33 - 5034: 29,-32 - 5035: 29,-30 - 5036: 29,-29 - 5037: 32,-34 - 5038: 32,-31 - 5039: 32,-30 - 5040: 36,-30 - 5041: 35,-29 - 5042: 33,-26 - 5043: 36,-21 - 5044: 38,-16 - 5045: 37,-15 - 5046: 39,-16 - 5047: 38,-17 - 5048: 38,-15 - 5049: 37,-15 - 5050: 62,-31 - 5051: 62,-33 - 5052: 61,-31 - 5053: 63,-33 - 5054: 63,-33 - 5055: 63,-32 - 5056: 62,-32 - 5057: 62,-32 - 5058: 64,8 - 5059: 63,9 - 5060: 65,9 - 5061: 64,8 - 5062: 64,9 - 5063: 64,10 - 5064: 67,6 - 5065: 68,4 - 5066: 68,6 - 5067: 67,5 - 5068: 68,0 - 5069: 68,1 - 5070: 68,2 - 5071: 67,0 - 5072: 68,-2 - 5073: 67,-3 - 5074: 68,-4 - 5075: 68,-3 - 5076: 68,-3 - 5077: 76,-6 - 5083: 54,-30 - 5084: 52,-31 - 5085: 51,-31 - 5086: 52,-33 - 5087: 52,-34 - 5088: 51,-33 - 5089: 51,-32 - 5090: 52,-35 - 5091: 51,-33 - 5092: 51,-31 - 5093: 52,-35 - 5094: 52,-35 - 5095: 55,-35 - 5096: 54,-34 - 5097: 56,-33 - 5098: 57,-33 - 5099: 55,-34 - 5100: 55,-36 - 5101: 54,-35 - 5102: 55,-34 - 5103: 54,-35 - 5104: 55,-35 - 5105: 55,-34 - 5106: 40,-31 - 5107: 40,-30 - 5108: 40,-30 - 5109: 41,-31 - 5110: 41,-29 - 5111: 42,-29 - 5112: 43,-29 - 5113: 44,-29 - 5114: 44,-31 - 5115: 43,-30 - 5116: 33,-29 - 5117: 15,-39 - 5118: 14,-39 - 5119: 14,-39 - 5120: 9,-40 - 5121: 9,-39 - 5122: 9,-41 - 5123: 8,-40 - 5124: 19,-45 - 5125: 17,-45 - 5126: 16,-44 - 5127: 16,-45 - 5128: 16,-43 - 5129: 19,-45 - 5130: 20,-44 - 5131: 20,-45 - 5132: 18,-44 - 5133: 21,-45 - 5134: 21,-43 - 5135: 15,-48 - 5136: 14,-48 - 5137: 12,-47 - 5138: 12,-48 - 5139: 14,-48 - 5140: 16,-47 - 5141: 14,-48 - 5142: 13,-48 - 5143: 15,-47 - 5150: 21,-54 - 5151: 20,-54 - 5152: 18,-54 - 5153: 16,-54 - 5154: 16,-55 - 5155: 18,-53 - 5156: 19,-53 - 5157: 21,-55 - 5158: 21,-58 - 5159: 21,-59 - 5160: 20,-58 - 5161: 18,-58 - 5162: 17,-58 - 5163: 16,-58 - 5164: 16,-59 - 5165: 19,-59 - 5166: 19,-59 - 5167: 18,-59 - 5168: 27,-46 - 5169: 26,-45 - 5170: 26,-44 - 5171: 27,-45 - 5172: 27,-45 - 5173: 28,-42 - 5174: 29,-42 - 5175: 29,-40 - 5176: 28,-39 - 5177: 28,-39 - 5178: 28,-40 - 5179: 29,-47 - 5180: 28,-47 - 5181: 66,-52 - 5182: 65,-51 - 5183: 66,-52 - 5184: 66,-51 - 5185: 65,-52 - 5186: 66,-51 - 5187: 27,15 - 5188: 28,15 - 5189: 27,14 - 5190: 27,12 - 5191: -23,34 - 5192: -23,35 - 5193: -22,34 - 5194: -27,36 - 5195: -27,34 - 5196: -28,35 - 5197: -27,35 - 5198: -29,36 - 5199: -30,37 - 5200: -30,38 - 5201: -28,35 - 5202: -28,34 - 5203: -29,35 - 5204: -26,36 - 5205: -25,38 - 5206: -26,37 - 5207: -32,36 - 5208: -33,35 - 5209: -33,37 - 5210: -33,35 - 5211: -34,36 - 5212: -33,38 - 5213: -33,35 - 5214: -36,5 - 5215: -42,6 - 5216: -43,4 - 5217: -43,6 - 5218: -42,7 - 5219: -51,9 - 5220: -49,13 - 5221: -42,-5 - 5222: -43,-5 - 5223: -42,-3 - 5224: -45,-4 - 5225: -45,-5 - 5226: -46,-4 - 5227: -43,-3 - 5228: -43,-2 - 5229: -42,-2 - 5230: -60,-29 - 5231: -60,-29 - 5232: -57,-36 - 5233: -58,-36 - 5234: -59,-36 - 5235: -57,-37 - 5236: -58,-35 - 5237: -58,-34 - 5238: -57,-35 - 5239: -59,-34 - 5240: -58,-34 - 5241: -59,-34 - 5242: -60,-34 - 5243: -60,-35 - 5244: -61,-21 - 5245: -62,-21 - 5246: -62,-20 - 5247: -61,-20 - 5248: -61,-20 - 5249: 13,35 - 5885: 52,20 - 5886: 51,21 - 5887: 53,20 - 5888: 53,21 - 6168: 49,-7 - 6169: 48,-6 - 6170: 48,-4 - 6171: 49,-4 - 6172: 52,-7 - 6173: 52,-5 - 6174: 51,-6 - 6175: 52,-2 - 6176: 52,-3 - 6177: 48,-1 - 6178: 48,-2 - 6198: 49,-12 - 6199: 49,-14 - 6200: 49,-15 - 6201: 49,-13 - 6202: 52,-14 - 6203: 52,-13 - 6204: 52,-12 - 6205: 52,-15 - 6206: 52,-15 - 6207: 52,-10 - 6208: 51,1 - 6209: 51,3 - 6210: 51,4 - 6211: 51,8 - 6212: 51,9 - 6213: 51,11 - 6214: 51,13 - 6215: 49,13 - 6216: 49,11 - 6217: 49,9 - 6218: 49,7 - 6219: 49,5 - 6220: 49,3 - 6221: 49,1 - 6234: 42,9 - 6235: 43,9 - 6236: 42,7 - 6237: 43,7 - 6238: 45,7 - 6239: 45,9 - 6240: 46,7 - 6241: 40,4 - 6242: 42,4 - 6243: 43,4 - 6244: 43,2 - 6245: 43,1 - 6246: 43,-2 - 6247: 43,-4 - 6248: 43,-7 - 6249: 43,-6 - 6250: 43,-10 - 6251: 43,-11 - 6252: 45,5 - 6253: 42,5 - 6254: 41,5 - 6333: 90,-18 - 6334: 89,-18 - 6414: 51,-39 - 6415: 52,-39 - 6416: 54,-39 - 6417: 52,-37 - 6427: 51,-30 - 6428: 52,-29 - 6450: -33,-12 - 6451: -33,-10 - 6467: -36,-45 - 6468: -35,-44 - 6469: -35,-46 - 6559: 14,39 - 6560: 13,40 - 6561: 15,42 - 6562: 15,41 - 6563: 16,39 - 6623: 8,-47 - 6769: -34,14 - 6770: -33,15 - 6771: -30,15 - 6772: -31,16 - 6773: -30,17 - 6774: -29,14 - 6775: -29,12 - 6776: -32,12 - 6777: -35,14 - 6778: -37,14 - 6779: -38,13 - 6871: 43,13 - 6872: 42,11 - 6939: 59,-8 - 6940: 57,-5 - 6941: 61,-4 - 6947: -14,-38 - 6948: -13,-37 - 6958: -12,-37 - 6959: -12,-37 - 6960: -11,-40 - 6976: 53,-21 - 6977: 54,-21 - 6978: 57,-21 - 6979: 56,-23 - 6980: 58,-24 - 7011: 78,-7 - 7019: 52,-23 + 3458: -60,-66 + 3459: -59,-65 + 3460: -59,-63 + 3461: -59,-61 + 3462: -59,-59 + 3463: -59,-57 + 3464: -60,-57 + 3465: -57,-57 + 3466: -58,-58 + 3467: -56,-57 + 3468: -56,-58 + 3469: -56,-60 + 3470: -56,-62 + 3471: -56,-64 + 3472: -56,-66 + 3473: -58,-66 + 3474: -55,-56 + 3475: -54,-54 + 3476: -54,-52 + 3477: -54,-50 + 3478: -56,-53 + 3479: -56,-52 + 3480: -56,-47 + 3481: -53,-48 + 3482: -52,-46 + 3483: -54,-46 + 3484: -51,-46 + 3485: -50,-48 + 3486: -47,-48 + 3487: -45,-48 + 3488: -43,-46 + 3489: -45,-46 + 3490: -43,-48 + 3491: -42,-48 + 3492: -40,-48 + 3493: -40,-50 + 3494: -40,-52 + 3495: -40,-54 + 3496: -42,-51 + 3497: -42,-53 + 3498: -42,-54 + 3499: -41,-56 + 3500: -39,-57 + 3501: -40,-58 + 3502: -37,-57 + 3503: -37,-58 + 3504: -37,-61 + 3505: -37,-64 + 3506: -37,-65 + 3507: -36,-65 + 3508: -36,-66 + 3509: -39,-66 + 3510: -40,-65 + 3511: -40,-63 + 3512: -40,-60 + 3513: -47,-44 + 3514: -47,-42 + 3515: -47,-39 + 3516: -47,-35 + 3517: -47,-33 + 3518: -49,-33 + 3519: -49,-37 + 3520: -49,-39 + 3521: -49,-41 + 3522: -49,-44 + 3523: -49,-44 + 3524: -49,-43 + 3525: -44,-32 + 3526: -44,-30 + 3527: -43,-31 + 3528: -43,-27 + 3529: -44,-26 + 3530: -43,-26 + 3531: -44,-25 + 3532: -52,-32 + 3533: -52,-30 + 3534: -52,-29 + 3535: -52,-25 + 3536: -52,-22 + 3537: -54,-22 + 3538: -55,-22 + 3539: -52,-20 + 3540: -50,-20 + 3541: -47,-20 + 3542: -46,-20 + 3543: -45,-20 + 3544: -44,-20 + 3545: -44,-22 + 3546: -51,-18 + 3547: -51,-17 + 3548: -49,-17 + 3549: -48,-15 + 3550: -48,-13 + 3551: -50,-13 + 3552: -51,-14 + 3553: -51,-15 + 3554: -44,-15 + 3555: -46,-15 + 3556: -46,-14 + 3557: -54,-24 + 3558: -56,-24 + 3559: -54,-30 + 3560: -56,-29 + 3561: -57,-28 + 3562: -54,-28 + 3563: -61,-29 + 3564: -59,-29 + 3565: -59,-27 + 3566: -59,-25 + 3567: -61,-25 + 3568: -55,-17 + 3569: -55,-15 + 3570: -55,-13 + 3571: -55,-10 + 3572: -53,-17 + 3573: -53,-14 + 3574: -53,-12 + 3575: -53,-11 + 3576: -53,-9 + 3577: -53,-7 + 3578: -53,-6 + 3579: -53,-4 + 3580: -55,-3 + 3581: -55,-7 + 3582: -55,-8 + 3583: -53,0 + 3584: -53,-2 + 3585: -51,-4 + 3586: -49,-4 + 3587: -50,-5 + 3588: -48,-5 + 3597: -53,2 + 3598: -53,4 + 3599: -53,6 + 3600: -53,7 + 3601: -55,7 + 3602: -55,5 + 3603: -55,-1 + 3604: -51,6 + 3605: -50,7 + 3606: -47,7 + 3607: -48,6 + 3608: -46,6 + 3609: -45,7 + 3610: -47,9 + 3611: -45,9 + 3612: -44,9 + 3613: -50,9 + 3614: -50,9 + 3615: -51,11 + 3616: -51,13 + 3617: -50,13 + 3618: -48,13 + 3619: -46,13 + 3620: -48,12 + 3621: -43,11 + 3622: -44,12 + 3623: -43,13 + 3624: -43,12 + 3625: -54,10 + 3626: -53,9 + 3627: -54,9 + 3650: -40,2 + 3651: -39,1 + 3652: -39,1 + 3653: -40,-1 + 3654: -38,-1 + 3655: -40,-2 + 3656: -39,-2 + 3657: -40,-4 + 3658: -39,-5 + 3659: -38,-5 + 3660: -37,-5 + 3661: -38,-4 + 3662: -36,-3 + 3663: -36,-2 + 3664: -36,-4 + 3665: -34,-1 + 3666: -32,0 + 3667: -35,0 + 3668: -39,3 + 3669: -40,4 + 3670: -38,4 + 3671: -31,2 + 3672: -31,-1 + 3673: -29,0 + 3674: -28,-3 + 3675: -28,-4 + 3676: -26,-5 + 3677: -27,-2 + 3678: -27,-3 + 3679: -29,0 + 3680: -27,0 + 3681: -27,2 + 3682: -28,3 + 3683: -27,3 + 3684: -27,1 + 3685: -26,-1 + 3686: -32,-1 + 3687: -28,4 + 3688: -26,5 + 3689: -26,6 + 3690: -26,3 + 3691: -26,3 + 3692: -24,2 + 3693: -23,1 + 3694: -25,0 + 3695: -23,-2 + 3696: -25,-3 + 3697: -23,-3 + 3698: -25,-4 + 3699: -23,-5 + 3700: -25,-5 + 3701: -24,-1 + 3702: -25,-1 + 3703: -23,3 + 3704: -15,-1 + 3705: -16,-1 + 3706: -15,0 + 3707: -16,1 + 3708: -16,3 + 3709: -15,3 + 3710: -15,2 + 3711: -15,1 + 3712: -15,1 + 3713: -27,6 + 3714: -27,7 + 3715: -27,9 + 3716: -20,5 + 3717: -21,5 + 3722: -17,5 + 3723: -16,5 + 3724: -16,5 + 3725: -22,11 + 3726: -21,11 + 3727: -22,13 + 3728: -20,14 + 3729: -22,13 + 3730: -22,15 + 3731: -20,14 + 3732: -20,13 + 3733: -20,12 + 3734: -19,11 + 3735: -22,14 + 3736: -23,14 + 3737: -17,11 + 3738: -17,11 + 3739: -17,12 + 3740: -16,11 + 3741: -16,12 + 3742: -17,13 + 3743: -16,14 + 3744: -17,14 + 3745: -16,12 + 3746: -17,12 + 3747: -17,11 + 3750: -39,11 + 3751: -27,11 + 3752: -27,13 + 3753: -27,16 + 3754: -27,17 + 3755: -27,19 + 3756: -27,20 + 3757: -27,21 + 3758: -25,18 + 3759: -25,16 + 3760: -25,14 + 3761: -25,12 + 3762: -25,11 + 3763: -24,18 + 3764: -22,18 + 3765: -23,17 + 3766: -21,17 + 3767: -20,18 + 3768: -19,17 + 3769: -20,20 + 3770: -22,20 + 3771: -24,20 + 3772: -20,21 + 3773: -17,19 + 3774: -16,19 + 3775: -14,19 + 3776: -17,21 + 3777: -15,21 + 3778: -13,21 + 3779: -11,21 + 3780: -13,19 + 3781: -10,19 + 3782: -8,19 + 3783: -6,19 + 3784: -9,21 + 3785: -7,21 + 3786: -5,21 + 3787: -3,21 + 3788: 0,21 + 3789: -5,19 + 3790: -2,19 + 3791: 0,19 + 3792: 0,21 + 3793: 2,21 + 3794: 5,21 + 3795: 6,21 + 3796: 2,19 + 3797: 4,19 + 3798: 7,19 + 3799: 10,19 + 3800: 8,21 + 3801: 10,21 + 3802: 11,21 + 3803: 13,21 + 3804: 12,19 + 3805: 14,19 + 3806: 15,19 + 3807: 17,19 + 3808: 15,23 + 3809: 14,23 + 3810: 13,24 + 3811: 15,25 + 3812: 15,24 + 3813: 11,23 + 3814: 10,23 + 3815: 11,24 + 3816: 17,23 + 3817: 17,25 + 3818: 17,25 + 3819: 18,19 + 3820: 19,19 + 3821: 19,21 + 3822: 17,21 + 3823: 16,21 + 3824: 21,20 + 3825: 21,18 + 3826: 21,17 + 3827: 19,18 + 3828: 19,15 + 3829: 19,12 + 3830: 19,11 + 3831: 21,16 + 3832: 21,13 + 3833: 21,12 + 3834: 21,10 + 3835: 21,8 + 3836: 21,7 + 3837: 19,9 + 3838: 19,7 + 3839: 19,6 + 3840: 23,10 + 3841: 24,10 + 3842: 26,10 + 3843: 27,10 + 3844: 28,7 + 3845: 27,8 + 3846: 27,6 + 3847: 28,6 + 3848: 30,6 + 3849: 30,8 + 3850: 30,9 + 3851: 30,10 + 3852: 33,10 + 3853: 34,10 + 3854: 31,12 + 3855: 31,13 + 3856: 30,14 + 3857: 31,17 + 3858: 30,17 + 3859: 31,19 + 3860: 31,20 + 3861: 31,22 + 3862: 30,22 + 3863: 28,22 + 3864: 29,23 + 3865: 26,22 + 3866: 24,22 + 3867: 23,22 + 3868: 23,23 + 3869: 23,20 + 3870: 23,18 + 3871: 25,18 + 3872: 25,17 + 3873: 26,18 + 3874: 27,17 + 3875: 27,20 + 3876: 29,18 + 3877: 27,18 + 3878: 30,17 + 3879: 33,22 + 3880: 35,22 + 3881: 33,19 + 3882: 33,18 + 3883: 35,18 + 3884: 36,17 + 3885: 34,17 + 3886: 35,17 + 3887: 33,13 + 3888: 33,15 + 3889: 33,15 + 3890: 32,13 + 3891: 26,7 + 3892: 23,2 + 3893: 26,2 + 3894: 20,2 + 3895: 21,2 + 3896: 19,4 + 3902: 31,2 + 3903: 33,2 + 3904: 33,4 + 3905: 32,4 + 3906: 35,4 + 3907: 37,4 + 3908: 37,2 + 3909: 40,2 + 3910: 41,2 + 3911: 41,1 + 3912: 38,2 + 3913: 39,-4 + 3914: 37,-4 + 3915: 39,-5 + 3916: 33,-1 + 3917: 31,-1 + 3918: 31,0 + 3919: 33,0 + 3920: 32,1 + 3921: 38,7 + 3922: 54,14 + 3923: 58,14 + 3924: 59,14 + 3925: 60,14 + 3926: 58,16 + 3927: 55,10 + 3928: 55,12 + 3929: 54,12 + 3930: 54,6 + 3931: 59,3 + 3932: 60,4 + 3933: 59,0 + 3934: 55,-5 + 3935: 56,-4 + 3936: 41,-1 + 3937: 41,-3 + 3938: 41,-5 + 3939: 41,-7 + 3940: 41,-10 + 3941: 41,-11 + 3942: 43,-12 + 3943: 43,-14 + 3944: 43,-16 + 3945: 43,-17 + 3946: 41,-15 + 3947: 41,-16 + 3948: 41,-17 + 3949: 41,-19 + 3950: 40,-19 + 3951: 40,-21 + 3952: 42,-21 + 3953: 43,-21 + 3954: 45,-21 + 3959: 45,-19 + 3960: 47,-19 + 3961: 48,-19 + 3962: 51,-19 + 3963: 47,-21 + 3964: 49,-21 + 3965: 47,-22 + 3966: 51,-21 + 3967: 59,-21 + 3968: 60,-21 + 3969: 61,-20 + 3970: 59,-19 + 3971: 61,-19 + 3972: 60,-17 + 3973: 60,-17 + 3974: 58,-18 + 3975: 58,-19 + 3976: 56,-19 + 3977: 55,-19 + 3978: 53,-19 + 3979: 60,-15 + 3980: 58,-15 + 3981: 59,-14 + 3982: 57,-13 + 3983: 57,-12 + 3984: 60,-13 + 3985: 60,-12 + 3986: 60,-14 + 3987: 61,-13 + 3988: 63,-13 + 3989: 64,-12 + 3990: 65,-14 + 3991: 63,-14 + 3992: 63,-16 + 3993: 65,-16 + 3994: 65,-18 + 3995: 65,-20 + 3996: 63,-18 + 3997: 63,-20 + 3998: 63,-21 + 3999: 65,-21 + 4000: 62,-23 + 4001: 61,-24 + 4002: 64,-24 + 4003: 63,-25 + 4004: 64,-26 + 4005: 65,-27 + 4006: 66,-26 + 4007: 65,-24 + 4008: 65,-23 + 4009: 65,-23 + 4013: 68,-21 + 4014: 69,-21 + 4015: 69,-23 + 4016: 69,-24 + 4018: 69,-27 + 4019: 70,-26 + 4020: 70,-26 + 4021: 71,-27 + 4022: 71,-28 + 4023: 70,-28 + 4024: 68,-28 + 4025: 69,-29 + 4026: 70,-30 + 4027: 69,-30 + 4028: 70,-29 + 4029: 70,-29 + 4030: 70,-29 + 4031: 71,-30 + 4032: 71,-17 + 4033: 68,-17 + 4034: 67,-19 + 4035: 70,-17 + 4036: 70,-19 + 4037: 71,-18 + 4038: 68,-18 + 4039: 69,-19 + 4059: 69,-9 + 4060: 68,-9 + 4061: 67,-9 + 4062: 70,-10 + 4063: 77,-18 + 4064: 75,-18 + 4065: 76,-19 + 4066: 77,-18 + 4067: 76,-17 + 4068: 76,-15 + 4069: 75,-15 + 4070: 76,-13 + 4071: 77,-14 + 4072: 74,-14 + 4073: 74,-16 + 4074: 73,-14 + 4075: 74,-17 + 4076: 74,-18 + 4077: 72,-17 + 4078: 73,-19 + 4079: 73,-17 + 4080: 74,-16 + 4081: 73,-15 + 4082: 74,-16 + 4083: 74,-15 + 4084: 76,-18 + 4085: 79,-14 + 4086: 80,-13 + 4087: 81,-14 + 4088: 79,-14 + 4089: 80,-15 + 4090: 81,-13 + 4091: 80,-19 + 4092: 79,-18 + 4093: 80,-18 + 4094: 80,-19 + 4095: 79,-19 + 4096: 80,-19 + 4097: 81,-19 + 4098: 80,-17 + 4099: 80,-18 + 4100: 79,-19 + 4101: 50,-13 + 4102: 51,-14 + 4103: 50,-13 + 4104: 51,-13 + 4105: 50,-14 + 4106: 50,-14 + 4107: 48,-13 + 4108: 48,-14 + 4109: 48,-13 + 4110: 53,-13 + 4111: 53,-14 + 4112: 53,-12 + 4113: 53,-14 + 4114: 53,-13 + 4115: 53,-14 + 4116: 50,-15 + 4117: 51,-15 + 4118: 50,-14 + 4119: 51,-13 + 4120: 50,-12 + 4121: 50,-12 + 4122: 48,-12 + 4123: 50,-12 + 4124: 51,-13 + 4125: 47,-24 + 4126: 49,-25 + 4127: 48,-26 + 4128: 47,-25 + 4129: 49,-25 + 4130: 48,-23 + 4131: 47,-28 + 4132: 49,-29 + 4133: 47,-30 + 4134: 48,-32 + 4135: 49,-31 + 4136: 48,-33 + 4137: 47,-33 + 4138: 49,-33 + 4139: 48,-34 + 4140: 47,-34 + 4141: 43,-36 + 4142: 40,-36 + 4143: 37,-35 + 4144: 36,-35 + 4145: 37,-36 + 4146: 40,-36 + 4147: 43,-35 + 4148: 43,-35 + 4149: 41,-35 + 4150: 43,-35 + 4151: 43,-34 + 4177: 33,-34 + 4178: 31,-34 + 4179: 33,-32 + 4180: 32,-32 + 4181: 32,-31 + 4182: 32,-30 + 4183: 33,-28 + 4184: 31,-29 + 4185: 33,-31 + 4186: 33,-31 + 4187: 35,-30 + 4188: 36,-30 + 4189: 36,-29 + 4190: 33,-25 + 4191: 31,-25 + 4192: 33,-25 + 4193: 31,-25 + 4194: 33,-25 + 4195: 32,-26 + 4196: 31,-25 + 4197: 32,-24 + 4198: 32,-25 + 4199: 31,-24 + 4200: 40,-25 + 4201: 39,-24 + 4202: 40,-26 + 4203: 42,-25 + 4204: 42,-25 + 4205: 44,-24 + 4206: 42,-25 + 4207: 44,-25 + 4208: 45,-25 + 4209: 42,-26 + 4210: 43,-25 + 4211: 43,-25 + 4212: 41,-25 + 4213: 40,-25 + 4214: 40,-25 + 4215: 40,-24 + 4216: 35,-23 + 4217: 37,-23 + 4218: 36,-23 + 4219: 35,-23 + 4220: 38,-21 + 4221: 35,-21 + 4222: 33,-21 + 4223: 33,-22 + 4224: 32,-22 + 4225: 32,-21 + 4226: 37,-19 + 4227: 34,-19 + 4228: 32,-19 + 4229: 31,-19 + 4230: 28,-19 + 4231: 27,-19 + 4232: 27,-20 + 4233: 27,-21 + 4234: 30,-21 + 4235: 29,-21 + 4236: 29,-23 + 4237: 29,-24 + 4238: 29,-25 + 4239: 29,-26 + 4240: 27,-22 + 4241: 27,-24 + 4242: 27,-25 + 4243: 26,-25 + 4244: 25,-25 + 4245: 29,-27 + 4246: 27,-27 + 4247: 25,-27 + 4248: 24,-27 + 4249: 21,-27 + 4250: 21,-25 + 4251: 20,-25 + 4252: 19,-25 + 4253: 19,-26 + 4254: 19,-28 + 4255: 19,-28 + 4256: 19,-30 + 4257: 19,-31 + 4258: 19,-32 + 4259: 21,-30 + 4260: 21,-33 + 4261: 21,-34 + 4262: 21,-34 + 4263: 19,-34 + 4264: 20,-36 + 4265: 20,-37 + 4266: 19,-37 + 4267: 20,-39 + 4268: 21,-38 + 4269: 22,-39 + 4270: 21,-37 + 4271: 24,-37 + 4272: 23,-38 + 4273: 25,-37 + 4274: 25,-38 + 4275: 24,-38 + 4276: 25,-38 + 4277: 17,-34 + 4278: 17,-35 + 4279: 16,-34 + 4280: 14,-34 + 4281: 17,-32 + 4282: 15,-32 + 4283: 13,-32 + 4284: 11,-32 + 4285: 10,-32 + 4286: 12,-34 + 4287: 9,-34 + 4288: 8,-34 + 4289: 7,-34 + 4290: 7,-32 + 4291: 7,-32 + 4292: 6,-32 + 4293: 9,-30 + 4294: 8,-29 + 4295: 7,-29 + 4296: 7,-29 + 4297: 6,-28 + 4298: 8,-27 + 4299: 9,-27 + 4300: 7,-28 + 4301: 6,-27 + 4302: 5,-29 + 4303: 7,-30 + 4304: 9,-30 + 4305: 3,-30 + 4306: 1,-30 + 4307: 3,-32 + 4308: 2,-32 + 4309: 2,-33 + 4310: 0,-33 + 4311: -1,-33 + 4312: -1,-32 + 4313: 0,-30 + 4314: -3,-30 + 4315: -4,-30 + 4316: -6,-30 + 4317: -7,-30 + 4318: -9,-30 + 4319: -6,-32 + 4320: -5,-32 + 4321: -3,-32 + 4322: -8,-32 + 4323: -8,-33 + 4324: -9,-32 + 4325: -10,-32 + 4326: -11,-32 + 4327: -13,-32 + 4328: -10,-30 + 4329: -11,-30 + 4330: -13,-30 + 4331: -15,-30 + 4332: -16,-30 + 4333: -12,-29 + 4334: -12,-30 + 4335: -16,-32 + 4336: -17,-33 + 4337: -17,-32 + 4338: -19,-32 + 4339: -18,-30 + 4340: -20,-30 + 4341: -22,-30 + 4342: -23,-30 + 4343: -23,-29 + 4344: -22,-32 + 4345: -24,-32 + 4346: -24,-32 + 4347: -26,-30 + 4348: -26,-29 + 4349: -26,-27 + 4350: -26,-25 + 4351: -24,-27 + 4352: -24,-26 + 4353: -24,-25 + 4354: -24,-24 + 4355: -26,-23 + 4356: -26,-22 + 4357: -26,-20 + 4358: -24,-21 + 4359: -24,-19 + 4360: -24,-18 + 4361: -24,-16 + 4362: -26,-17 + 4363: -26,-16 + 4364: -26,-14 + 4365: -26,-13 + 4366: -26,-12 + 4367: -26,-10 + 4368: -26,-9 + 4369: -25,-9 + 4370: -24,-11 + 4371: -23,-11 + 4372: -23,-10 + 4373: -23,-9 + 4374: -24,-5 + 4375: -24,-4 + 4376: -24,-2 + 4377: -19,-11 + 4378: -19,-10 + 4379: -20,-10 + 4380: -20,-9 + 4381: -19,-9 + 4382: -30,-21 + 4383: -30,-19 + 4384: -29,-19 + 4385: -30,-18 + 4386: -32,-21 + 4387: -32,-19 + 4388: -33,-18 + 4389: -36,-15 + 4390: -36,-14 + 4391: -33,-14 + 4392: -33,-14 + 4393: -33,-15 + 4394: -30,-14 + 4395: -36,-10 + 4396: -37,-9 + 4397: -37,-10 + 4398: -29,-10 + 4399: -30,-11 + 4400: -30,-9 + 4401: -28,-10 + 4402: -40,-11 + 4403: -41,-10 + 4404: -41,-9 + 4405: -40,-9 + 4406: -41,-10 + 4407: -41,-10 + 4408: -49,-18 + 4409: -38,-33 + 4410: -36,-33 + 4411: -33,-33 + 4412: -32,-33 + 4413: -31,-33 + 4414: -31,-31 + 4415: -31,-29 + 4416: -31,-28 + 4417: -31,-26 + 4418: -33,-26 + 4419: -35,-26 + 4420: -36,-26 + 4421: -37,-26 + 4422: -38,-26 + 4423: -38,-27 + 4424: -38,-29 + 4425: -38,-30 + 4426: -38,-31 + 4427: -38,-29 + 4428: -38,-26 + 4429: -40,-26 + 4430: -40,-25 + 4431: -41,-25 + 4432: -41,-26 + 4433: -41,-28 + 4434: -41,-29 + 4435: -41,-30 + 4436: -41,-32 + 4437: -41,-33 + 4438: -41,-34 + 4439: -39,-33 + 4440: -40,-34 + 4441: -35,-34 + 4442: -34,-34 + 4443: -32,-34 + 4444: -31,-34 + 4445: -30,-34 + 4446: -30,-33 + 4447: -28,-34 + 4448: -28,-32 + 4449: -28,-31 + 4450: -28,-29 + 4451: -28,-27 + 4452: -28,-26 + 4453: -29,-25 + 4454: -30,-25 + 4455: -30,-26 + 4456: -32,-25 + 4457: -33,-26 + 4458: -35,-25 + 4459: -32,6 + 4460: -32,7 + 4461: -32,6 + 4462: -36,6 + 4463: -36,5 + 4464: -36,7 + 4465: -34,6 + 4466: -34,5 + 4467: -35,6 + 4468: -33,6 + 4480: -25,28 + 4481: -26,28 + 4482: -18,32 + 4483: -17,31 + 4484: -17,33 + 4485: -18,32 + 4486: -15,34 + 4487: -15,32 + 4488: -15,31 + 4489: -13,31 + 4490: -12,31 + 4491: -15,34 + 4492: -15,34 + 4493: -12,39 + 4494: -13,40 + 4495: -14,40 + 4496: -15,40 + 4497: -16,40 + 4498: -16,40 + 4499: -13,40 + 4500: -12,40 + 4501: -12,38 + 4502: -12,40 + 4508: -5,40 + 4509: -6,40 + 4510: -6,42 + 4511: -6,43 + 4512: -5,42 + 4513: -6,43 + 4514: -6,45 + 4515: -6,46 + 4516: -6,47 + 4517: -5,46 + 4518: -4,48 + 4519: -5,46 + 4520: -2,48 + 4521: -4,46 + 4522: -1,47 + 4523: -3,45 + 4524: 0,46 + 4525: -3,47 + 4526: -1,45 + 4527: -3,46 + 4528: 1,45 + 4529: 1,47 + 4530: 0,46 + 4531: 1,48 + 4532: 2,48 + 4533: 3,47 + 4534: 2,45 + 4535: 2,44 + 4536: 2,43 + 4537: 2,42 + 4538: 1,42 + 4539: 3,42 + 4540: -2,43 + 4541: -1,41 + 4542: -3,40 + 4543: -3,40 + 4544: 1,51 + 4545: -2,50 + 4546: -3,50 + 4547: -2,51 + 4548: 0,51 + 4549: -1,52 + 4550: -2,51 + 4551: -2,53 + 4552: 1,53 + 4553: 2,51 + 4554: 2,50 + 4555: 0,50 + 4556: -4,45 + 4557: -4,47 + 4584: 6,42 + 4585: 5,41 + 4586: 5,39 + 4587: 7,39 + 4588: 8,39 + 4589: 9,41 + 4590: 9,40 + 4591: 8,42 + 4592: 8,41 + 4593: 15,37 + 4594: 14,37 + 4595: 14,35 + 4596: 14,34 + 4597: 13,35 + 4598: 13,36 + 4599: 15,34 + 4600: 16,35 + 4601: 15,36 + 4602: 15,34 + 4603: 15,35 + 4604: 15,37 + 4605: 14,37 + 4606: 15,30 + 4607: 14,29 + 4608: 14,29 + 4609: 15,28 + 4610: 14,29 + 4611: 14,32 + 4612: 13,32 + 4613: 15,24 + 4637: 2,24 + 4638: 1,24 + 4639: 1,24 + 4640: 2,23 + 4641: 4,23 + 4642: 4,24 + 4643: 3,26 + 4644: 4,28 + 4645: 2,27 + 4646: 2,27 + 4647: 3,27 + 4648: -2,25 + 4649: -3,25 + 4650: -3,23 + 4651: -2,24 + 4652: -4,23 + 4653: -4,25 + 4689: -14,28 + 4690: -15,28 + 4691: -14,29 + 4692: -13,26 + 4693: -10,26 + 4694: -9,27 + 4695: -10,28 + 4696: -7,28 + 4697: -8,26 + 4698: -5,28 + 4699: -7,24 + 4700: -8,24 + 4701: -7,23 + 4702: -6,24 + 4703: -6,23 + 4704: -7,23 + 4705: -8,23 + 4706: -8,23 + 4707: -12,23 + 4708: -11,24 + 4709: -10,23 + 4710: -10,24 + 4711: -10,24 + 4712: -12,24 + 4713: -12,24 + 4714: -14,24 + 4715: -14,23 + 4716: -16,24 + 4717: -14,24 + 4718: -15,23 + 4719: -16,24 + 4720: -14,25 + 4721: -10,25 + 4722: -7,25 + 4723: -1,28 + 4724: -3,27 + 4725: -1,30 + 4726: -1,33 + 4727: -1,34 + 4728: -1,37 + 4729: -3,37 + 4730: -3,38 + 4731: -1,37 + 4732: -2,37 + 4733: -1,40 + 4734: -3,41 + 4735: -3,43 + 4736: -2,43 + 4737: -20,25 + 4738: -21,25 + 4739: -19,25 + 4740: -21,25 + 4741: -22,17 + 4742: -23,17 + 4743: -22,5 + 4744: -22,5 + 4745: -22,5 + 4746: -19,-28 + 4747: -16,-28 + 4748: -16,-27 + 4749: -15,-28 + 4750: -16,-26 + 4751: -15,-27 + 4752: -15,-28 + 4753: -15,-26 + 4754: -15,-26 + 4755: -14,-26 + 4766: -25,-34 + 4767: -23,-34 + 4768: -22,-34 + 4769: -21,-34 + 4770: -20,-34 + 4771: -20,-37 + 4772: -20,-36 + 4773: -19,-38 + 4774: -19,-36 + 4775: -22,-37 + 4776: -23,-37 + 4777: -23,-38 + 4778: -23,-36 + 4779: -24,-37 + 4780: -26,-37 + 4781: -26,-36 + 4782: -26,-37 + 4783: -28,-40 + 4784: -27,-40 + 4785: -25,-40 + 4786: -24,-40 + 4787: -23,-40 + 4788: -21,-40 + 4789: -19,-40 + 4790: -21,-40 + 4791: -24,-40 + 4792: -26,-40 + 4793: -32,-40 + 4794: -31,-40 + 4795: -33,-39 + 4796: -33,-40 + 4797: -32,-39 + 4798: -31,-39 + 4799: -34,-39 + 4800: -33,-40 + 4801: -39,-38 + 4802: -38,-38 + 4803: -38,-53 + 4804: -38,-54 + 4805: -37,-53 + 4806: -37,-54 + 4807: -5,-36 + 4808: -6,-36 + 4809: -4,-35 + 4810: -4,-36 + 4811: 0,-36 + 4812: -2,-36 + 4813: 1,-35 + 4814: 1,-37 + 4815: 1,-38 + 4816: 2,-37 + 4817: 2,-38 + 4818: 0,-37 + 4819: 3,-37 + 4820: -1,-36 + 4824: -6,-28 + 4825: -6,-27 + 4826: -5,-27 + 4827: -6,-26 + 4828: -2,-27 + 4829: -3,-26 + 4830: -2,-28 + 4831: -1,-27 + 4832: 0,-27 + 4833: 0,-27 + 4834: -2,-27 + 4835: -2,-27 + 4836: 0,-24 + 4837: -2,-24 + 4838: -2,-23 + 4839: 0,-22 + 4840: 1,-22 + 4841: 1,-21 + 4842: -4,-19 + 4843: -5,-19 + 4844: -7,-19 + 4845: -9,-19 + 4846: -6,-19 + 4847: -7,-17 + 4848: -8,-17 + 4849: -9,-16 + 4850: -9,-16 + 4851: -5,-16 + 4852: -4,-14 + 4853: -5,-15 + 4854: -8,-16 + 4855: -8,-15 + 4856: -14,-14 + 4857: -12,-14 + 4858: -12,-16 + 4859: -13,-18 + 4860: -14,-16 + 4861: -13,-16 + 4862: -13,-19 + 4863: -14,-19 + 4864: -2,-17 + 4865: -2,-15 + 4866: -2,-13 + 4867: -2,-12 + 4868: -1,-15 + 4869: -1,-16 + 4870: -1,-17 + 4871: 1,-17 + 4872: -1,-18 + 4873: 2,-18 + 4874: 2,-16 + 4875: 2,-15 + 4876: 2,-13 + 4877: 1,-12 + 4878: 1,-14 + 4879: -1,-13 + 4880: 0,-14 + 4881: 2,-16 + 4882: -4,-14 + 4883: -7,-24 + 4884: -7,-22 + 4885: -8,-23 + 4886: -10,-23 + 4887: -9,-23 + 4888: -1,-24 + 4889: 8,-23 + 4890: 8,-22 + 4891: 10,-22 + 4892: 9,-23 + 4893: 8,-25 + 4894: 8,-21 + 4895: 8,-19 + 4896: 8,-18 + 4897: 6,-18 + 4898: 5,-18 + 4899: 0,-27 + 4900: 2,-27 + 4901: 10,-23 + 4902: 13,-23 + 4903: 12,-23 + 4904: 13,-21 + 4905: 14,-22 + 4906: 13,-18 + 4907: 14,-18 + 4908: 14,-17 + 4909: 12,-18 + 4910: 11,-18 + 4911: 11,-16 + 4912: 13,-17 + 4913: 11,-30 + 4914: 11,-28 + 4915: 11,-27 + 4916: 11,-26 + 4917: 17,-26 + 4918: 17,-28 + 4919: 17,-28 + 4920: 17,-30 + 4921: 17,-30 + 4922: 18,-23 + 4923: 20,-22 + 4924: 21,-23 + 4925: 19,-22 + 4926: 21,-22 + 4927: 20,-21 + 4928: 24,-22 + 4929: 23,-23 + 4930: 23,-21 + 4931: 23,-23 + 4932: 17,-16 + 4933: 19,-14 + 4934: 18,-13 + 4935: 20,-13 + 4936: 19,-12 + 4937: 22,-11 + 4938: 22,-13 + 4939: 20,-11 + 4940: 24,-13 + 4941: 26,-11 + 4942: 21,-11 + 4943: 20,-11 + 4944: 25,-13 + 4945: 22,-13 + 4946: 23,-12 + 4947: 26,-12 + 4948: 19,-12 + 4949: 23,-13 + 4950: 23,-11 + 4951: 19,-10 + 4952: 26,-11 + 4953: 28,-12 + 4954: 25,-12 + 4955: 23,-16 + 4956: 23,-16 + 4957: 13,-19 + 4958: 23,-34 + 4959: 23,-31 + 4960: 23,-30 + 4961: 23,-29 + 4962: 23,-32 + 4963: 29,-34 + 4964: 29,-33 + 4965: 29,-32 + 4966: 29,-30 + 4967: 29,-29 + 4968: 32,-34 + 4969: 32,-31 + 4970: 32,-30 + 4971: 36,-30 + 4972: 35,-29 + 4973: 33,-26 + 4974: 36,-21 + 4975: 38,-16 + 4976: 37,-15 + 4977: 39,-16 + 4978: 38,-17 + 4979: 38,-15 + 4980: 37,-15 + 4981: 62,-31 + 4982: 62,-33 + 4983: 61,-31 + 4984: 63,-33 + 4985: 63,-33 + 4986: 63,-32 + 4987: 62,-32 + 4988: 62,-32 + 4989: 64,8 + 4990: 63,9 + 4991: 65,9 + 4992: 64,8 + 4993: 64,9 + 4994: 64,10 + 4995: 67,6 + 4996: 68,4 + 4997: 68,6 + 4998: 67,5 + 4999: 68,0 + 5000: 68,1 + 5001: 68,2 + 5002: 67,0 + 5003: 68,-2 + 5004: 67,-3 + 5005: 68,-4 + 5006: 68,-3 + 5007: 68,-3 + 5008: 76,-6 + 5014: 54,-30 + 5015: 52,-31 + 5016: 51,-31 + 5017: 52,-33 + 5018: 52,-34 + 5019: 51,-33 + 5020: 51,-32 + 5021: 52,-35 + 5022: 51,-33 + 5023: 51,-31 + 5024: 52,-35 + 5025: 52,-35 + 5026: 55,-35 + 5027: 54,-34 + 5028: 56,-33 + 5029: 57,-33 + 5030: 55,-34 + 5031: 55,-36 + 5032: 54,-35 + 5033: 55,-34 + 5034: 54,-35 + 5035: 55,-35 + 5036: 55,-34 + 5037: 40,-31 + 5038: 40,-30 + 5039: 40,-30 + 5040: 41,-31 + 5041: 41,-29 + 5042: 42,-29 + 5043: 43,-29 + 5044: 44,-29 + 5045: 44,-31 + 5046: 43,-30 + 5047: 33,-29 + 5048: 15,-39 + 5049: 14,-39 + 5050: 14,-39 + 5051: 9,-40 + 5052: 9,-39 + 5053: 9,-41 + 5054: 8,-40 + 5055: 19,-45 + 5056: 17,-45 + 5057: 16,-44 + 5058: 16,-45 + 5059: 16,-43 + 5060: 19,-45 + 5061: 20,-44 + 5062: 20,-45 + 5063: 18,-44 + 5064: 21,-45 + 5065: 21,-43 + 5066: 15,-48 + 5067: 14,-48 + 5068: 12,-47 + 5069: 12,-48 + 5070: 14,-48 + 5071: 16,-47 + 5072: 14,-48 + 5073: 13,-48 + 5074: 15,-47 + 5081: 21,-54 + 5082: 20,-54 + 5083: 18,-54 + 5084: 16,-54 + 5085: 16,-55 + 5086: 18,-53 + 5087: 19,-53 + 5088: 21,-55 + 5089: 21,-58 + 5090: 21,-59 + 5091: 20,-58 + 5092: 18,-58 + 5093: 17,-58 + 5094: 16,-58 + 5095: 16,-59 + 5096: 19,-59 + 5097: 19,-59 + 5098: 18,-59 + 5099: 27,-46 + 5100: 26,-45 + 5101: 26,-44 + 5102: 27,-45 + 5103: 27,-45 + 5104: 28,-42 + 5105: 29,-42 + 5106: 29,-40 + 5107: 28,-39 + 5108: 28,-39 + 5109: 28,-40 + 5110: 29,-47 + 5111: 28,-47 + 5112: 66,-52 + 5113: 65,-51 + 5114: 66,-52 + 5115: 66,-51 + 5116: 65,-52 + 5117: 66,-51 + 5118: 27,15 + 5119: 28,15 + 5120: 27,14 + 5121: 27,12 + 5122: -23,34 + 5123: -23,35 + 5124: -22,34 + 5125: -27,36 + 5126: -27,34 + 5127: -28,35 + 5128: -27,35 + 5129: -29,36 + 5130: -30,37 + 5131: -30,38 + 5132: -28,35 + 5133: -28,34 + 5134: -29,35 + 5135: -26,36 + 5136: -25,38 + 5137: -26,37 + 5138: -32,36 + 5139: -33,35 + 5140: -33,37 + 5141: -33,35 + 5142: -34,36 + 5143: -33,38 + 5144: -33,35 + 5145: -36,5 + 5146: -42,6 + 5147: -43,4 + 5148: -43,6 + 5149: -42,7 + 5150: -51,9 + 5151: -49,13 + 5152: -42,-5 + 5153: -43,-5 + 5154: -42,-3 + 5155: -45,-4 + 5156: -45,-5 + 5157: -46,-4 + 5158: -43,-3 + 5159: -43,-2 + 5160: -42,-2 + 5161: -60,-29 + 5162: -60,-29 + 5163: -57,-36 + 5164: -58,-36 + 5165: -59,-36 + 5166: -57,-37 + 5167: -58,-35 + 5168: -58,-34 + 5169: -57,-35 + 5170: -59,-34 + 5171: -58,-34 + 5172: -59,-34 + 5173: -60,-34 + 5174: -60,-35 + 5175: -61,-21 + 5176: -62,-21 + 5177: -62,-20 + 5178: -61,-20 + 5179: -61,-20 + 5180: 13,35 + 5812: 52,20 + 5813: 51,21 + 5814: 53,20 + 5815: 53,21 + 6094: 49,-7 + 6095: 48,-6 + 6096: 48,-4 + 6097: 49,-4 + 6098: 52,-7 + 6099: 52,-5 + 6100: 51,-6 + 6101: 52,-2 + 6102: 52,-3 + 6103: 48,-1 + 6104: 48,-2 + 6124: 49,-12 + 6125: 49,-14 + 6126: 49,-15 + 6127: 49,-13 + 6128: 52,-14 + 6129: 52,-13 + 6130: 52,-12 + 6131: 52,-15 + 6132: 52,-15 + 6133: 52,-10 + 6134: 51,1 + 6135: 51,3 + 6136: 51,4 + 6137: 51,8 + 6138: 51,9 + 6139: 51,11 + 6140: 51,13 + 6141: 49,13 + 6142: 49,11 + 6143: 49,9 + 6144: 49,7 + 6145: 49,5 + 6146: 49,3 + 6147: 49,1 + 6160: 42,9 + 6161: 43,9 + 6162: 42,7 + 6163: 43,7 + 6164: 45,7 + 6165: 45,9 + 6166: 46,7 + 6167: 40,4 + 6168: 42,4 + 6169: 43,4 + 6170: 43,2 + 6171: 43,1 + 6172: 43,-2 + 6173: 43,-4 + 6174: 43,-7 + 6175: 43,-6 + 6176: 43,-10 + 6177: 43,-11 + 6178: 45,5 + 6179: 42,5 + 6180: 41,5 + 6258: 90,-18 + 6259: 89,-18 + 6339: 51,-39 + 6340: 52,-39 + 6341: 54,-39 + 6342: 52,-37 + 6352: 51,-30 + 6353: 52,-29 + 6375: -33,-12 + 6376: -33,-10 + 6392: -36,-45 + 6393: -35,-44 + 6394: -35,-46 + 6484: 14,39 + 6485: 13,40 + 6486: 15,42 + 6487: 15,41 + 6488: 16,39 + 6548: 8,-47 + 6694: -34,14 + 6695: -33,15 + 6696: -30,15 + 6697: -31,16 + 6698: -30,17 + 6699: -29,14 + 6700: -29,12 + 6701: -32,12 + 6702: -35,14 + 6703: -37,14 + 6704: -38,13 + 6796: 43,13 + 6797: 42,11 + 6864: 59,-8 + 6865: 57,-5 + 6866: 61,-4 + 6872: -14,-38 + 6873: -13,-37 + 6883: -12,-37 + 6884: -12,-37 + 6885: -11,-40 + 6901: 53,-21 + 6902: 54,-21 + 6903: 57,-21 + 6904: 56,-23 + 6905: 58,-24 + 6936: 78,-7 + 6944: 52,-23 + 6957: -34,-5 + 6958: -33,-4 + 6959: -33,-3 + 6960: -31,-4 + 6961: -31,-2 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 2896: -43,17 + 2849: -43,17 - node: cleanable: True color: '#835432FF' id: DirtHeavyMonotile decals: - 2804: -38,29 - 2805: -36,28 - 2806: -34,26 - 2807: -34,24 - 2808: -36,22 - 2809: -37,25 - 2810: -37,26 - 2811: -37,27 - 2812: -38,27 - 2813: -36,26 + 2774: -38,29 + 2775: -36,28 + 2776: -34,26 + 2777: -34,24 + 2778: -36,22 + 2779: -37,25 + 2780: -37,26 + 2781: -37,27 + 2782: -38,27 + 2783: -36,26 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6358: 88,-21 - 6359: 88,-20 - 6360: 91,-20 - 6363: 87,-20 - 6366: 88,-19 + 6283: 88,-21 + 6284: 88,-20 + 6285: 91,-20 + 6288: 87,-20 + 6291: 88,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3055: 4,-31 - 3056: 0,-31 - 3057: -4,-31 - 3058: -8,-31 - 3059: -10,-31 - 3060: -13,-31 - 3061: -17,-31 - 3062: -18,-31 - 3063: -21,-31 - 3064: -25,-31 - 3065: -25,-27 - 3066: -25,-24 - 3067: -25,-22 - 3068: -25,-19 - 3069: -25,-18 - 3070: -25,-13 - 3071: -25,-11 - 3072: -24,-10 - 3073: -24,-8 - 3074: -22,-2 - 3075: -22,0 - 3076: -22,3 - 3077: -20,8 - 3078: -22,9 - 3079: -24,8 - 3080: -25,9 - 3081: -26,8 - 3082: -26,12 - 3083: -26,15 - 3084: -26,17 - 3085: -25,20 - 3086: -23,19 - 3087: -20,19 - 3088: -18,20 - 3089: -15,20 - 3090: -12,20 - 3091: -7,20 - 3092: -3,20 - 3093: -1,20 - 3094: 2,20 - 3095: 6,20 - 3096: 9,20 - 3097: 11,20 - 3098: 14,20 - 3099: 17,20 - 3100: 20,19 - 3101: 20,17 - 3102: 20,15 - 3103: 20,11 - 3104: 20,9 - 3105: 20,6 - 3106: 20,3 - 3107: 22,3 - 3108: 25,3 - 3109: 27,3 - 3110: 30,3 - 3111: 33,3 - 3112: 36,3 - 3113: 41,3 - 3114: 42,2 - 3115: 42,0 - 3116: 42,-3 - 3117: 42,-6 - 3118: 42,-9 - 3119: 42,-11 - 3120: 42,-15 - 3121: 42,-18 - 3122: 42,-20 - 3123: 44,-20 - 3124: 42,-13 - 3125: 42,-10 - 3126: 42,-7 - 3127: 42,-5 - 3128: 42,-2 - 3129: 42,1 - 3130: 39,3 - 3131: 37,3 - 3132: 35,3 - 3133: 32,3 - 3134: 31,3 - 3135: 26,3 - 3136: 22,3 - 3137: 20,6 - 3138: 20,9 - 3139: 20,12 - 3140: 20,15 - 3141: 20,19 - 3142: 19,20 - 3143: 12,20 - 3144: 8,20 - 3145: 5,20 - 3146: 2,20 - 3147: -1,20 - 3148: -5,20 - 3149: -9,20 - 3150: -12,20 - 3151: -16,20 - 3153: -19,19 - 3154: -26,20 - 3155: -26,16 - 3156: -26,11 - 3157: -26,8 - 3158: -23,8 - 3159: -22,9 - 3160: -21,8 - 3161: -20,9 - 3162: -22,3 - 3163: -22,0 - 3164: -22,-3 - 3165: -22,-5 - 3166: -23,-7 - 3167: -25,-7 - 3168: -23,-8 - 3169: -25,-10 - 3170: -25,-10 - 3171: -25,-14 - 3172: -25,-18 - 3173: -25,-21 - 3174: -25,-25 - 3175: -25,-28 - 3176: -23,-31 - 3177: -20,-31 - 3178: -15,-31 - 3179: -9,-31 - 3180: -5,-31 - 3181: 1,-31 - 3182: 1,-32 - 3183: 7,-31 - 3184: 5,-31 - 3185: 8,-32 - 3186: 9,-33 - 3187: 12,-33 - 3188: 15,-33 - 3189: 18,-33 - 3190: 19,-33 - 3191: 20,-29 - 3192: 20,-27 - 3193: 21,-26 - 3194: 24,-26 - 3195: 27,-26 - 3196: 28,-26 - 3197: 28,-22 - 3198: 28,-21 - 3199: 28,-20 - 3200: 32,-20 - 3201: 35,-20 - 3202: 39,-20 - 3203: 42,-20 - 3204: 40,-20 - 3205: 42,-17 - 3206: 42,-19 - 3207: 49,-20 - 3208: 52,-20 - 3209: 47,-20 - 3210: 53,-20 - 3211: 54,-20 - 3212: 56,-20 - 3213: 58,-20 - 3214: 58,-20 - 3215: 58,-22 - 3216: 58,-22 - 3217: 49,-20 - 3218: 50,-20 - 3219: 44,-13 - 3220: 41,-13 - 3221: 39,-1 - 3222: 37,-1 - 3223: 36,-1 - 3224: 50,6 - 3225: 50,2 - 3226: 50,14 - 3227: 46,-7 - 3228: 45,-8 - 3229: 46,-4 - 3230: 46,-5 - 3231: 45,-1 - 3232: 46,-2 - 3233: 54,-1 - 3234: 55,-1 - 3235: 55,-7 - 3236: 62,-6 - 3237: 61,-6 - 3238: 55,7 - 3239: 54,7 - 3240: 59,15 - 3241: 58,15 - 3242: 60,16 - 3243: 60,3 - 3244: 60,1 - 3245: 63,1 - 3246: 62,1 - 3247: 62,0 - 3248: 62,3 - 3249: 62,4 - 3250: 28,3 - 3251: 28,3 - 3252: 24,8 - 3253: 24,6 - 3254: 23,8 - 3255: 25,7 - 3256: 24,7 - 3257: 24,6 - 3258: 25,11 - 3259: 25,13 - 3260: 25,14 - 3261: 23,15 - 3262: 22,12 - 3263: 23,12 - 3264: 23,14 - 3265: 23,11 - 3266: 26,19 - 3267: 24,20 - 3268: 25,21 - 3269: 26,19 - 3270: 25,20 - 3271: 29,20 - 3272: 29,19 - 3273: 30,19 - 3274: 29,21 - 3275: -19,26 - 3276: -21,28 - 3277: -20,26 - 3278: -20,28 - 3279: -7,40 - 3280: 3,40 - 3281: -26,19 - 3282: -17,11 - 3283: -16,11 - 3284: -16,13 - 3285: -17,13 - 3286: -30,3 - 3287: -32,3 - 3288: -37,3 - 3289: -36,2 - 3290: -35,2 - 3291: -37,1 - 3292: -32,2 - 3293: -32,1 - 3294: -31,2 - 3295: -33,2 - 3296: -38,0 - 3297: -37,0 - 3298: -34,0 - 3299: -33,0 - 3300: -31,0 - 3301: -30,0 - 3302: -55,6 - 3303: -54,6 - 3304: -54,4 - 3305: -54,2 - 3306: -56,5 - 3307: -55,4 - 3308: -53,1 - 3309: -51,1 - 3310: -49,1 - 3311: -47,1 - 3312: -45,1 - 3313: -44,1 - 3314: -54,1 - 3315: -54,-4 - 3316: -55,-4 - 3317: -54,-8 - 3318: -54,-10 - 3319: -54,-12 - 3320: -54,-14 - 3321: -54,-16 - 3322: -54,-19 - 3323: -53,-21 - 3324: -51,-21 - 3325: -54,-21 - 3326: -54,-20 - 3327: -54,-18 - 3328: -48,-21 - 3329: -48,-23 - 3330: -48,-24 - 3331: -50,-25 - 3332: -47,-25 - 3333: -45,-25 - 3334: -45,-26 - 3335: -45,-29 - 3336: -44,-28 - 3337: -43,-28 - 3338: -45,-31 - 3339: -48,-32 - 3340: -49,-32 - 3341: -51,-32 - 3342: -51,-30 - 3343: -51,-28 - 3344: -51,-26 - 3345: -48,-33 - 3346: -54,-26 - 3347: -56,-25 - 3348: -55,-25 - 3349: -56,-26 - 3350: -57,-26 - 3351: -55,-26 - 3352: -56,-25 - 3353: -48,-36 - 3354: -48,-38 - 3355: -48,-40 - 3356: -48,-42 - 3357: -48,-44 - 3358: -48,-47 - 3359: -49,-47 - 3360: -51,-47 - 3361: -53,-47 - 3362: -54,-47 - 3363: -45,-47 - 3364: -45,-47 - 3365: -43,-47 - 3366: -41,-47 - 3367: -41,-47 - 3368: -41,-50 - 3369: -41,-51 - 3370: -41,-54 - 3371: -36,-58 - 3372: -36,-60 - 3373: -36,-63 - 3374: -36,-64 - 3375: -36,-56 - 3376: -37,-56 - 3377: -41,-61 - 3378: -42,-62 - 3379: -41,-64 - 3380: -41,-64 - 3381: -42,-62 - 3382: -41,-48 - 3383: -53,-47 - 3384: -55,-47 - 3385: -55,-49 - 3386: -55,-52 - 3387: -55,-54 - 3388: -60,-58 - 3389: -60,-60 - 3390: -60,-62 - 3391: -60,-63 - 3392: -60,-64 - 3393: -58,-56 - 3394: -60,-56 - 3395: -55,-64 - 3396: -55,-62 - 3397: -54,-61 - 3398: -54,-63 - 3399: -54,-64 - 3400: -8,-28 - 3401: -7,-26 - 3402: -8,-27 - 3403: -8,-27 - 3404: 7,-22 - 3405: 5,-22 - 3406: 4,-23 - 3407: 4,-20 - 3408: 4,-19 - 3409: 7,-20 - 3410: 7,-21 - 3411: 7,-24 - 3412: 7,-25 - 3413: 10,-16 - 3414: 10,-18 - 3415: 10,-18 - 3416: 12,-29 - 3417: 12,-28 - 3418: 12,-26 - 3419: 13,-25 - 3420: 14,-25 - 3421: 14,-26 - 3422: 15,-25 - 3423: 16,-26 - 3424: 16,-29 - 3425: -4,-36 - 3426: -4,-37 - 3427: -6,-37 - 3428: 34,-3 - 3429: 32,-2 - 3430: 32,-3 - 3431: 31,-2 - 3432: 31,-3 - 3433: 31,-35 - 3434: 33,-35 - 3435: 32,-37 - 3436: 33,-36 - 3437: 33,-38 - 3438: 32,-36 - 3439: 31,-38 - 3440: 47,-36 - 3441: 47,-35 - 3442: 49,-35 - 3443: 49,-37 - 3444: 47,-37 - 3445: 47,-38 - 3446: 49,-38 - 3447: 47,-39 - 3448: 24,-29 - 3449: 26,-29 - 3450: 27,-29 - 3451: 28,-29 - 3452: 25,-34 - 3453: 27,-34 - 3454: 28,-34 - 3455: 26,-34 - 3456: 28,-43 - 3457: 29,-43 - 3458: 28,-45 - 3459: 29,-45 - 3460: 28,-46 - 3461: 29,-46 - 3462: 19,-46 - 3463: 18,-46 - 3464: 18,-47 - 3465: 19,-49 - 3466: 19,-49 - 3467: 18,-50 - 3468: 19,-50 - 3469: 18,-48 - 3470: 16,-48 - 3471: 14,-48 - 3472: 12,-47 - 3473: 10,-40 - 3474: 11,-39 - 3475: 11,-40 - 3476: 11,-40 - 3477: 8,-31 - 3478: 8,-31 - 3479: 5,-14 - 3480: 6,-14 - 3481: 6,-15 - 3482: 5,-15 - 3483: 4,-15 - 3484: 4,-15 - 3485: 25,7 - 3486: 20,16 - 3487: 20,18 - 3488: 15,26 - 3489: 14,26 - 3490: 13,26 - 3491: 13,26 - 3492: -44,10 - 3493: -45,10 - 3494: -46,10 - 3495: -47,10 - 3496: -49,10 - 3497: -50,10 - 3498: -50,12 - 3499: -47,12 - 3500: -48,1 - 3501: -47,1 - 3502: -48,-41 - 3503: -38,-56 - 3504: -38,-56 - 3505: -42,-57 - 3506: -55,-57 - 3638: -50,0 - 3639: -50,2 - 3640: -48,2 - 3641: -46,2 - 3642: -45,2 - 3643: -44,0 - 3644: -46,0 - 3645: -48,0 - 3677: -51,3 - 3678: -49,3 - 3679: -47,3 - 3680: -45,3 - 3681: -44,5 - 3682: -46,5 - 3683: -48,5 - 3684: -50,5 - 3685: -50,-1 - 3686: -49,-1 - 3687: -47,-1 - 3688: -46,-1 - 3689: -44,-1 - 3690: -44,-3 - 3691: -46,-3 - 3692: -47,-3 - 3693: -49,-3 - 3694: -50,-3 - 3695: -48,-3 - 3696: -46,-3 - 3697: -48,3 - 3698: -46,3 - 3776: -21,6 - 3777: -21,7 - 3778: -22,6 - 3779: -21,7 - 3957: 19,1 - 3958: 21,1 - 3959: 22,1 - 3960: 23,1 - 3961: 23,1 - 4015: 40,-22 - 4016: 41,-22 - 4017: 43,-22 - 4018: 44,-22 - 4070: 61,-25 - 4071: 62,-25 - 4072: 62,-26 - 4077: 68,-23 - 4100: 68,-15 - 4101: 68,-13 - 4102: 68,-14 - 4103: 67,-12 - 4104: 70,-12 - 4105: 70,-14 - 4106: 68,-11 - 4107: 71,-12 - 4108: 70,-14 - 4109: 70,-15 - 4110: 71,-13 - 4111: 69,-13 - 4112: 69,-12 - 4113: 68,-10 - 4114: 67,-10 - 4115: 68,-8 - 4116: 69,-8 - 4117: 70,-9 - 4118: 70,-10 - 4212: 39,-34 - 4213: 40,-34 - 4214: 39,-34 - 4215: 42,-34 - 4216: 40,-34 - 4217: 41,-33 - 4218: 34,-36 - 4219: 34,-35 - 4220: 35,-36 - 4221: 38,-37 - 4222: 43,-37 - 4223: 43,-37 - 4224: 46,-37 - 4225: 46,-35 - 4226: 46,-37 - 4227: 47,-37 - 4228: 48,-36 - 4229: 48,-37 - 4230: 46,-39 - 4231: 44,-39 - 4232: 41,-39 - 4233: 37,-39 - 4234: 35,-39 - 4235: 39,-38 - 4236: 33,-38 - 4535: -20,6 - 4536: -20,7 - 4537: -21,6 - 4538: -20,7 - 4539: -20,6 - 4540: -21,12 - 4541: -25,29 - 4542: -25,28 - 4543: -26,30 - 4544: -26,28 - 4545: -26,29 - 4569: -16,40 - 4570: -17,41 - 4571: -15,39 - 4572: -13,41 - 4573: -12,39 - 4624: -2,46 - 4625: -4,46 - 4626: -1,48 - 4627: 0,47 - 4628: -3,50 - 4629: 0,51 - 4630: 2,47 - 4631: 2,45 - 4632: 2,43 - 4633: 2,40 - 4634: -6,40 - 4635: -7,40 - 4636: -7,40 - 4637: -4,46 - 4638: -5,45 - 4639: -6,46 - 4640: 7,41 - 4641: 6,42 - 4642: 9,40 - 4643: 6,39 - 4644: 8,40 - 4645: 6,39 - 4646: 8,39 - 4647: 7,42 - 4648: 7,41 - 4649: 5,41 - 4680: 14,34 - 4681: 13,36 - 4682: 14,37 - 4683: 16,37 - 4684: 14,36 - 4685: 5,30 - 4686: 4,30 - 4687: 3,32 - 4688: 5,32 - 4689: 5,32 - 4690: 4,31 - 4691: 4,31 - 4692: 3,32 - 4693: 3,28 - 4694: 2,27 - 4695: 1,28 - 4696: 3,27 - 4697: 4,26 - 4698: 3,25 - 4699: 4,24 - 4700: 3,23 - 4701: 1,24 - 4702: 2,23 - 4720: -3,25 - 4721: -4,23 - 4722: -2,23 - 4723: -3,24 - 4724: 0,24 - 4725: 0,23 - 4726: -16,29 - 4727: -15,26 - 4728: -15,28 - 4729: -13,28 - 4730: -13,29 - 4731: -9,28 - 4732: -10,26 - 4733: -9,27 - 4734: -11,28 - 4735: -8,29 - 4736: -9,26 - 4737: -6,27 - 4738: -6,26 - 4739: -6,28 - 4740: -3,29 - 4741: -4,27 - 4742: -1,28 - 4743: -3,29 - 4744: -2,30 - 4745: -3,32 - 4746: -2,33 - 4747: -2,34 - 4748: -8,33 - 4749: -7,32 - 4750: -8,32 - 4751: -9,33 - 4752: -6,34 - 4753: -6,33 - 4754: -13,34 - 4822: -17,-28 - 4823: -19,-28 - 4824: -20,-27 - 4825: -20,-26 - 4826: -20,-27 - 4827: -15,-28 - 4828: -14,-28 - 4829: -14,-27 - 4830: -14,-29 - 4831: -17,-29 - 4890: -6,-37 - 4891: -5,-37 - 4892: -4,-37 - 5078: 78,-28 - 5079: 79,-28 - 5080: 78,-28 - 5081: 78,-27 - 5082: 78,-29 - 5144: 13,-45 - 5145: 12,-45 - 5146: 12,-50 - 5147: 12,-49 - 5148: 16,-49 - 5149: 15,-49 - 5937: 81,-34 - 5938: 82,-35 - 5939: 81,-35 - 5940: 81,-35 - 5966: -2,41 - 5967: -2,42 - 5968: -3,42 - 5969: -3,42 - 5970: -1,43 - 6179: 49,-1 - 6180: 51,-1 - 6181: 50,-2 - 6182: 49,-3 - 6183: 49,-5 - 6184: 51,-5 - 6185: 51,-3 - 6186: 50,-8 - 6187: 49,-8 - 6188: 48,-7 - 6189: 52,-8 - 6190: 54,-7 - 6191: 49,-10 - 6192: 50,-11 - 6193: 48,-11 - 6194: 51,-10 - 6195: 51,-11 - 6196: 52,-11 - 6197: 53,-11 - 6222: 50,2 - 6223: 50,4 - 6224: 50,9 - 6225: 50,12 - 6226: 50,13 - 6227: 47,9 - 6228: 47,7 - 6229: 41,8 - 6230: 41,7 - 6231: 40,8 - 6232: 40,7 - 6233: 44,8 - 6255: 46,4 - 6256: 45,4 - 6257: 46,2 - 6258: 45,2 - 6259: 45,1 - 6260: 46,5 - 6261: 40,5 - 6262: 44,4 - 6263: 44,7 - 6264: 55,3 - 6265: 54,2 - 6266: 53,3 - 6267: 55,4 - 6268: 57,4 - 6269: 56,2 - 6270: 55,1 - 6271: 55,6 - 6272: 53,7 - 6273: 53,6 - 6274: 55,8 - 6275: 56,10 - 6276: 55,10 - 6277: 53,12 - 6278: 53,11 - 6279: 57,14 - 6289: -1,-23 - 6290: 0,-23 - 6291: -4,-23 - 6292: -5,-23 - 6293: 35,19 - 6294: 34,19 - 6295: 35,20 - 6296: -8,27 - 6297: -12,27 - 6298: -10,27 - 6299: -14,27 - 6300: -15,27 - 6301: -15,27 - 6335: 88,-18 - 6336: 87,-18 - 6337: 91,-19 - 6338: 91,-18 - 6339: 92,-19 - 6418: 51,-36 - 6419: 51,-37 - 6420: 53,-39 - 6421: 54,-40 - 6422: 51,-35 - 6429: 51,-29 - 6435: 51,-26 - 6436: 52,-27 - 6452: -32,-12 - 6453: -34,-11 - 6454: -32,-10 - 6455: -33,-9 - 6456: -34,-9 - 6460: 61,-21 - 6461: -24,-42 - 6463: -25,-42 - 6464: -22,-42 - 6465: -22,-42 - 6472: -37,-45 - 6473: -38,-44 - 6474: -38,-46 - 6475: -37,-46 - 6564: 13,41 - 6565: 15,39 - 6566: 16,41 - 6602: 33,-2 - 6603: 34,-2 - 6604: 34,-2 - 6622: 7,-47 - 6715: -20,10 - 6716: -24,13 - 6780: -35,12 - 6781: -33,11 - 6782: -32,13 - 6783: -31,13 - 6784: -32,16 - 6785: -34,16 - 6786: -34,17 - 6787: -32,17 - 6788: -30,17 - 6789: -29,16 - 6790: -29,13 - 6791: -29,11 - 6792: -32,12 - 6793: -37,14 - 6794: -38,13 - 6795: -39,14 - 6805: -35,17 - 6806: -35,11 - 6807: -34,11 - 6808: -31,11 - 6809: -30,11 - 6810: -33,16 - 6811: -38,10 - 6812: -29,15 - 6813: -29,15 - 6814: -29,16 - 6815: -29,17 - 6816: -32,17 - 6859: 44,11 - 6860: 45,12 - 6861: 44,14 - 6862: 43,15 - 6863: 44,16 - 6864: 47,14 - 6865: 41,12 - 6866: 41,13 - 6867: 41,11 - 6868: 41,11 - 6869: 47,11 - 6870: 47,12 - 6882: 44,15 - 6883: 44,15 - 6923: 58,-7 - 6924: 59,-6 - 6925: 58,-5 - 6926: 60,-5 - 6927: 60,-6 - 6928: 60,-7 - 6929: 60,-6 - 6942: 59,-4 - 6943: 58,-4 - 6944: 58,-4 - 6949: -15,-37 - 6950: -14,-37 - 6956: -11,-37 - 6957: -11,-38 - 6961: -33,1 - 6962: -33,1 - 6964: -43,1 - 6965: -46,1 - 6981: 52,-21 - 6982: 56,-21 - 6983: 57,-23 - 6984: 56,-24 - 6985: 57,-24 - 6986: 57,-22 - 6994: 53,-22 - 7002: 66,-25 - 7003: 66,-24 - 7004: 66,-24 - 7005: 54,-24 - 7006: 53,-24 - 7007: 52,-24 - 7008: 52,-24 - 7012: 79,-7 - 7020: 53,-23 + 3008: 4,-31 + 3009: 0,-31 + 3010: -4,-31 + 3011: -8,-31 + 3012: -10,-31 + 3013: -13,-31 + 3014: -17,-31 + 3015: -18,-31 + 3016: -21,-31 + 3017: -25,-31 + 3018: -25,-27 + 3019: -25,-24 + 3020: -25,-22 + 3021: -25,-19 + 3022: -25,-18 + 3023: -25,-13 + 3024: -25,-11 + 3025: -24,-10 + 3026: -24,-8 + 3027: -22,-2 + 3028: -22,0 + 3029: -22,3 + 3030: -20,8 + 3031: -22,9 + 3032: -24,8 + 3033: -25,9 + 3034: -26,8 + 3035: -26,12 + 3036: -26,15 + 3037: -26,17 + 3038: -25,20 + 3039: -23,19 + 3040: -20,19 + 3041: -18,20 + 3042: -15,20 + 3043: -12,20 + 3044: -7,20 + 3045: -3,20 + 3046: -1,20 + 3047: 2,20 + 3048: 6,20 + 3049: 9,20 + 3050: 11,20 + 3051: 14,20 + 3052: 17,20 + 3053: 20,19 + 3054: 20,17 + 3055: 20,15 + 3056: 20,11 + 3057: 20,9 + 3058: 20,6 + 3059: 20,3 + 3060: 22,3 + 3061: 25,3 + 3062: 27,3 + 3063: 30,3 + 3064: 33,3 + 3065: 36,3 + 3066: 41,3 + 3067: 42,2 + 3068: 42,0 + 3069: 42,-3 + 3070: 42,-6 + 3071: 42,-9 + 3072: 42,-11 + 3073: 42,-15 + 3074: 42,-18 + 3075: 42,-20 + 3076: 44,-20 + 3077: 42,-13 + 3078: 42,-10 + 3079: 42,-7 + 3080: 42,-5 + 3081: 42,-2 + 3082: 42,1 + 3083: 39,3 + 3084: 37,3 + 3085: 35,3 + 3086: 32,3 + 3087: 31,3 + 3088: 26,3 + 3089: 22,3 + 3090: 20,6 + 3091: 20,9 + 3092: 20,12 + 3093: 20,15 + 3094: 20,19 + 3095: 19,20 + 3096: 12,20 + 3097: 8,20 + 3098: 5,20 + 3099: 2,20 + 3100: -1,20 + 3101: -5,20 + 3102: -9,20 + 3103: -12,20 + 3104: -16,20 + 3106: -19,19 + 3107: -26,20 + 3108: -26,16 + 3109: -26,11 + 3110: -26,8 + 3111: -23,8 + 3112: -22,9 + 3113: -21,8 + 3114: -20,9 + 3115: -22,3 + 3116: -22,0 + 3117: -22,-3 + 3118: -22,-5 + 3119: -23,-7 + 3120: -25,-7 + 3121: -23,-8 + 3122: -25,-10 + 3123: -25,-10 + 3124: -25,-14 + 3125: -25,-18 + 3126: -25,-21 + 3127: -25,-25 + 3128: -25,-28 + 3129: -23,-31 + 3130: -20,-31 + 3131: -15,-31 + 3132: -9,-31 + 3133: -5,-31 + 3134: 1,-31 + 3135: 1,-32 + 3136: 7,-31 + 3137: 5,-31 + 3138: 8,-32 + 3139: 9,-33 + 3140: 12,-33 + 3141: 15,-33 + 3142: 18,-33 + 3143: 19,-33 + 3144: 20,-29 + 3145: 20,-27 + 3146: 21,-26 + 3147: 24,-26 + 3148: 27,-26 + 3149: 28,-26 + 3150: 28,-22 + 3151: 28,-21 + 3152: 28,-20 + 3153: 32,-20 + 3154: 35,-20 + 3155: 39,-20 + 3156: 42,-20 + 3157: 40,-20 + 3158: 42,-17 + 3159: 42,-19 + 3160: 49,-20 + 3161: 52,-20 + 3162: 47,-20 + 3163: 53,-20 + 3164: 54,-20 + 3165: 56,-20 + 3166: 58,-20 + 3167: 58,-20 + 3168: 58,-22 + 3169: 58,-22 + 3170: 49,-20 + 3171: 50,-20 + 3172: 44,-13 + 3173: 41,-13 + 3174: 39,-1 + 3175: 37,-1 + 3176: 36,-1 + 3177: 50,6 + 3178: 50,2 + 3179: 50,14 + 3180: 46,-7 + 3181: 45,-8 + 3182: 46,-4 + 3183: 46,-5 + 3184: 45,-1 + 3185: 46,-2 + 3186: 54,-1 + 3187: 55,-1 + 3188: 55,-7 + 3189: 62,-6 + 3190: 61,-6 + 3191: 55,7 + 3192: 54,7 + 3193: 59,15 + 3194: 58,15 + 3195: 60,16 + 3196: 60,3 + 3197: 60,1 + 3198: 63,1 + 3199: 62,1 + 3200: 62,0 + 3201: 62,3 + 3202: 62,4 + 3203: 28,3 + 3204: 28,3 + 3205: 24,8 + 3206: 24,6 + 3207: 23,8 + 3208: 25,7 + 3209: 24,7 + 3210: 24,6 + 3211: 25,11 + 3212: 25,13 + 3213: 25,14 + 3214: 23,15 + 3215: 22,12 + 3216: 23,12 + 3217: 23,14 + 3218: 23,11 + 3219: 24,20 + 3220: 25,21 + 3221: 25,20 + 3222: 29,20 + 3223: 29,19 + 3224: 30,19 + 3225: 29,21 + 3226: -19,26 + 3227: -21,28 + 3228: -20,26 + 3229: -20,28 + 3230: -7,40 + 3231: 3,40 + 3232: -26,19 + 3233: -17,11 + 3234: -16,11 + 3235: -16,13 + 3236: -17,13 + 3237: -30,3 + 3238: -32,3 + 3239: -37,3 + 3240: -36,2 + 3241: -35,2 + 3242: -37,1 + 3243: -32,2 + 3244: -32,1 + 3245: -31,2 + 3246: -33,2 + 3247: -38,0 + 3248: -37,0 + 3249: -34,0 + 3250: -33,0 + 3251: -31,0 + 3252: -30,0 + 3253: -55,6 + 3254: -54,6 + 3255: -54,4 + 3256: -54,2 + 3257: -56,5 + 3258: -55,4 + 3259: -53,1 + 3260: -51,1 + 3261: -49,1 + 3262: -47,1 + 3263: -45,1 + 3264: -44,1 + 3265: -54,1 + 3266: -54,-4 + 3267: -55,-4 + 3268: -54,-8 + 3269: -54,-10 + 3270: -54,-12 + 3271: -54,-14 + 3272: -54,-16 + 3273: -54,-19 + 3274: -53,-21 + 3275: -51,-21 + 3276: -54,-21 + 3277: -54,-20 + 3278: -54,-18 + 3279: -48,-21 + 3280: -48,-23 + 3281: -48,-24 + 3282: -50,-25 + 3283: -47,-25 + 3284: -45,-25 + 3285: -45,-26 + 3286: -45,-29 + 3287: -44,-28 + 3288: -43,-28 + 3289: -45,-31 + 3290: -48,-32 + 3291: -49,-32 + 3292: -51,-32 + 3293: -51,-30 + 3294: -51,-28 + 3295: -51,-26 + 3296: -48,-33 + 3297: -54,-26 + 3298: -56,-25 + 3299: -55,-25 + 3300: -56,-26 + 3301: -57,-26 + 3302: -55,-26 + 3303: -56,-25 + 3304: -48,-36 + 3305: -48,-38 + 3306: -48,-40 + 3307: -48,-42 + 3308: -48,-44 + 3309: -48,-47 + 3310: -49,-47 + 3311: -51,-47 + 3312: -53,-47 + 3313: -54,-47 + 3314: -45,-47 + 3315: -45,-47 + 3316: -43,-47 + 3317: -41,-47 + 3318: -41,-47 + 3319: -41,-50 + 3320: -41,-51 + 3321: -41,-54 + 3322: -36,-58 + 3323: -36,-60 + 3324: -36,-63 + 3325: -36,-64 + 3326: -36,-56 + 3327: -37,-56 + 3328: -41,-61 + 3329: -42,-62 + 3330: -41,-64 + 3331: -41,-64 + 3332: -42,-62 + 3333: -41,-48 + 3334: -53,-47 + 3335: -55,-47 + 3336: -55,-49 + 3337: -55,-52 + 3338: -55,-54 + 3339: -60,-58 + 3340: -60,-60 + 3341: -60,-62 + 3342: -60,-63 + 3343: -60,-64 + 3344: -58,-56 + 3345: -60,-56 + 3346: -55,-64 + 3347: -55,-62 + 3348: -54,-61 + 3349: -54,-63 + 3350: -54,-64 + 3351: -8,-28 + 3352: -7,-26 + 3353: -8,-27 + 3354: -8,-27 + 3355: 7,-22 + 3356: 5,-22 + 3357: 4,-23 + 3358: 4,-20 + 3359: 4,-19 + 3360: 7,-20 + 3361: 7,-21 + 3362: 7,-24 + 3363: 7,-25 + 3364: 10,-16 + 3365: 10,-18 + 3366: 10,-18 + 3367: 12,-29 + 3368: 12,-28 + 3369: 12,-26 + 3370: 13,-25 + 3371: 14,-25 + 3372: 14,-26 + 3373: 15,-25 + 3374: 16,-26 + 3375: 16,-29 + 3376: -4,-36 + 3377: -4,-37 + 3378: -6,-37 + 3379: 34,-3 + 3380: 32,-2 + 3381: 32,-3 + 3382: 31,-2 + 3383: 31,-3 + 3384: 31,-35 + 3385: 33,-35 + 3386: 32,-37 + 3387: 33,-36 + 3388: 33,-38 + 3389: 32,-36 + 3390: 31,-38 + 3391: 47,-36 + 3392: 47,-35 + 3393: 49,-35 + 3394: 49,-37 + 3395: 47,-37 + 3396: 47,-38 + 3397: 49,-38 + 3398: 47,-39 + 3399: 24,-29 + 3400: 26,-29 + 3401: 27,-29 + 3402: 28,-29 + 3403: 25,-34 + 3404: 27,-34 + 3405: 28,-34 + 3406: 26,-34 + 3407: 28,-43 + 3408: 29,-43 + 3409: 28,-45 + 3410: 29,-45 + 3411: 28,-46 + 3412: 29,-46 + 3413: 19,-46 + 3414: 18,-46 + 3415: 18,-47 + 3416: 19,-49 + 3417: 19,-49 + 3418: 18,-50 + 3419: 19,-50 + 3420: 18,-48 + 3421: 16,-48 + 3422: 14,-48 + 3423: 12,-47 + 3424: 10,-40 + 3425: 11,-39 + 3426: 11,-40 + 3427: 11,-40 + 3428: 8,-31 + 3429: 8,-31 + 3430: 5,-14 + 3431: 6,-14 + 3432: 6,-15 + 3433: 5,-15 + 3434: 4,-15 + 3435: 4,-15 + 3436: 25,7 + 3437: 20,16 + 3438: 20,18 + 3439: 15,26 + 3440: 14,26 + 3441: 13,26 + 3442: 13,26 + 3443: -44,10 + 3444: -45,10 + 3445: -46,10 + 3446: -47,10 + 3447: -49,10 + 3448: -50,10 + 3449: -50,12 + 3450: -47,12 + 3451: -48,1 + 3452: -47,1 + 3453: -48,-41 + 3454: -38,-56 + 3455: -38,-56 + 3456: -42,-57 + 3457: -55,-57 + 3589: -50,0 + 3590: -50,2 + 3591: -48,2 + 3592: -46,2 + 3593: -45,2 + 3594: -44,0 + 3595: -46,0 + 3596: -48,0 + 3628: -51,3 + 3629: -49,3 + 3630: -47,3 + 3631: -45,3 + 3632: -44,5 + 3633: -46,5 + 3634: -48,5 + 3635: -50,5 + 3636: -50,-1 + 3637: -49,-1 + 3638: -47,-1 + 3639: -46,-1 + 3640: -44,-1 + 3641: -44,-3 + 3642: -46,-3 + 3643: -47,-3 + 3644: -49,-3 + 3645: -50,-3 + 3646: -48,-3 + 3647: -46,-3 + 3648: -48,3 + 3649: -46,3 + 3718: -21,6 + 3719: -21,7 + 3720: -22,6 + 3721: -21,7 + 3897: 19,1 + 3898: 21,1 + 3899: 22,1 + 3900: 23,1 + 3901: 23,1 + 3955: 40,-22 + 3956: 41,-22 + 3957: 43,-22 + 3958: 44,-22 + 4010: 61,-25 + 4011: 62,-25 + 4012: 62,-26 + 4017: 68,-23 + 4040: 68,-15 + 4041: 68,-13 + 4042: 68,-14 + 4043: 67,-12 + 4044: 70,-12 + 4045: 70,-14 + 4046: 68,-11 + 4047: 71,-12 + 4048: 70,-14 + 4049: 70,-15 + 4050: 71,-13 + 4051: 69,-13 + 4052: 69,-12 + 4053: 68,-10 + 4054: 67,-10 + 4055: 68,-8 + 4056: 69,-8 + 4057: 70,-9 + 4058: 70,-10 + 4152: 39,-34 + 4153: 40,-34 + 4154: 39,-34 + 4155: 42,-34 + 4156: 40,-34 + 4157: 41,-33 + 4158: 34,-36 + 4159: 34,-35 + 4160: 35,-36 + 4161: 38,-37 + 4162: 43,-37 + 4163: 43,-37 + 4164: 46,-37 + 4165: 46,-35 + 4166: 46,-37 + 4167: 47,-37 + 4168: 48,-36 + 4169: 48,-37 + 4170: 46,-39 + 4171: 44,-39 + 4172: 41,-39 + 4173: 37,-39 + 4174: 35,-39 + 4175: 39,-38 + 4176: 33,-38 + 4469: -20,6 + 4470: -20,7 + 4471: -21,6 + 4472: -20,7 + 4473: -20,6 + 4474: -21,12 + 4475: -25,29 + 4476: -25,28 + 4477: -26,30 + 4478: -26,28 + 4479: -26,29 + 4503: -16,40 + 4504: -17,41 + 4505: -15,39 + 4506: -13,41 + 4507: -12,39 + 4558: -2,46 + 4559: -4,46 + 4560: -1,48 + 4561: 0,47 + 4562: -3,50 + 4563: 0,51 + 4564: 2,47 + 4565: 2,45 + 4566: 2,43 + 4567: 2,40 + 4568: -6,40 + 4569: -7,40 + 4570: -7,40 + 4571: -4,46 + 4572: -5,45 + 4573: -6,46 + 4574: 7,41 + 4575: 6,42 + 4576: 9,40 + 4577: 6,39 + 4578: 8,40 + 4579: 6,39 + 4580: 8,39 + 4581: 7,42 + 4582: 7,41 + 4583: 5,41 + 4614: 14,34 + 4615: 13,36 + 4616: 14,37 + 4617: 16,37 + 4618: 14,36 + 4619: 5,30 + 4620: 4,30 + 4621: 3,32 + 4622: 5,32 + 4623: 5,32 + 4624: 4,31 + 4625: 4,31 + 4626: 3,32 + 4627: 3,28 + 4628: 2,27 + 4629: 1,28 + 4630: 3,27 + 4631: 4,26 + 4632: 3,25 + 4633: 4,24 + 4634: 3,23 + 4635: 1,24 + 4636: 2,23 + 4654: -3,25 + 4655: -4,23 + 4656: -2,23 + 4657: -3,24 + 4658: 0,24 + 4659: 0,23 + 4660: -16,29 + 4661: -15,26 + 4662: -15,28 + 4663: -13,28 + 4664: -13,29 + 4665: -9,28 + 4666: -10,26 + 4667: -9,27 + 4668: -11,28 + 4669: -8,29 + 4670: -9,26 + 4671: -6,27 + 4672: -6,26 + 4673: -6,28 + 4674: -3,29 + 4675: -4,27 + 4676: -1,28 + 4677: -3,29 + 4678: -2,30 + 4679: -3,32 + 4680: -2,33 + 4681: -2,34 + 4682: -8,33 + 4683: -7,32 + 4684: -8,32 + 4685: -9,33 + 4686: -6,34 + 4687: -6,33 + 4688: -13,34 + 4756: -17,-28 + 4757: -19,-28 + 4758: -20,-27 + 4759: -20,-26 + 4760: -20,-27 + 4761: -15,-28 + 4762: -14,-28 + 4763: -14,-27 + 4764: -14,-29 + 4765: -17,-29 + 4821: -6,-37 + 4822: -5,-37 + 4823: -4,-37 + 5009: 78,-28 + 5010: 79,-28 + 5011: 78,-28 + 5012: 78,-27 + 5013: 78,-29 + 5075: 13,-45 + 5076: 12,-45 + 5077: 12,-50 + 5078: 12,-49 + 5079: 16,-49 + 5080: 15,-49 + 5864: 81,-34 + 5865: 82,-35 + 5866: 81,-35 + 5867: 81,-35 + 5893: -2,41 + 5894: -2,42 + 5895: -3,42 + 5896: -3,42 + 5897: -1,43 + 6105: 49,-1 + 6106: 51,-1 + 6107: 50,-2 + 6108: 49,-3 + 6109: 49,-5 + 6110: 51,-5 + 6111: 51,-3 + 6112: 50,-8 + 6113: 49,-8 + 6114: 48,-7 + 6115: 52,-8 + 6116: 54,-7 + 6117: 49,-10 + 6118: 50,-11 + 6119: 48,-11 + 6120: 51,-10 + 6121: 51,-11 + 6122: 52,-11 + 6123: 53,-11 + 6148: 50,2 + 6149: 50,4 + 6150: 50,9 + 6151: 50,12 + 6152: 50,13 + 6153: 47,9 + 6154: 47,7 + 6155: 41,8 + 6156: 41,7 + 6157: 40,8 + 6158: 40,7 + 6159: 44,8 + 6181: 46,4 + 6182: 45,4 + 6183: 46,2 + 6184: 45,2 + 6185: 45,1 + 6186: 46,5 + 6187: 40,5 + 6188: 44,4 + 6189: 44,7 + 6190: 55,3 + 6191: 54,2 + 6192: 53,3 + 6193: 55,4 + 6194: 57,4 + 6195: 56,2 + 6196: 55,1 + 6197: 55,6 + 6198: 53,7 + 6199: 53,6 + 6200: 55,8 + 6201: 56,10 + 6202: 55,10 + 6203: 53,12 + 6204: 53,11 + 6205: 57,14 + 6214: -1,-23 + 6215: 0,-23 + 6216: -4,-23 + 6217: -5,-23 + 6218: 35,19 + 6219: 34,19 + 6220: 35,20 + 6221: -8,27 + 6222: -12,27 + 6223: -10,27 + 6224: -14,27 + 6225: -15,27 + 6226: -15,27 + 6260: 88,-18 + 6261: 87,-18 + 6262: 91,-19 + 6263: 91,-18 + 6264: 92,-19 + 6343: 51,-36 + 6344: 51,-37 + 6345: 53,-39 + 6346: 54,-40 + 6347: 51,-35 + 6354: 51,-29 + 6360: 51,-26 + 6361: 52,-27 + 6377: -32,-12 + 6378: -34,-11 + 6379: -32,-10 + 6380: -33,-9 + 6381: -34,-9 + 6385: 61,-21 + 6386: -24,-42 + 6388: -25,-42 + 6389: -22,-42 + 6390: -22,-42 + 6397: -37,-45 + 6398: -38,-44 + 6399: -38,-46 + 6400: -37,-46 + 6489: 13,41 + 6490: 15,39 + 6491: 16,41 + 6527: 33,-2 + 6528: 34,-2 + 6529: 34,-2 + 6547: 7,-47 + 6640: -20,10 + 6641: -24,13 + 6705: -35,12 + 6706: -33,11 + 6707: -32,13 + 6708: -31,13 + 6709: -32,16 + 6710: -34,16 + 6711: -34,17 + 6712: -32,17 + 6713: -30,17 + 6714: -29,16 + 6715: -29,13 + 6716: -29,11 + 6717: -32,12 + 6718: -37,14 + 6719: -38,13 + 6720: -39,14 + 6730: -35,17 + 6731: -35,11 + 6732: -34,11 + 6733: -31,11 + 6734: -30,11 + 6735: -33,16 + 6736: -38,10 + 6737: -29,15 + 6738: -29,15 + 6739: -29,16 + 6740: -29,17 + 6741: -32,17 + 6784: 44,11 + 6785: 45,12 + 6786: 44,14 + 6787: 43,15 + 6788: 44,16 + 6789: 47,14 + 6790: 41,12 + 6791: 41,13 + 6792: 41,11 + 6793: 41,11 + 6794: 47,11 + 6795: 47,12 + 6807: 44,15 + 6808: 44,15 + 6848: 58,-7 + 6849: 59,-6 + 6850: 58,-5 + 6851: 60,-5 + 6852: 60,-6 + 6853: 60,-7 + 6854: 60,-6 + 6867: 59,-4 + 6868: 58,-4 + 6869: 58,-4 + 6874: -15,-37 + 6875: -14,-37 + 6881: -11,-37 + 6882: -11,-38 + 6886: -33,1 + 6887: -33,1 + 6889: -43,1 + 6890: -46,1 + 6906: 52,-21 + 6907: 56,-21 + 6908: 57,-23 + 6909: 56,-24 + 6910: 57,-24 + 6911: 57,-22 + 6919: 53,-22 + 6927: 66,-25 + 6928: 66,-24 + 6929: 66,-24 + 6930: 54,-24 + 6931: 53,-24 + 6932: 52,-24 + 6933: 52,-24 + 6937: 79,-7 + 6945: 53,-23 + 6950: 57,2 + 6951: 57,3 + 6952: 48,3 + 6953: 3,-22 + 6954: 16,23 + 6955: 16,25 + 6962: -34,-3 + 6963: -34,-4 + 6964: -33,-5 + 6965: -32,-5 + 6970: -31,-5 + 6975: -36,3 + 6976: -33,3 + 6977: -35,-1 + 6978: -36,-5 + 6979: -29,-5 + 6980: -34,3 + 6981: -34,2 + 6982: -34,1 + 6983: -30,1 + 6984: -38,2 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2895: -44,17 - 6386: 13,-30 - 6387: 16,-30 - 6388: 12,-30 - 6389: 12,-30 + 2848: -44,17 + 6311: 13,-30 + 6312: 16,-30 + 6313: 12,-30 + 6314: 12,-30 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 6361: 89,-21 - 6362: 90,-20 + 6286: 89,-21 + 6287: 90,-20 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 6280: 57,4 - 6281: 57,2 - 6282: 54,3 - 6283: 56,1 - 6284: 49,-15 - 6285: 52,-15 - 6286: 43,4 - 6471: -36,-44 - 6567: 14,42 - 6568: 14,40 - 6569: 16,42 - 6796: -34,13 - 6797: -32,13 - 6798: -31,15 - 6799: -30,16 - 6800: -29,11 - 6801: -35,13 - 6802: -33,13 - 6878: 44,13 - 6879: 46,13 - 6880: 46,12 - 6881: 42,11 - 6930: 57,-4 - 6931: 57,-6 - 6932: 61,-7 - 6933: 61,-5 - 6951: -15,-38 - 6952: -13,-37 - 6953: -13,-38 - 6987: 54,-21 - 6988: 56,-21 - 6989: 58,-21 - 6990: 58,-23 - 6991: 57,-24 - 7021: 54,-23 + 6206: 57,4 + 6207: 54,3 + 6208: 56,1 + 6209: 49,-15 + 6210: 52,-15 + 6211: 43,4 + 6396: -36,-44 + 6492: 14,42 + 6493: 14,40 + 6494: 16,42 + 6721: -34,13 + 6722: -32,13 + 6723: -31,15 + 6724: -30,16 + 6725: -29,11 + 6726: -35,13 + 6727: -33,13 + 6803: 44,13 + 6804: 46,13 + 6805: 46,12 + 6806: 42,11 + 6855: 57,-4 + 6856: 57,-6 + 6857: 61,-7 + 6858: 61,-5 + 6876: -15,-38 + 6877: -13,-37 + 6878: -13,-38 + 6912: 54,-21 + 6913: 56,-21 + 6914: 58,-21 + 6915: 58,-23 + 6916: 57,-24 + 6946: 54,-23 + 6968: -31,-5 + 6969: -31,-5 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 2894: -44,16 + 2847: -44,16 - node: cleanable: True color: '#FFFFFF47' id: DirtMedium decals: - 6394: 11,-29 - 6395: 11,-29 + 6319: 11,-29 + 6320: 11,-29 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 6364: 91,-21 - 6365: 90,-21 + 6289: 91,-21 + 6290: 90,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 3806: -16,11 - 3807: -17,12 - 6430: 52,-30 - 6457: -32,-9 - 6458: -34,-12 - 6470: -36,-46 - 6570: 13,39 - 6571: 13,42 - 6572: 16,40 - 6573: 13,38 - 6574: 13,38 - 6624: 9,-47 - 6714: -33,15 - 6803: -30,13 - 6804: -38,14 - 6873: 42,12 - 6874: 42,13 - 6875: 46,11 - 6876: 47,13 - 6877: 46,14 - 6934: 60,-8 - 6935: 61,-8 - 6936: 61,-8 - 6937: 57,-8 - 6938: 58,-8 - 6954: -14,-38 - 6955: -12,-39 - 6992: 52,-21 - 6993: 57,-22 + 3748: -16,11 + 3749: -17,12 + 6355: 52,-30 + 6382: -32,-9 + 6383: -34,-12 + 6395: -36,-46 + 6495: 13,39 + 6496: 13,42 + 6497: 16,40 + 6498: 13,38 + 6499: 13,38 + 6549: 9,-47 + 6639: -33,15 + 6728: -30,13 + 6729: -38,14 + 6798: 42,12 + 6799: 42,13 + 6800: 46,11 + 6801: 47,13 + 6802: 46,14 + 6859: 60,-8 + 6860: 61,-8 + 6861: 61,-8 + 6862: 57,-8 + 6863: 58,-8 + 6879: -14,-38 + 6880: -12,-39 + 6917: 52,-21 + 6918: 57,-22 + 6966: -33,-3 + 6967: -34,-4 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 2893: -44,15 + 2846: -44,15 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 855: -47,-2 - 882: -50,-7 + 826: -47,-2 + 853: -50,-7 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 541: -30,5 + 512: -30,5 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBRThree decals: - 2922: 80.70172,-6.173584 + 2875: 80.70172,-6.173584 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 562: -24,6 - 853: -45,4 + 533: -24,6 + 824: -45,4 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 886: -45,-7 - 907: -49,-29 - 1448: -51,-49 + 857: -45,-7 + 878: -49,-29 + 1418: -51,-49 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1083: 42,-31 + 1054: 42,-31 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 854: -49,-2 - 887: -51,-7 - 1449: -49,-49 + 825: -49,-2 + 858: -51,-7 + 1419: -49,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 2923: 80.04127,-7.0725327 + 2876: 80.04127,-7.0725327 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 540: -39,6 - 561: -24,4 - 884: -48,-9 - 1082: 42,-30 - 1695: 57,18 + 511: -39,6 + 532: -24,4 + 855: -48,-9 + 1053: 42,-30 + 1665: 57,18 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 539: -38,5 - 885: -45,-9 - 908: -48,-30 - 1450: -46,-49 + 510: -38,5 + 856: -45,-9 + 879: -48,-30 + 1420: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy2 decals: - 2924: 81.08699,-7.6962934 + 2877: 81.08699,-7.6962934 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 852: -50,4 - 883: -47,-7 - 2142: 25,1 + 823: -50,4 + 854: -47,-7 + 2112: 25,1 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 542: -28,7 - 1678: 59,19 + 513: -28,7 + 1648: 59,19 - node: cleanable: True color: '#FFFFFFFF' id: Grassa2 decals: - 2912: 80,-6 + 2865: 80,-6 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 874: -51,-7 + 845: -51,-7 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 1442: -47,-49 + 1412: -47,-49 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2911: 80,-8 + 2864: 80,-8 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 873: -49,-7 - 1443: -45,-49 + 844: -49,-7 + 1413: -45,-49 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 877: -45,-8 + 848: -45,-8 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 912: -49,-28 - 1679: 60,19 + 883: -49,-28 + 1649: 60,19 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 875: -51,-8 - 876: -45,-7 + 846: -51,-8 + 847: -45,-7 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 872: -48,-9 - 1441: -50,-49 + 843: -48,-9 + 1411: -50,-49 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 878: -50,-9 + 849: -50,-9 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 871: -46,-8 + 842: -46,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc1 decals: - 2914: 79.637665,-6.118546 + 2867: 79.637665,-6.118546 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 870: -47,-7 + 841: -47,-7 - node: cleanable: True color: '#FFFFFFFF' id: Grassc2 decals: - 2915: 81.362175,-7.1642623 + 2868: 81.362175,-7.1642623 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 868: -51,-9 - 869: -49,-8 + 839: -51,-9 + 840: -49,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc4 decals: - 2913: 79.56428,-7.366067 + 2866: 79.56428,-7.366067 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 864: -50,-8 - 867: -47,-9 + 835: -50,-8 + 838: -47,-9 - node: cleanable: True color: '#FFFFFFFF' id: Grassd1 decals: - 2916: 79.14232,-8.063211 + 2869: 79.14232,-8.063211 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 866: -45,-9 + 837: -45,-9 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 865: -48,-7 - 910: -48,-27 + 836: -48,-7 + 881: -48,-27 - node: cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 2917: 79.05059,-6.320351 - 2918: 80.53661,-6.6872687 + 2870: 79.05059,-6.320351 + 2871: 80.53661,-6.6872687 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 863: -46,-7 - 911: -47,-28 + 834: -46,-7 + 882: -47,-28 - node: cleanable: True color: '#FFFFFFFF' id: Grasse1 decals: - 2921: 81.784134,-6.4304266 + 2874: 81.784134,-6.4304266 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 2919: 80.518265,-8.02652 + 2872: 80.518265,-8.02652 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 862: -50,-7 - 909: -47,-30 - 1696: 57,19 + 833: -50,-7 + 880: -47,-30 + 1666: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Grasse3 decals: - 2920: 80.72007,-6.0451627 + 2873: 80.72007,-6.0451627 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 6013: 44,7 + 5940: 44,7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1162: 4,30 - 1163: 5,30 + 1133: 4,30 + 1134: 5,30 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -6852,35 +6844,35 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 1000: 39,-35 - 1001: 36,-36 - 1002: 37,-36 - 1003: 38,-36 - 1004: 39,-36 - 1005: 40,-36 - 1006: 42,-36 - 1007: 41,-36 - 1008: 43,-36 - 1009: 44,-36 - 1012: 38,-35 - 1013: 37,-35 - 1014: 36,-35 - 1015: 41,-35 - 1016: 40,-35 - 1017: 42,-35 - 1018: 43,-35 - 1019: 44,-35 + 971: 39,-35 + 972: 36,-36 + 973: 37,-36 + 974: 38,-36 + 975: 39,-36 + 976: 40,-36 + 977: 42,-36 + 978: 41,-36 + 979: 43,-36 + 980: 44,-36 + 983: 38,-35 + 984: 37,-35 + 985: 36,-35 + 986: 41,-35 + 987: 40,-35 + 988: 42,-35 + 989: 43,-35 + 990: 44,-35 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 6014: 44,9 + 5941: 44,9 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 1164: 4,32 - 1165: 5,32 + 1135: 4,32 + 1136: 5,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -6892,12 +6884,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 6015: 45,8 + 5942: 45,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 1161: 6,31 + 1132: 6,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -6907,12 +6899,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 6016: 43,8 + 5943: 43,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1160: 3,31 + 1131: 3,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -6929,8 +6921,8 @@ entities: color: '#EFB341FF' id: LoadingArea decals: - 168: -8,-28 - 287: 19,-23 + 167: -8,-28 + 285: 19,-23 - node: angle: 1.5707963267948966 rad color: '#EFB341FF' @@ -6943,1296 +6935,1285 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 6353: 89,-20 - 6354: 90,-20 + 6278: 89,-20 + 6279: 90,-20 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2075: -4,-36 - 2093: -56,-59 - 2094: -56,-66 - 6974: 58,-24 - 6975: 58,-23 + 2045: -4,-36 + 2063: -56,-59 + 2064: -56,-66 + 6899: 58,-24 + 6900: 58,-23 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 352: 39,-22 - 3045: 25,22 - 3046: 29,22 - 5950: -44,24 - 6817: 44,11 + 350: 39,-22 + 2998: 25,22 + 2999: 29,22 + 5877: -44,24 + 6742: 44,11 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2109: -40,-59 - 2110: -40,-66 - 5951: -45,23 + 2079: -40,-59 + 2080: -40,-66 + 5878: -45,23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 351: 45,-22 - 1710: 63,-26 - 5952: -44,22 + 349: 45,-22 + 1680: 63,-26 + 5879: -44,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1246: 23,12 - 5953: -43,23 + 1217: 23,12 + 5880: -43,23 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 2127: 13,25 - 2128: 14,25 - 2129: 15,25 - 2130: 15,24 - 2131: 15,23 - 2132: 14,23 - 2133: 14,24 - 2134: 13,24 - 2135: 13,23 + 2097: 13,25 + 2098: 14,25 + 2099: 15,25 + 2100: 15,24 + 2101: 15,23 + 2102: 14,23 + 2103: 14,24 + 2104: 13,24 + 2105: 13,23 - node: color: '#EFB34196' id: MiniTileCheckerBOverlay decals: - 6836: 42,11 - 6837: 42,12 - 6838: 46,11 - 6839: 46,12 + 6761: 42,11 + 6762: 42,12 + 6763: 46,11 + 6764: 46,12 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 6498: 9,39 - 6499: 9,40 - 6500: 9,41 - 6501: 9,42 + 6423: 9,39 + 6424: 9,40 + 6425: 9,41 + 6426: 9,42 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 547: -24,20 - 548: -23,20 - 549: -22,20 - 550: -21,20 - 551: -20,20 + 518: -24,20 + 519: -23,20 + 520: -22,20 + 521: -21,20 + 522: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3152: -19,20 + 3105: -19,20 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 552: -24,18 - 553: -23,18 - 554: -22,18 - 555: -20,18 - 556: -21,18 - 557: -19,18 + 523: -24,18 + 524: -23,18 + 525: -22,18 + 526: -20,18 + 527: -21,18 + 528: -19,18 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 6502: 5,39 - 6503: 5,40 - 6504: 5,41 - 6505: 5,42 + 6427: 5,39 + 6428: 5,40 + 6429: 5,41 + 6430: 5,42 - node: color: '#C6FF917F' id: MiniTileInnerOverlayNW decals: - 6726: -29,12 + 6651: -29,12 - node: color: '#C6FF917F' id: MiniTileLineOverlayE decals: - 6718: -35,13 - 6719: -35,14 - 6720: -35,15 + 6643: -35,13 + 6644: -35,14 + 6645: -35,15 - node: color: '#C6FF917F' id: MiniTileLineOverlayN decals: - 6717: -32,12 + 6642: -32,12 - node: color: '#C6FF917F' id: MiniTileLineOverlayS decals: - 6721: -32,16 - 6722: -31,16 - 6723: -30,16 + 6646: -32,16 + 6647: -31,16 + 6648: -30,16 - node: color: '#C6FF917F' id: MiniTileLineOverlayW decals: - 6724: -29,13 - 6725: -29,14 + 6649: -29,13 + 6650: -29,14 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNe decals: - 2312: -43,-25 - 2398: -40,-46 + 2282: -43,-25 + 2368: -40,-46 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNw decals: - 2213: -26,-9 - 2256: -55,7 - 2397: -56,-46 - 2498: 27,-19 - 2704: -27,21 + 2183: -26,-9 + 2226: -55,7 + 2367: -56,-46 + 2468: 27,-19 + 2674: -27,21 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSe decals: - 2201: -23,-11 - 2324: -46,-33 - 2328: -43,-32 + 2171: -23,-11 + 2294: -46,-33 + 2298: -43,-32 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSw decals: - 2320: -52,-32 - 2323: -50,-33 - 2474: 7,-34 - 2574: 40,1 - 2603: 19,2 + 2290: -52,-32 + 2293: -50,-33 + 2444: 7,-34 + 2544: 40,1 + 2573: 19,2 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNe decals: - 2176: -23,-30 - 2225: -25,9 - 2313: -44,-25 - 2443: -28,-30 - 2722: 77,-19 - 2723: 77,-15 + 2146: -23,-30 + 2195: -25,9 + 2283: -44,-25 + 2413: -28,-30 + 2692: 77,-19 + 2693: 77,-15 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNw decals: - 2214: -25,-9 - 2442: -41,-30 - 2490: 27,-25 - 2542: 57,-19 + 2184: -25,-9 + 2412: -41,-30 + 2460: 27,-25 + 2512: 57,-19 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSe decals: - 2200: -24,-11 - 2325: -46,-32 - 2331: -47,-33 - 2396: -54,-48 - 2441: -28,-27 - 2546: 59,-21 - 2720: 77,-13 - 2721: 77,-17 + 2170: -24,-11 + 2295: -46,-32 + 2301: -47,-33 + 2366: -54,-48 + 2411: -28,-27 + 2516: 59,-21 + 2690: 77,-13 + 2691: 77,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSw decals: - 2322: -50,-32 - 2332: -49,-33 - 2395: -42,-48 - 2440: -41,-27 - 2472: 7,-32 - 2573: 41,1 - 2575: 40,2 - 2643: 19,19 - 6968: 56,-21 + 2292: -50,-32 + 2302: -49,-33 + 2365: -42,-48 + 2410: -41,-27 + 2442: 7,-32 + 2543: 41,1 + 2545: 40,2 + 2613: 19,19 + 6893: 56,-21 - node: color: '#9D9D97FF' id: MiniTileWhiteLineE decals: - 2177: -23,-29 - 2178: -24,-25 - 2179: -24,-24 - 2180: -24,-23 - 2181: -24,-23 - 2182: -24,-20 - 2183: -24,-20 - 2184: -24,-20 - 2185: -24,-21 - 2186: -24,-21 - 2187: -24,-20 - 2188: -24,-19 - 2189: -24,-19 - 2190: -24,-19 - 2191: -24,-17 - 2192: -24,-17 - 2193: -24,-16 - 2194: -24,-16 - 2195: -24,-16 - 2196: -24,-15 - 2197: -24,-14 - 2198: -24,-14 - 2199: -24,-13 - 2202: -23,-10 - 2203: -23,-9 - 2204: -23,-8 - 2215: -25,4 - 2216: -25,5 - 2217: -25,6 - 2218: -25,7 - 2230: -43,0 - 2231: -43,2 - 2232: -43,3 - 2233: -43,-1 - 2272: -53,-6 - 2273: -53,-7 - 2274: -53,-7 - 2275: -53,-8 - 2276: -53,-9 - 2277: -53,-9 - 2278: -53,-10 - 2279: -53,-12 - 2287: -53,-13 - 2288: -53,-13 - 2289: -53,-15 - 2290: -53,-15 - 2291: -53,-15 - 2293: -53,-14 - 2294: -53,-16 - 2295: -53,-17 - 2296: -53,-18 - 2302: -44,-20 - 2303: -44,-21 - 2304: -44,-22 - 2305: -44,-22 - 2306: -44,-23 - 2307: -44,-23 - 2308: -44,-24 - 2309: -43,-25 - 2310: -43,-26 - 2311: -43,-27 - 2329: -43,-31 - 2330: -43,-30 - 2335: -47,-35 - 2336: -47,-36 - 2337: -47,-36 - 2338: -47,-38 - 2339: -47,-39 - 2340: -47,-40 - 2351: -47,-41 - 2352: -47,-42 - 2353: -47,-42 - 2354: -47,-43 - 2355: -47,-44 - 2356: -47,-44 - 2407: -40,-47 - 2408: -40,-48 - 2409: -40,-50 - 2410: -40,-50 - 2411: -40,-51 - 2412: -40,-51 - 2413: -40,-51 - 2414: -40,-52 - 2415: -40,-53 - 2416: -40,-53 - 2417: -40,-53 - 2418: -40,-54 - 2419: -54,-51 - 2420: -54,-51 - 2421: -54,-52 - 2422: -54,-52 - 2423: -54,-53 - 2424: -54,-53 - 2425: -54,-54 - 2436: -28,-29 - 2437: -28,-28 - 2547: 59,-22 - 2548: 43,-17 - 2549: 43,-16 - 2550: 43,-15 - 2551: 43,-15 - 2557: 43,-12 - 2558: 43,-11 - 2623: 21,10 - 2624: 21,11 - 2625: 21,11 - 2626: 21,12 - 2627: 21,12 - 2628: 21,12 - 2629: 21,13 - 2630: 21,14 - 2631: 21,15 - 2718: 77,-14 - 2719: 77,-18 - 3044: -54,-50 - 6587: -24,-18 - 6963: -43,1 + 2147: -23,-29 + 2148: -24,-25 + 2149: -24,-24 + 2150: -24,-23 + 2151: -24,-23 + 2152: -24,-20 + 2153: -24,-20 + 2154: -24,-20 + 2155: -24,-21 + 2156: -24,-21 + 2157: -24,-20 + 2158: -24,-19 + 2159: -24,-19 + 2160: -24,-19 + 2161: -24,-17 + 2162: -24,-17 + 2163: -24,-16 + 2164: -24,-16 + 2165: -24,-16 + 2166: -24,-15 + 2167: -24,-14 + 2168: -24,-14 + 2169: -24,-13 + 2172: -23,-10 + 2173: -23,-9 + 2174: -23,-8 + 2185: -25,4 + 2186: -25,5 + 2187: -25,6 + 2188: -25,7 + 2200: -43,0 + 2201: -43,2 + 2202: -43,3 + 2203: -43,-1 + 2242: -53,-6 + 2243: -53,-7 + 2244: -53,-7 + 2245: -53,-8 + 2246: -53,-9 + 2247: -53,-9 + 2248: -53,-10 + 2249: -53,-12 + 2257: -53,-13 + 2258: -53,-13 + 2259: -53,-15 + 2260: -53,-15 + 2261: -53,-15 + 2263: -53,-14 + 2264: -53,-16 + 2265: -53,-17 + 2266: -53,-18 + 2272: -44,-20 + 2273: -44,-21 + 2274: -44,-22 + 2275: -44,-22 + 2276: -44,-23 + 2277: -44,-23 + 2278: -44,-24 + 2279: -43,-25 + 2280: -43,-26 + 2281: -43,-27 + 2299: -43,-31 + 2300: -43,-30 + 2305: -47,-35 + 2306: -47,-36 + 2307: -47,-36 + 2308: -47,-38 + 2309: -47,-39 + 2310: -47,-40 + 2321: -47,-41 + 2322: -47,-42 + 2323: -47,-42 + 2324: -47,-43 + 2325: -47,-44 + 2326: -47,-44 + 2377: -40,-47 + 2378: -40,-48 + 2379: -40,-50 + 2380: -40,-50 + 2381: -40,-51 + 2382: -40,-51 + 2383: -40,-51 + 2384: -40,-52 + 2385: -40,-53 + 2386: -40,-53 + 2387: -40,-53 + 2388: -40,-54 + 2389: -54,-51 + 2390: -54,-51 + 2391: -54,-52 + 2392: -54,-52 + 2393: -54,-53 + 2394: -54,-53 + 2395: -54,-54 + 2406: -28,-29 + 2407: -28,-28 + 2517: 59,-22 + 2518: 43,-17 + 2519: 43,-16 + 2520: 43,-15 + 2521: 43,-15 + 2527: 43,-12 + 2528: 43,-11 + 2593: 21,10 + 2594: 21,11 + 2595: 21,11 + 2596: 21,12 + 2597: 21,12 + 2598: 21,12 + 2599: 21,13 + 2600: 21,14 + 2601: 21,15 + 2688: 77,-14 + 2689: 77,-18 + 2997: -54,-50 + 6512: -24,-18 + 6888: -43,1 - node: color: '#9D9D97FF' id: MiniTileWhiteLineN decals: - 2170: -22,-30 - 2171: -21,-30 - 2172: -20,-30 - 2173: -20,-30 - 2174: -18,-30 - 2175: -19,-30 - 2219: -19,9 - 2220: -20,9 - 2221: -21,9 - 2222: -22,9 - 2223: -24,9 - 2224: -23,9 - 2243: -51,7 - 2244: -50,7 - 2245: -49,7 - 2246: -48,7 - 2247: -47,7 - 2248: -47,7 - 2249: -46,7 - 2250: -45,7 - 2251: -42,7 - 2252: -43,7 - 2253: -54,7 - 2254: -55,7 - 2255: -53,7 - 2357: -54,-46 - 2358: -51,-46 - 2359: -50,-46 - 2360: -50,-46 - 2361: -51,-46 - 2362: -53,-46 - 2363: -54,-46 - 2364: -54,-46 - 2365: -53,-46 - 2366: -52,-46 - 2367: -54,-46 - 2368: -55,-46 - 2369: -46,-46 - 2370: -45,-46 - 2371: -45,-46 - 2372: -44,-46 - 2373: -44,-46 - 2374: -43,-46 - 2375: -43,-46 - 2376: -42,-46 - 2377: -42,-46 - 2378: -41,-46 - 2462: -11,-30 - 2463: -10,-30 - 2464: -10,-30 - 2488: 25,-25 - 2489: 26,-25 - 2499: 28,-19 - 2500: 29,-19 - 2501: 29,-19 - 2502: 31,-19 - 2503: 31,-19 - 2504: 32,-19 - 2505: 32,-19 - 2506: 32,-19 - 2507: 34,-19 - 2508: 34,-19 - 2509: 34,-19 - 2510: 33,-19 - 2511: 35,-19 - 2512: 35,-19 - 2513: 36,-19 - 2514: 36,-19 - 2515: 37,-19 - 2516: 37,-19 - 2517: 39,-19 - 2518: 39,-19 - 2519: 40,-19 - 2520: 40,-19 - 2521: 40,-19 - 2522: 41,-19 - 2523: 42,-19 - 2524: 42,-19 - 2525: 43,-19 - 2526: 44,-19 - 2527: 44,-19 - 2528: 45,-19 - 2529: 47,-19 - 2530: 47,-19 - 2531: 48,-19 - 2532: 49,-19 - 2533: 49,-19 - 2534: 50,-19 - 2535: 51,-19 - 2536: 52,-19 - 2537: 52,-19 - 2538: 54,-19 - 2539: 55,-19 - 2540: 56,-19 - 2541: 53,-19 - 2580: 37,4 - 2581: 35,4 - 2582: 34,4 - 2583: 33,4 - 2584: 32,4 - 2585: 32,4 - 2586: 31,4 - 2646: 20,21 - 2647: 19,21 - 2648: 19,21 - 2649: 18,21 - 2650: 16,21 - 2651: 16,21 - 2652: 16,21 - 2653: 16,21 - 2654: 15,21 - 2655: 13,21 - 2656: 13,21 - 2657: 12,21 - 2658: 11,21 - 2659: 10,21 - 2660: 10,21 - 2661: 9,21 - 2662: 8,21 - 2701: -26,21 - 2711: 66,-17 - 2712: 68,-17 - 2713: 67,-17 - 2714: 69,-17 - 2715: 70,-17 - 2716: 70,-17 - 2717: 71,-17 + 2140: -22,-30 + 2141: -21,-30 + 2142: -20,-30 + 2143: -20,-30 + 2144: -18,-30 + 2145: -19,-30 + 2189: -19,9 + 2190: -20,9 + 2191: -21,9 + 2192: -22,9 + 2193: -24,9 + 2194: -23,9 + 2213: -51,7 + 2214: -50,7 + 2215: -49,7 + 2216: -48,7 + 2217: -47,7 + 2218: -47,7 + 2219: -46,7 + 2220: -45,7 + 2221: -42,7 + 2222: -43,7 + 2223: -54,7 + 2224: -55,7 + 2225: -53,7 + 2327: -54,-46 + 2328: -51,-46 + 2329: -50,-46 + 2330: -50,-46 + 2331: -51,-46 + 2332: -53,-46 + 2333: -54,-46 + 2334: -54,-46 + 2335: -53,-46 + 2336: -52,-46 + 2337: -54,-46 + 2338: -55,-46 + 2339: -46,-46 + 2340: -45,-46 + 2341: -45,-46 + 2342: -44,-46 + 2343: -44,-46 + 2344: -43,-46 + 2345: -43,-46 + 2346: -42,-46 + 2347: -42,-46 + 2348: -41,-46 + 2432: -11,-30 + 2433: -10,-30 + 2434: -10,-30 + 2458: 25,-25 + 2459: 26,-25 + 2469: 28,-19 + 2470: 29,-19 + 2471: 29,-19 + 2472: 31,-19 + 2473: 31,-19 + 2474: 32,-19 + 2475: 32,-19 + 2476: 32,-19 + 2477: 34,-19 + 2478: 34,-19 + 2479: 34,-19 + 2480: 33,-19 + 2481: 35,-19 + 2482: 35,-19 + 2483: 36,-19 + 2484: 36,-19 + 2485: 37,-19 + 2486: 37,-19 + 2487: 39,-19 + 2488: 39,-19 + 2489: 40,-19 + 2490: 40,-19 + 2491: 40,-19 + 2492: 41,-19 + 2493: 42,-19 + 2494: 42,-19 + 2495: 43,-19 + 2496: 44,-19 + 2497: 44,-19 + 2498: 45,-19 + 2499: 47,-19 + 2500: 47,-19 + 2501: 48,-19 + 2502: 49,-19 + 2503: 49,-19 + 2504: 50,-19 + 2505: 51,-19 + 2506: 52,-19 + 2507: 52,-19 + 2508: 54,-19 + 2509: 55,-19 + 2510: 56,-19 + 2511: 53,-19 + 2550: 37,4 + 2551: 35,4 + 2552: 34,4 + 2553: 33,4 + 2554: 32,4 + 2555: 32,4 + 2556: 31,4 + 2616: 20,21 + 2617: 19,21 + 2618: 19,21 + 2619: 18,21 + 2620: 16,21 + 2621: 16,21 + 2622: 16,21 + 2623: 16,21 + 2624: 15,21 + 2625: 13,21 + 2626: 13,21 + 2627: 12,21 + 2628: 11,21 + 2629: 10,21 + 2630: 10,21 + 2631: 9,21 + 2632: 8,21 + 2671: -26,21 + 2681: 66,-17 + 2682: 68,-17 + 2683: 67,-17 + 2684: 69,-17 + 2685: 70,-17 + 2686: 70,-17 + 2687: 71,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteLineS decals: - 2160: -25,-32 - 2161: -23,-32 - 2162: -24,-32 - 2163: -22,-32 - 2164: -22,-32 - 2165: -21,-32 - 2166: -19,-32 - 2167: -19,-32 - 2168: -18,-32 - 2169: -18,-32 - 2234: -45,-5 - 2235: -46,-5 - 2236: -47,-5 - 2237: -48,-5 - 2238: -48,-5 - 2239: -50,-5 - 2240: -50,-5 - 2241: -49,-5 - 2242: -51,-5 - 2321: -51,-32 - 2326: -45,-32 - 2327: -44,-32 - 2379: -53,-48 - 2380: -52,-48 - 2381: -51,-48 - 2382: -50,-48 - 2383: -50,-48 - 2384: -49,-48 - 2385: -50,-48 - 2386: -50,-48 - 2387: -48,-48 - 2388: -48,-48 - 2389: -47,-48 - 2390: -47,-48 - 2391: -46,-48 - 2392: -45,-48 - 2393: -44,-48 - 2394: -43,-48 - 2444: -16,-32 - 2445: -14,-32 - 2446: -14,-32 - 2447: -14,-32 - 2448: -15,-32 - 2449: -14,-32 - 2450: -14,-32 - 2451: -13,-32 - 2452: -12,-32 - 2453: -12,-32 - 2454: -11,-32 - 2455: -11,-32 - 2456: -10,-32 - 2457: -10,-32 - 2458: -7,-32 - 2459: -6,-32 - 2460: -5,-32 - 2461: -5,-32 - 2465: -4,-32 - 2466: -3,-32 - 2467: -3,-32 - 2468: -3,-32 - 2469: -2,-32 - 2470: 3,-32 - 2471: 6,-32 - 2475: 8,-34 - 2476: 9,-34 - 2477: 9,-34 - 2478: 11,-34 - 2479: 11,-34 - 2480: 12,-34 - 2481: 12,-34 - 2482: 13,-34 - 2483: 13,-34 - 2484: 14,-34 - 2485: 15,-34 - 2486: 15,-34 - 2487: 16,-34 - 2545: 60,-21 - 2576: 38,2 - 2577: 36,2 - 2578: 37,2 - 2579: 38,2 - 2587: 34,2 - 2588: 33,2 - 2589: 32,2 - 2590: 31,2 - 2591: 31,2 - 2592: 27,2 - 2593: 26,2 - 2594: 26,2 - 2595: 25,2 - 2596: 24,2 - 2597: 23,2 - 2598: 23,2 - 2599: 21,2 - 2600: 21,2 - 2601: 22,2 - 2602: 20,2 - 2644: 18,19 - 2645: 16,19 - 2663: 14,19 - 2664: 13,19 - 2665: 12,19 - 2666: 11,19 - 2667: 10,19 - 2668: 10,19 - 2669: 9,19 - 2670: 9,19 - 2671: 8,19 - 2672: 6,19 - 2673: 6,19 - 2674: 7,19 - 2675: 5,19 - 2676: 0,19 - 2677: 0,19 - 2678: -1,19 - 2679: -1,19 - 2680: -2,19 - 2681: -3,19 - 2682: -3,19 - 2683: -4,19 - 2684: -5,19 - 2685: -6,19 - 2686: -6,19 - 2687: -7,19 - 2688: -7,19 - 2689: -8,19 - 2690: -8,19 - 2691: -8,19 - 2692: -11,19 - 2693: -11,19 - 2694: -13,19 - 2695: -13,19 - 2696: -14,19 - 2697: -12,19 - 2698: -16,19 - 2699: -16,19 - 2700: -18,19 - 2705: 66,-19 - 2706: 67,-19 - 2707: 68,-19 - 2708: 69,-19 - 2709: 70,-19 - 2710: 71,-19 - 2941: 1,19 - 2942: 2,19 - 6969: 54,-21 - 6970: 55,-21 - 6971: 53,-21 - 6972: 52,-21 + 2130: -25,-32 + 2131: -23,-32 + 2132: -24,-32 + 2133: -22,-32 + 2134: -22,-32 + 2135: -21,-32 + 2136: -19,-32 + 2137: -19,-32 + 2138: -18,-32 + 2139: -18,-32 + 2204: -45,-5 + 2205: -46,-5 + 2206: -47,-5 + 2207: -48,-5 + 2208: -48,-5 + 2209: -50,-5 + 2210: -50,-5 + 2211: -49,-5 + 2212: -51,-5 + 2291: -51,-32 + 2296: -45,-32 + 2297: -44,-32 + 2349: -53,-48 + 2350: -52,-48 + 2351: -51,-48 + 2352: -50,-48 + 2353: -50,-48 + 2354: -49,-48 + 2355: -50,-48 + 2356: -50,-48 + 2357: -48,-48 + 2358: -48,-48 + 2359: -47,-48 + 2360: -47,-48 + 2361: -46,-48 + 2362: -45,-48 + 2363: -44,-48 + 2364: -43,-48 + 2414: -16,-32 + 2415: -14,-32 + 2416: -14,-32 + 2417: -14,-32 + 2418: -15,-32 + 2419: -14,-32 + 2420: -14,-32 + 2421: -13,-32 + 2422: -12,-32 + 2423: -12,-32 + 2424: -11,-32 + 2425: -11,-32 + 2426: -10,-32 + 2427: -10,-32 + 2428: -7,-32 + 2429: -6,-32 + 2430: -5,-32 + 2431: -5,-32 + 2435: -4,-32 + 2436: -3,-32 + 2437: -3,-32 + 2438: -3,-32 + 2439: -2,-32 + 2440: 3,-32 + 2441: 6,-32 + 2445: 8,-34 + 2446: 9,-34 + 2447: 9,-34 + 2448: 11,-34 + 2449: 11,-34 + 2450: 12,-34 + 2451: 12,-34 + 2452: 13,-34 + 2453: 13,-34 + 2454: 14,-34 + 2455: 15,-34 + 2456: 15,-34 + 2457: 16,-34 + 2515: 60,-21 + 2546: 38,2 + 2547: 36,2 + 2548: 37,2 + 2549: 38,2 + 2557: 34,2 + 2558: 33,2 + 2559: 32,2 + 2560: 31,2 + 2561: 31,2 + 2562: 27,2 + 2563: 26,2 + 2564: 26,2 + 2565: 25,2 + 2566: 24,2 + 2567: 23,2 + 2568: 23,2 + 2569: 21,2 + 2570: 21,2 + 2571: 22,2 + 2572: 20,2 + 2614: 18,19 + 2615: 16,19 + 2633: 14,19 + 2634: 13,19 + 2635: 12,19 + 2636: 11,19 + 2637: 10,19 + 2638: 10,19 + 2639: 9,19 + 2640: 9,19 + 2641: 8,19 + 2642: 6,19 + 2643: 6,19 + 2644: 7,19 + 2645: 5,19 + 2646: 0,19 + 2647: 0,19 + 2648: -1,19 + 2649: -1,19 + 2650: -2,19 + 2651: -3,19 + 2652: -3,19 + 2653: -4,19 + 2654: -5,19 + 2655: -6,19 + 2656: -6,19 + 2657: -7,19 + 2658: -7,19 + 2659: -8,19 + 2660: -8,19 + 2661: -8,19 + 2662: -11,19 + 2663: -11,19 + 2664: -13,19 + 2665: -13,19 + 2666: -14,19 + 2667: -12,19 + 2668: -16,19 + 2669: -16,19 + 2670: -18,19 + 2675: 66,-19 + 2676: 67,-19 + 2677: 68,-19 + 2678: 69,-19 + 2679: 70,-19 + 2680: 71,-19 + 2894: 1,19 + 2895: 2,19 + 6894: 54,-21 + 6895: 55,-21 + 6896: 53,-21 + 6897: 52,-21 - node: color: '#9D9D97FF' id: MiniTileWhiteLineW decals: - 2143: -26,-21 - 2144: -26,-20 - 2145: -26,-18 - 2146: -26,-19 - 2147: -26,-17 - 2152: -26,-25 - 2153: -26,-24 - 2154: -26,-27 - 2155: -26,-26 - 2156: -26,-28 - 2157: -26,-29 - 2158: -26,-30 - 2159: -26,-31 - 2205: -25,-8 - 2206: -26,-10 - 2207: -26,-11 - 2208: -26,-16 - 2209: -26,-15 - 2210: -26,-15 - 2211: -26,-14 - 2212: -26,-13 - 2226: -27,7 - 2227: -27,8 - 2228: -27,6 - 2229: -27,5 - 2257: -55,5 - 2258: -55,3 - 2259: -55,2 - 2260: -55,1 - 2261: -55,0 - 2262: -55,-1 - 2263: -55,-3 - 2264: -55,-6 - 2265: -55,-6 - 2266: -55,-7 - 2267: -55,-7 - 2268: -55,-8 - 2269: -55,-9 - 2270: -55,-9 - 2271: -55,-11 - 2280: -55,-10 - 2281: -55,-11 - 2282: -55,-12 - 2283: -55,-13 - 2284: -55,-13 - 2285: -55,-15 - 2286: -55,-15 - 2292: -55,-14 - 2297: -55,-16 - 2298: -55,-17 - 2299: -55,-18 - 2300: -55,-20 - 2301: -55,-21 - 2314: -52,-28 - 2315: -52,-29 - 2316: -52,-30 - 2317: -52,-30 - 2318: -52,-31 - 2319: -52,-32 - 2333: -49,-35 - 2334: -49,-36 - 2341: -49,-38 - 2342: -49,-38 - 2343: -49,-39 - 2344: -49,-40 - 2345: -49,-40 - 2346: -49,-41 - 2347: -49,-42 - 2348: -49,-43 - 2349: -49,-43 - 2350: -49,-44 - 2399: -42,-50 - 2400: -42,-50 - 2401: -42,-51 - 2402: -42,-51 - 2403: -42,-52 - 2404: -42,-52 - 2405: -42,-53 - 2406: -42,-54 - 2426: -56,-54 - 2427: -56,-53 - 2428: -56,-52 - 2429: -56,-52 - 2430: -56,-51 - 2431: -56,-51 - 2432: -56,-48 - 2433: -56,-48 - 2434: -56,-47 - 2435: -56,-50 - 2438: -41,-29 - 2439: -41,-28 - 2473: 7,-33 - 2491: 27,-23 - 2492: 27,-23 - 2493: 27,-23 - 2494: 27,-22 - 2495: 27,-24 - 2496: 27,-21 - 2497: 27,-20 - 2543: 57,-18 - 2544: 57,-17 - 2552: 41,-17 - 2553: 41,-16 - 2554: 41,-15 - 2555: 41,-12 - 2556: 41,-11 - 2559: 41,-9 - 2560: 41,-8 - 2561: 41,-7 - 2562: 41,-7 - 2563: 41,-6 - 2564: 41,-5 - 2565: 41,-5 - 2566: 41,-4 - 2567: 41,-3 - 2568: 41,-3 - 2569: 41,-1 - 2570: 41,-1 - 2571: 41,-1 - 2572: 41,-2 - 2604: 19,3 - 2605: 19,4 - 2606: 19,4 - 2607: 19,4 - 2608: 19,5 - 2609: 19,5 - 2610: 19,7 - 2611: 19,8 - 2612: 19,8 - 2613: 19,8 - 2614: 19,10 - 2615: 19,10 - 2616: 19,11 - 2617: 19,10 - 2618: 19,10 - 2619: 19,12 - 2620: 19,10 - 2621: 19,9 - 2622: 19,9 - 2632: 19,13 - 2633: 19,14 - 2634: 19,14 - 2635: 19,14 - 2636: 19,15 - 2637: 19,15 - 2638: 19,15 - 2639: 19,16 - 2640: 19,16 - 2641: 19,18 - 2642: 19,18 - 2702: -27,20 - 2703: -27,18 - 6966: 56,-23 - 6967: 56,-22 - 6973: 56,-24 + 2113: -26,-21 + 2114: -26,-20 + 2115: -26,-18 + 2116: -26,-19 + 2117: -26,-17 + 2122: -26,-25 + 2123: -26,-24 + 2124: -26,-27 + 2125: -26,-26 + 2126: -26,-28 + 2127: -26,-29 + 2128: -26,-30 + 2129: -26,-31 + 2175: -25,-8 + 2176: -26,-10 + 2177: -26,-11 + 2178: -26,-16 + 2179: -26,-15 + 2180: -26,-15 + 2181: -26,-14 + 2182: -26,-13 + 2196: -27,7 + 2197: -27,8 + 2198: -27,6 + 2199: -27,5 + 2227: -55,5 + 2228: -55,3 + 2229: -55,2 + 2230: -55,1 + 2231: -55,0 + 2232: -55,-1 + 2233: -55,-3 + 2234: -55,-6 + 2235: -55,-6 + 2236: -55,-7 + 2237: -55,-7 + 2238: -55,-8 + 2239: -55,-9 + 2240: -55,-9 + 2241: -55,-11 + 2250: -55,-10 + 2251: -55,-11 + 2252: -55,-12 + 2253: -55,-13 + 2254: -55,-13 + 2255: -55,-15 + 2256: -55,-15 + 2262: -55,-14 + 2267: -55,-16 + 2268: -55,-17 + 2269: -55,-18 + 2270: -55,-20 + 2271: -55,-21 + 2284: -52,-28 + 2285: -52,-29 + 2286: -52,-30 + 2287: -52,-30 + 2288: -52,-31 + 2289: -52,-32 + 2303: -49,-35 + 2304: -49,-36 + 2311: -49,-38 + 2312: -49,-38 + 2313: -49,-39 + 2314: -49,-40 + 2315: -49,-40 + 2316: -49,-41 + 2317: -49,-42 + 2318: -49,-43 + 2319: -49,-43 + 2320: -49,-44 + 2369: -42,-50 + 2370: -42,-50 + 2371: -42,-51 + 2372: -42,-51 + 2373: -42,-52 + 2374: -42,-52 + 2375: -42,-53 + 2376: -42,-54 + 2396: -56,-54 + 2397: -56,-53 + 2398: -56,-52 + 2399: -56,-52 + 2400: -56,-51 + 2401: -56,-51 + 2402: -56,-48 + 2403: -56,-48 + 2404: -56,-47 + 2405: -56,-50 + 2408: -41,-29 + 2409: -41,-28 + 2443: 7,-33 + 2461: 27,-23 + 2462: 27,-23 + 2463: 27,-23 + 2464: 27,-22 + 2465: 27,-24 + 2466: 27,-21 + 2467: 27,-20 + 2513: 57,-18 + 2514: 57,-17 + 2522: 41,-17 + 2523: 41,-16 + 2524: 41,-15 + 2525: 41,-12 + 2526: 41,-11 + 2529: 41,-9 + 2530: 41,-8 + 2531: 41,-7 + 2532: 41,-7 + 2533: 41,-6 + 2534: 41,-5 + 2535: 41,-5 + 2536: 41,-4 + 2537: 41,-3 + 2538: 41,-3 + 2539: 41,-1 + 2540: 41,-1 + 2541: 41,-1 + 2542: 41,-2 + 2574: 19,3 + 2575: 19,4 + 2576: 19,4 + 2577: 19,4 + 2578: 19,5 + 2579: 19,5 + 2580: 19,7 + 2581: 19,8 + 2582: 19,8 + 2583: 19,8 + 2584: 19,10 + 2585: 19,10 + 2586: 19,11 + 2587: 19,10 + 2588: 19,10 + 2589: 19,12 + 2590: 19,10 + 2591: 19,9 + 2592: 19,9 + 2602: 19,13 + 2603: 19,14 + 2604: 19,14 + 2605: 19,14 + 2606: 19,15 + 2607: 19,15 + 2608: 19,15 + 2609: 19,16 + 2610: 19,16 + 2611: 19,18 + 2612: 19,18 + 2672: -27,20 + 2673: -27,18 + 6891: 56,-23 + 6892: 56,-22 + 6898: 56,-24 - node: color: '#52B4E996' id: MonoOverlay decals: - 6008: 44,8 + 5935: 44,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1010: 36,-36 + 981: 36,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 6010: 43,9 + 5937: 43,9 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1473: -27,11 - 1474: -27,15 - 1475: -27,16 - 1476: -27,12 - 1477: -27,13 - 1478: -27,14 - 1584: -52,-26 - 1585: -52,-27 - 1586: -52,-25 - 1587: -52,-24 + 1443: -27,11 + 1444: -27,15 + 1445: -27,16 + 1446: -27,12 + 1447: -27,13 + 1448: -27,14 + 1554: -52,-26 + 1555: -52,-27 + 1556: -52,-25 + 1557: -52,-24 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1498: -17,-30 - 1499: -16,-30 - 1500: -15,-30 - 1501: -14,-30 - 1502: -13,-30 - 1564: 5,-27 - 1565: 5,-28 - 1566: 5,-29 - 1567: 5,-30 - 1568: 3,-30 - 1569: 2,-30 - 1570: 1,-30 - 1571: 0,-30 - 1572: -1,-30 - 1573: -3,-30 - 1574: -2,-30 - 1575: -4,-30 - 1576: -5,-30 - 1577: -6,-30 - 1578: -7,-30 - 1579: -8,-30 - 1616: 6,21 - 1617: 5,21 - 1618: 2,21 - 1619: 1,21 - 1620: 0,21 - 1621: -1,21 - 1622: -4,21 - 1623: -5,21 - 1624: -6,21 - 1625: -7,21 - 1626: -8,21 - 1627: -11,21 - 1628: -12,21 - 1629: -13,21 - 1630: -14,21 - 1631: -15,21 - 1632: -16,21 - 1646: 28,4 - 1647: 27,4 - 1648: 23,4 - 1649: 22,4 - 1853: 57,-17 - 1854: 58,-17 - 1855: 59,-17 - 1856: 60,-17 - 1857: 61,-17 - 2060: -1,-33 - 5989: 38,4 - 5990: 40,4 - 5991: 41,4 - 5992: 42,4 - 5993: 43,4 + 1468: -17,-30 + 1469: -16,-30 + 1470: -15,-30 + 1471: -14,-30 + 1472: -13,-30 + 1534: 5,-27 + 1535: 5,-28 + 1536: 5,-29 + 1537: 5,-30 + 1538: 3,-30 + 1539: 2,-30 + 1540: 1,-30 + 1541: 0,-30 + 1542: -1,-30 + 1543: -3,-30 + 1544: -2,-30 + 1545: -4,-30 + 1546: -5,-30 + 1547: -6,-30 + 1548: -7,-30 + 1549: -8,-30 + 1586: 6,21 + 1587: 5,21 + 1588: 2,21 + 1589: 1,21 + 1590: 0,21 + 1591: -1,21 + 1592: -4,21 + 1593: -5,21 + 1594: -6,21 + 1595: -7,21 + 1596: -8,21 + 1597: -11,21 + 1598: -12,21 + 1599: -13,21 + 1600: -14,21 + 1601: -15,21 + 1602: -16,21 + 1616: 28,4 + 1617: 27,4 + 1618: 23,4 + 1619: 22,4 + 1823: 57,-17 + 1824: 58,-17 + 1825: 59,-17 + 1826: 60,-17 + 1827: 61,-17 + 2030: -1,-33 + 5916: 38,4 + 5917: 40,4 + 5918: 41,4 + 5919: 42,4 + 5920: 43,4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 1168: 6,30 - 1580: -51,-20 - 1581: -50,-20 - 1582: -49,-20 - 1583: -48,-20 + 1139: 6,30 + 1550: -51,-20 + 1551: -50,-20 + 1552: -49,-20 + 1553: -48,-20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1522: 12,-32 - 1523: 11,-32 - 1524: 13,-32 - 1525: 14,-32 - 1526: 15,-32 - 1527: 16,-32 - 1528: 17,-32 - 1529: 19,-32 - 1530: 19,-30 - 1531: 19,-29 - 1532: 19,-27 - 1533: 19,-26 - 1534: 19,-25 - 1535: 20,-25 - 1536: 21,-25 - 1537: 22,-25 - 1538: 23,-25 - 1539: 24,-25 - 1551: 19,-31 + 1492: 12,-32 + 1493: 11,-32 + 1494: 13,-32 + 1495: 14,-32 + 1496: 15,-32 + 1497: 16,-32 + 1498: 17,-32 + 1499: 19,-32 + 1500: 19,-30 + 1501: 19,-29 + 1502: 19,-27 + 1503: 19,-26 + 1504: 19,-25 + 1505: 20,-25 + 1506: 21,-25 + 1507: 22,-25 + 1508: 23,-25 + 1509: 24,-25 + 1521: 19,-31 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 1658: 37,-21 - 1659: 50,-21 - 1660: 34,-21 - 1661: 36,-21 - 1662: 35,-21 - 1863: 51,-21 - 1933: 29,-21 - 1934: 29,-22 - 1935: 29,-23 - 1936: 29,-24 - 1937: 29,-25 - 1938: 29,-26 - 1939: 29,-27 - 1940: 28,-27 - 1941: 27,-27 - 1942: 26,-27 - 1943: 25,-27 - 1944: 24,-27 - 1945: 23,-27 - 1946: 21,-27 - 1947: 21,-29 - 1948: 21,-30 - 1949: 21,-31 - 1950: 21,-32 - 1951: 21,-33 - 1952: 21,-34 - 1953: 20,-34 - 1954: 19,-34 + 1628: 37,-21 + 1629: 50,-21 + 1630: 34,-21 + 1631: 36,-21 + 1632: 35,-21 + 1833: 51,-21 + 1903: 29,-21 + 1904: 29,-22 + 1905: 29,-23 + 1906: 29,-24 + 1907: 29,-25 + 1908: 29,-26 + 1909: 29,-27 + 1910: 28,-27 + 1911: 27,-27 + 1912: 26,-27 + 1913: 25,-27 + 1914: 24,-27 + 1915: 23,-27 + 1916: 21,-27 + 1917: 21,-29 + 1918: 21,-30 + 1919: 21,-31 + 1920: 21,-32 + 1921: 21,-33 + 1922: 21,-34 + 1923: 20,-34 + 1924: 19,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 6011: 45,7 + 5938: 45,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1486: -25,11 - 1487: -25,12 - 1488: -25,13 - 1489: -25,14 - 1490: -25,15 - 1491: -25,16 - 1492: -25,17 - 1650: 21,5 - 1651: 21,7 - 1652: 21,8 - 1653: 21,9 - 1654: 21,16 - 1655: 21,18 - 1656: 21,19 - 1657: 21,20 - 1858: 61,-17 - 1859: 61,-18 - 1860: 61,-19 - 1861: 61,-20 - 2056: -1,-33 - 2057: 0,-33 - 2058: 1,-33 - 2059: 2,-33 - 5994: 43,4 - 5995: 43,3 - 5996: 43,2 - 5997: 43,1 - 5998: 43,-1 - 5999: 43,-2 - 6000: 43,-3 - 6001: 43,-4 - 6002: 43,-5 - 6003: 43,-6 - 6004: 43,-7 - 6005: 43,-8 - 6006: 43,-9 - 6007: 43,-10 + 1456: -25,11 + 1457: -25,12 + 1458: -25,13 + 1459: -25,14 + 1460: -25,15 + 1461: -25,16 + 1462: -25,17 + 1620: 21,5 + 1621: 21,7 + 1622: 21,8 + 1623: 21,9 + 1624: 21,16 + 1625: 21,18 + 1626: 21,19 + 1627: 21,20 + 1828: 61,-17 + 1829: 61,-18 + 1830: 61,-19 + 1831: 61,-20 + 2026: -1,-33 + 2027: 0,-33 + 2028: 1,-33 + 2029: 2,-33 + 5921: 43,4 + 5922: 43,3 + 5923: 43,2 + 5924: 43,1 + 5925: 43,-1 + 5926: 43,-2 + 5927: 43,-3 + 5928: 43,-4 + 5929: 43,-5 + 5930: 43,-6 + 5931: 43,-7 + 5932: 43,-8 + 5933: 43,-9 + 5934: 43,-10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 1169: 3,32 + 1140: 3,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1518: 9,-27 - 1519: 9,-29 - 1520: 9,-30 - 1521: 9,-31 + 1488: 9,-27 + 1489: 9,-29 + 1490: 9,-30 + 1491: 9,-31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1545: 19,-25 - 1546: 19,-26 - 1547: 19,-27 - 1548: 19,-29 - 1549: 19,-30 - 6012: 43,7 + 1515: 19,-25 + 1516: 19,-26 + 1517: 19,-27 + 1518: 19,-29 + 1519: 19,-30 + 5939: 43,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1479: -27,11 - 1480: -27,12 - 1481: -27,13 - 1482: -27,14 - 1483: -27,15 - 1484: -27,16 - 1485: -27,17 - 1550: 19,-31 - 1588: -52,-27 - 1589: -52,-26 - 1590: -52,-25 - 1591: -52,-24 - 1592: -52,-23 - 1663: 34,-21 - 1664: 35,-21 - 1665: 36,-21 - 1666: 37,-21 - 1667: 50,-21 - 1864: 51,-21 - 1955: 19,-34 - 1956: 20,-34 - 1957: 21,-34 - 1964: 23,-27 - 1965: 24,-27 - 1966: 25,-27 - 1967: 26,-27 - 1968: 27,-27 - 1969: 28,-27 - 1970: 29,-27 + 1449: -27,11 + 1450: -27,12 + 1451: -27,13 + 1452: -27,14 + 1453: -27,15 + 1454: -27,16 + 1455: -27,17 + 1520: 19,-31 + 1558: -52,-27 + 1559: -52,-26 + 1560: -52,-25 + 1561: -52,-24 + 1562: -52,-23 + 1633: 34,-21 + 1634: 35,-21 + 1635: 36,-21 + 1636: 37,-21 + 1637: 50,-21 + 1834: 51,-21 + 1925: 19,-34 + 1926: 20,-34 + 1927: 21,-34 + 1934: 23,-27 + 1935: 24,-27 + 1936: 25,-27 + 1937: 26,-27 + 1938: 27,-27 + 1939: 28,-27 + 1940: 29,-27 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 1166: 6,32 + 1137: 6,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1515: 5,-29 - 1516: 5,-28 - 1517: 5,-27 - 2051: -1,-33 - 2052: 1,-33 - 2053: 0,-33 - 2054: 2,-33 + 1485: 5,-29 + 1486: 5,-28 + 1487: 5,-27 + 2021: -1,-33 + 2022: 1,-33 + 2023: 0,-33 + 2024: 2,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1011: 44,-36 + 982: 44,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1540: 19,-25 - 1541: 20,-25 - 1542: 21,-25 - 1543: 22,-25 - 1544: 23,-25 - 5971: 40,4 - 5972: 38,4 - 5973: 41,4 - 5974: 42,4 - 5975: 43,4 - 5976: 43,3 - 5977: 43,2 - 5978: 43,1 - 5979: 43,-1 - 5980: 43,-2 - 5981: 43,-3 - 5982: 43,-4 - 5983: 43,-5 - 5984: 43,-6 - 5985: 43,-7 - 5986: 43,-10 - 5987: 43,-9 - 5988: 43,-8 - 6009: 45,9 + 1510: 19,-25 + 1511: 20,-25 + 1512: 21,-25 + 1513: 22,-25 + 1514: 23,-25 + 5898: 40,4 + 5899: 38,4 + 5900: 41,4 + 5901: 42,4 + 5902: 43,4 + 5903: 43,3 + 5904: 43,2 + 5905: 43,1 + 5906: 43,-1 + 5907: 43,-2 + 5908: 43,-3 + 5909: 43,-4 + 5910: 43,-5 + 5911: 43,-6 + 5912: 43,-7 + 5913: 43,-10 + 5914: 43,-9 + 5915: 43,-8 + 5936: 45,9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 1467: -25,11 - 1468: -25,12 - 1469: -25,13 - 1470: -25,15 - 1471: -25,14 - 1472: -25,16 + 1437: -25,11 + 1438: -25,12 + 1439: -25,13 + 1440: -25,15 + 1441: -25,14 + 1442: -25,16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1493: -16,-30 - 1494: -15,-30 - 1495: -14,-30 - 1496: -13,-30 - 1497: -17,-30 + 1463: -16,-30 + 1464: -15,-30 + 1465: -14,-30 + 1466: -13,-30 + 1467: -17,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1633: 21,20 - 1634: 21,19 - 1635: 21,18 - 1636: 21,16 - 1637: 21,9 - 1638: 21,8 - 1639: 21,7 - 1640: 21,5 - 1641: 21,4 - 1642: 22,4 - 1643: 23,4 - 1644: 27,4 - 1645: 28,4 + 1603: 21,20 + 1604: 21,19 + 1605: 21,18 + 1606: 21,16 + 1607: 21,9 + 1608: 21,8 + 1609: 21,7 + 1610: 21,5 + 1611: 21,4 + 1612: 22,4 + 1613: 23,4 + 1614: 27,4 + 1615: 28,4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1846: 61,-17 - 1847: 60,-17 - 1848: 59,-17 - 1849: 58,-17 - 1850: 61,-18 - 1851: 61,-19 - 1852: 61,-20 - 1862: 57,-17 + 1816: 61,-17 + 1817: 60,-17 + 1818: 59,-17 + 1819: 58,-17 + 1820: 61,-18 + 1821: 61,-19 + 1822: 61,-20 + 1832: 57,-17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1552: 17,-32 - 1553: 16,-32 - 1554: 15,-32 - 1555: 14,-32 - 1556: 13,-32 - 1557: 12,-32 - 1558: 11,-32 - 1559: 9,-32 - 1560: 9,-31 - 1561: 9,-30 - 1562: 9,-29 - 1563: 9,-27 - 1593: -51,-20 - 1594: -50,-20 - 1595: -49,-20 - 1596: -48,-20 - 1597: -52,-20 - 1598: -62,-22 - 1958: 21,-34 - 1959: 21,-33 - 1960: 21,-32 - 1961: 21,-31 - 1962: 21,-30 - 1963: 21,-29 - 1971: 29,-27 - 1972: 29,-26 - 1973: 29,-25 - 1974: 29,-24 - 1975: 29,-23 - 1976: 29,-22 + 1522: 17,-32 + 1523: 16,-32 + 1524: 15,-32 + 1525: 14,-32 + 1526: 13,-32 + 1527: 12,-32 + 1528: 11,-32 + 1529: 9,-32 + 1530: 9,-31 + 1531: 9,-30 + 1532: 9,-29 + 1533: 9,-27 + 1563: -51,-20 + 1564: -50,-20 + 1565: -49,-20 + 1566: -48,-20 + 1567: -52,-20 + 1568: -62,-22 + 1928: 21,-34 + 1929: 21,-33 + 1930: 21,-32 + 1931: 21,-31 + 1932: 21,-30 + 1933: 21,-29 + 1941: 29,-27 + 1942: 29,-26 + 1943: 29,-25 + 1944: 29,-24 + 1945: 29,-23 + 1946: 29,-22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 1167: 3,30 - 1599: -16,21 - 1600: -15,21 - 1601: -14,21 - 1602: -13,21 - 1603: -12,21 - 1604: -11,21 - 1605: -8,21 - 1606: -7,21 - 1607: -6,21 - 1608: -5,21 - 1609: -4,21 - 1610: -1,21 - 1611: 0,21 - 1612: 1,21 - 1613: 2,21 - 1614: 5,21 - 1615: 6,21 + 1138: 3,30 + 1569: -16,21 + 1570: -15,21 + 1571: -14,21 + 1572: -13,21 + 1573: -12,21 + 1574: -11,21 + 1575: -8,21 + 1576: -7,21 + 1577: -6,21 + 1578: -5,21 + 1579: -4,21 + 1580: -1,21 + 1581: 0,21 + 1582: 1,21 + 1583: 2,21 + 1584: 5,21 + 1585: 6,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1503: -8,-30 - 1504: -7,-30 - 1505: -6,-30 - 1506: -5,-30 - 1507: -4,-30 - 1508: -3,-30 - 1509: -2,-30 - 1510: 0,-30 - 1511: -1,-30 - 1512: 1,-30 - 1513: 2,-30 - 1514: 3,-30 - 2055: 2,-33 + 1473: -8,-30 + 1474: -7,-30 + 1475: -6,-30 + 1476: -5,-30 + 1477: -4,-30 + 1478: -3,-30 + 1479: -2,-30 + 1480: 0,-30 + 1481: -1,-30 + 1482: 1,-30 + 1483: 2,-30 + 1484: 3,-30 + 2025: 2,-33 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1444: -52,-49 + 1414: -52,-49 - node: color: '#FFFFFFFF' id: Rock03 decals: - 879: -49,-9 - 1445: -47,-49 + 850: -49,-9 + 1415: -47,-49 - node: color: '#FFFFFFFF' id: Rock04 decals: - 857: -47,4 + 828: -47,4 - node: color: '#FFFFFFFF' id: Rock05 decals: - 856: -49,-2 + 827: -49,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: - 859: -51,4 - 881: -46,-7 - 1447: -46,-49 - 1680: 58,19 + 830: -51,4 + 852: -46,-7 + 1417: -46,-49 + 1650: 58,19 - node: color: '#FFFFFFFF' id: Rock07 decals: - 858: -46,-2 - 880: -50,-8 - 1446: -51,-49 - 1681: 61,19 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rust - decals: - 2836: -5,-39 - 2837: -7,-40 - 2838: -6,-41 - 2839: -7,-41 - 2840: -8,-39 - 2841: -8,-42 + 829: -46,-2 + 851: -50,-8 + 1416: -51,-49 + 1651: 61,19 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 481: -37,0 + 452: -37,0 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 482: -36,0 + 453: -36,0 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 483: -35,0 + 454: -35,0 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 484: -34,0 + 455: -34,0 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 485: -33,0 + 456: -33,0 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 486: -32,0 + 457: -32,0 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 487: -31,0 + 458: -31,0 - node: color: '#FFFFFFFF' id: StandClear decals: - 6897: 57.998478,-4.7559896 - 6898: 60.004295,-4.7682204 + 6822: 57.998478,-4.7559896 + 6823: 60.004295,-4.7682204 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1116: -3,24 + 1087: -3,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -8242,7 +8223,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1115: -2,23 + 1086: -2,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -8252,7 +8233,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1114: -3,23 + 1085: -3,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -8262,7 +8243,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1113: -2,24 + 1084: -2,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -8272,81 +8253,81 @@ entities: color: '#FFFFFFB1' id: VentSmall decals: - 2770: -36,22 + 2740: -36,22 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1157: 6,32 - 6323: 91,-13 + 1128: 6,32 + 6248: 91,-13 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1156: 3,32 - 6324: 88,-13 + 1127: 3,32 + 6249: 88,-13 - node: color: '#EFB34196' id: WarnCornerSE decals: - 278: 29,-14 + 276: 29,-14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6322: 91,-16 + 6247: 91,-16 - node: color: '#EFB34196' id: WarnCornerSW decals: - 217: 13,-22 + 216: 13,-22 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 6321: 88,-16 - 6821: 46,15 + 6246: 88,-16 + 6746: 46,15 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 6734: -35,12 + 6659: -35,12 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSE decals: - 6479: 49,-11 - 6480: 52,-11 + 6404: 49,-11 + 6405: 52,-11 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 6733: -35,16 + 6658: -35,16 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSW decals: - 6477: 49,-11 - 6478: 52,-11 + 6402: 49,-11 + 6403: 52,-11 - node: color: '#EFB34118' id: WarnCornerSmallNE decals: - 6401: 12,-30 - 6402: 12,-30 + 6326: 12,-30 + 6327: 12,-30 - node: color: '#EFB34131' id: WarnCornerSmallNE decals: - 6546: 14,39 - 6547: 14,39 - 6548: 14,39 - 6549: 14,39 + 6471: 14,39 + 6472: 14,39 + 6473: 14,39 + 6474: 14,39 - node: color: '#EFB3416C' id: WarnCornerSmallNE decals: - 6400: 12,-30 + 6325: 12,-30 - node: color: '#EFB34196' id: WarnCornerSmallNE @@ -8356,95 +8337,95 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1290: 25,23 - 1291: 29,23 - 1985: 11,-47 - 6058: 51,13 - 6146: 51,-11 - 6824: 46,15 - 6922: 57,-5 + 1260: 25,23 + 1261: 29,23 + 1955: 11,-47 + 5985: 51,13 + 6072: 51,-11 + 6749: 46,15 + 6847: 57,-5 - node: color: '#EFB34118' id: WarnCornerSmallNW decals: - 6403: 16,-30 - 6404: 16,-30 + 6328: 16,-30 + 6329: 16,-30 - node: color: '#EFB34131' id: WarnCornerSmallNW decals: - 6542: 16,39 - 6543: 16,39 - 6544: 16,39 - 6545: 16,39 + 6467: 16,39 + 6468: 16,39 + 6469: 16,39 + 6470: 16,39 - node: color: '#EFB3416C' id: WarnCornerSmallNW decals: - 6399: 16,-30 + 6324: 16,-30 - node: color: '#EFB34196' id: WarnCornerSmallNW decals: 12: 2,-17 - 234: 0,-22 + 232: 0,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1055: 39,-1 - 1292: 25,23 - 1293: 29,23 - 1986: 14,-47 - 6901: 61,-5 + 1026: 39,-1 + 1262: 25,23 + 1263: 29,23 + 1956: 14,-47 + 6826: 61,-5 - node: color: '#EFB34131' id: WarnCornerSmallSE decals: - 6538: 14,42 - 6539: 14,42 - 6540: 14,42 - 6541: 14,42 + 6463: 14,42 + 6464: 14,42 + 6465: 14,42 + 6466: 14,42 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: 28: -2,-12 55: -4,-13 - 195: 12,-26 - 270: 25,-14 + 194: 12,-26 + 268: 25,-14 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1412: 55,-33 - 6057: 51,15 + 1382: 55,-33 + 5984: 51,15 - node: color: '#EFB34131' id: WarnCornerSmallSW decals: - 6534: 16,42 - 6535: 16,42 - 6536: 16,42 - 6537: 16,42 + 6459: 16,42 + 6460: 16,42 + 6461: 16,42 + 6462: 16,42 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: 10: 2,-12 - 194: 16,-26 + 193: 16,-26 - node: color: '#EFB34131' id: WarnLineE decals: - 6510: 14,40 - 6511: 14,40 - 6512: 14,41 - 6513: 14,41 - 6522: 14,40 - 6523: 14,40 - 6524: 14,41 - 6525: 14,41 + 6435: 14,40 + 6436: 14,40 + 6437: 14,41 + 6438: 14,41 + 6447: 14,40 + 6448: 14,40 + 6449: 14,41 + 6450: 14,41 - node: color: '#EFB34196' id: WarnLineE @@ -8464,108 +8445,108 @@ entities: 86: -4,-19 117: -4,-16 120: -2,-15 - 191: 12,-27 - 192: 12,-28 - 193: 12,-29 - 268: 25,-16 - 269: 25,-15 - 279: 29,-13 - 280: 29,-12 - 281: 29,-11 + 190: 12,-27 + 191: 12,-28 + 192: 12,-29 + 266: 25,-16 + 267: 25,-15 + 277: 29,-13 + 278: 29,-12 + 279: 29,-11 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1158: 6,31 - 1159: 6,30 - 1407: 55,-36 - 1408: 55,-34 - 1409: 55,-35 - 1788: 73,-14 - 1789: 73,-15 - 1790: 73,-17 - 1791: 73,-16 - 1792: 73,-18 - 1793: 73,-19 - 5949: -45,23 - 6055: 51,14 - 6145: 51,-10 - 6319: 91,-15 - 6320: 91,-14 - 6447: -33,-11 - 6448: -33,-10 - 6822: 46,16 - 6921: 57,-4 + 1129: 6,31 + 1130: 6,30 + 1377: 55,-36 + 1378: 55,-34 + 1379: 55,-35 + 1758: 73,-14 + 1759: 73,-15 + 1760: 73,-17 + 1761: 73,-16 + 1762: 73,-18 + 1763: 73,-19 + 5876: -45,23 + 5982: 51,14 + 6071: 51,-10 + 6244: 91,-15 + 6245: 91,-14 + 6372: -33,-11 + 6373: -33,-10 + 6747: 46,16 + 6846: 57,-4 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 6147: 52,-12 - 6148: 52,-13 - 6149: 52,-14 - 6150: 52,-15 - 6151: 49,-12 - 6152: 49,-13 - 6153: 49,-14 - 6154: 49,-15 + 6073: 52,-12 + 6074: 52,-13 + 6075: 52,-14 + 6076: 52,-15 + 6077: 49,-12 + 6078: 49,-13 + 6079: 49,-14 + 6080: 49,-15 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 6834: 42,13 - 6835: 46,13 + 6759: 42,13 + 6760: 46,13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 6727: -34,12 - 6728: -33,12 - 6729: -31,12 - 6730: -30,12 + 6652: -34,12 + 6653: -33,12 + 6654: -31,12 + 6655: -30,12 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 6917: 59,-8 + 6842: 59,-8 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 7013: 54,-23 - 7014: 52,-23 - 7015: 53,-23 + 6938: 54,-23 + 6939: 52,-23 + 6940: 53,-23 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 6832: 42,13 - 6833: 46,13 + 6757: 42,13 + 6758: 46,13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 6731: -34,16 - 6732: -33,16 + 6656: -34,16 + 6657: -33,16 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 6155: 49,-15 - 6156: 49,-14 - 6157: 49,-13 - 6158: 49,-12 - 6159: 52,-12 - 6160: 52,-13 - 6161: 52,-14 - 6162: 52,-15 + 6081: 49,-15 + 6082: 49,-14 + 6083: 49,-13 + 6084: 49,-12 + 6085: 52,-12 + 6086: 52,-13 + 6087: 52,-14 + 6088: 52,-15 - node: color: '#EFB34131' id: WarnLineN decals: - 6530: 15,42 - 6531: 15,42 - 6532: 15,42 - 6533: 15,42 + 6455: 15,42 + 6456: 15,42 + 6457: 15,42 + 6458: 15,42 - node: color: '#EFB34196' id: WarnLineN @@ -8576,57 +8557,56 @@ entities: 114: -10,-23 115: -9,-23 116: -8,-23 - 186: 13,-26 - 187: 15,-26 - 218: 14,-22 - 219: 3,-22 - 271: 26,-14 - 272: 27,-14 - 273: 28,-14 + 185: 13,-26 + 186: 15,-26 + 217: 14,-22 + 269: 26,-14 + 270: 27,-14 + 271: 28,-14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1410: 56,-33 - 1411: 57,-33 - 1833: 69,-30 - 1834: 68,-30 - 1835: 70,-30 - 1836: 71,-30 - 1880: 23,-38 - 1881: 24,-38 - 1882: 25,-38 - 1977: 11,-48 - 1978: 12,-48 - 1979: 14,-48 - 1980: 13,-48 - 1981: 15,-48 - 1982: 16,-48 - 2034: 0,-38 - 2035: 1,-38 - 2036: 2,-38 - 5946: -44,24 - 6313: 89,-16 - 6314: 90,-16 - 6575: 33,-14 - 6576: 34,-14 - 6577: 35,-14 - 6619: 7,-47 - 6620: 8,-47 - 6621: 9,-47 - 6820: 47,15 + 1380: 56,-33 + 1381: 57,-33 + 1803: 69,-30 + 1804: 68,-30 + 1805: 70,-30 + 1806: 71,-30 + 1850: 23,-38 + 1851: 24,-38 + 1852: 25,-38 + 1947: 11,-48 + 1948: 12,-48 + 1949: 14,-48 + 1950: 13,-48 + 1951: 15,-48 + 1952: 16,-48 + 2004: 0,-38 + 2005: 1,-38 + 2006: 2,-38 + 5873: -44,24 + 6238: 89,-16 + 6239: 90,-16 + 6500: 33,-14 + 6501: 34,-14 + 6502: 35,-14 + 6544: 7,-47 + 6545: 8,-47 + 6546: 9,-47 + 6745: 47,15 - node: color: '#EFB34131' id: WarnLineS decals: - 6514: 16,40 - 6515: 16,40 - 6516: 16,41 - 6517: 16,41 - 6518: 16,41 - 6519: 16,40 - 6520: 16,41 - 6521: 16,40 + 6439: 16,40 + 6440: 16,40 + 6441: 16,41 + 6442: 16,41 + 6443: 16,41 + 6444: 16,40 + 6445: 16,41 + 6446: 16,40 - node: color: '#EFB34196' id: WarnLineS @@ -8641,60 +8621,60 @@ entities: 89: -10,-17 90: -10,-16 129: 0,-21 - 188: 16,-27 - 189: 16,-28 - 190: 16,-29 - 196: 13,-21 - 197: 13,-20 - 198: 13,-19 - 199: 13,-18 - 200: 13,-17 - 201: 13,-16 - 274: 16,-12 - 275: 16,-11 - 276: 16,-10 - 277: 16,-9 + 187: 16,-27 + 188: 16,-28 + 189: 16,-29 + 195: 13,-21 + 196: 13,-20 + 197: 13,-19 + 198: 13,-18 + 199: 13,-17 + 200: 13,-16 + 272: 16,-12 + 273: 16,-11 + 274: 16,-10 + 275: 16,-9 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1709: 61,-24 - 1722: 61,-23 - 1908: 26,-43 - 1909: 26,-46 - 5947: -43,23 - 6056: 57,14 - 6317: 88,-15 - 6318: 88,-14 - 6445: -33,-10 - 6446: -33,-11 - 6819: 46,16 - 6900: 61,-4 + 1679: 61,-24 + 1692: 61,-23 + 1878: 26,-43 + 1879: 26,-46 + 5874: -43,23 + 5983: 57,14 + 6242: 88,-15 + 6243: 88,-14 + 6370: -33,-10 + 6371: -33,-11 + 6744: 46,16 + 6825: 61,-4 - node: color: '#EFB34118' id: WarnLineW decals: - 6405: 13,-30 - 6406: 13,-30 - 6407: 14,-30 - 6408: 14,-30 - 6409: 15,-30 - 6410: 15,-30 + 6330: 13,-30 + 6331: 13,-30 + 6332: 14,-30 + 6333: 14,-30 + 6334: 15,-30 + 6335: 15,-30 - node: color: '#EFB34131' id: WarnLineW decals: - 6526: 15,39 - 6527: 15,39 - 6528: 15,39 - 6529: 15,39 + 6451: 15,39 + 6452: 15,39 + 6453: 15,39 + 6454: 15,39 - node: color: '#EFB3416C' id: WarnLineW decals: - 6396: 13,-30 - 6397: 14,-30 - 6398: 15,-30 + 6321: 13,-30 + 6322: 14,-30 + 6323: 15,-30 - node: color: '#EFB34196' id: WarnLineW @@ -8705,608 +8685,586 @@ entities: 25: 4,-14 26: 5,-14 27: 6,-14 - 232: -2,-22 - 233: -1,-22 + 230: -2,-22 + 231: -1,-22 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1044: 36,-1 - 1045: 37,-1 - 1054: 38,-1 - 1154: 4,32 - 1155: 5,32 - 1284: 30,23 - 1285: 31,23 - 1286: 23,23 - 1287: 24,23 - 1288: 26,23 - 1289: 28,23 - 1738: 68,-11 - 1739: 69,-11 - 1740: 70,-11 - 1829: 68,-29 - 1830: 70,-29 - 1831: 69,-29 - 1832: 71,-29 - 1877: 23,-37 - 1878: 25,-37 - 1879: 24,-37 - 1928: 28,-38 - 1929: 29,-38 - 1983: 12,-47 - 1984: 13,-47 - 2044: 9,-39 - 2045: 10,-39 - 2046: 8,-39 - 2047: 11,-39 - 2061: -5,-35 - 2073: -6,-35 - 2074: -4,-35 - 5948: -44,22 - 6143: 52,-11 - 6144: 53,-11 - 6315: 89,-13 - 6316: 90,-13 - 6578: 33,-11 - 6579: 34,-11 - 6580: 35,-11 - 6823: 47,15 - 6899: 59,-5 + 1015: 36,-1 + 1016: 37,-1 + 1025: 38,-1 + 1125: 4,32 + 1126: 5,32 + 1254: 30,23 + 1255: 31,23 + 1256: 23,23 + 1257: 24,23 + 1258: 26,23 + 1259: 28,23 + 1708: 68,-11 + 1709: 69,-11 + 1710: 70,-11 + 1799: 68,-29 + 1800: 70,-29 + 1801: 69,-29 + 1802: 71,-29 + 1847: 23,-37 + 1848: 25,-37 + 1849: 24,-37 + 1898: 28,-38 + 1899: 29,-38 + 1953: 12,-47 + 1954: 13,-47 + 2014: 9,-39 + 2015: 10,-39 + 2016: 8,-39 + 2017: 11,-39 + 2031: -5,-35 + 2043: -6,-35 + 2044: -4,-35 + 5875: -44,22 + 6069: 52,-11 + 6070: 53,-11 + 6240: 89,-13 + 6241: 90,-13 + 6503: 33,-11 + 6504: 34,-11 + 6505: 35,-11 + 6748: 47,15 + 6824: 59,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 5945: -44,23 + 5872: -44,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 402: -18,-13 - 971: 44,-29 + 400: -18,-13 + 942: 44,-29 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 379: -22,7 - 970: 40,-29 - 6588: -19,-13 + 377: -22,7 + 941: 40,-29 + 6513: -19,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 401: -18,-16 - 501: -32,5 + 399: -18,-16 + 472: -32,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 378: -22,5 - 400: -19,-16 - 502: -36,5 + 376: -22,5 + 398: -19,-16 + 473: -36,5 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 372: -24,3 - 428: -38,5 - 461: -35,-5 - 462: -30,-5 - 463: -40,-5 - 521: -38,3 - 630: -39,-16 - 833: -52,5 - 1153: -15,31 - 1683: 60,18 - 6641: 76,-25 + 370: -24,3 + 426: -38,5 + 439: -40,-5 + 492: -38,3 + 601: -39,-16 + 804: -52,5 + 1124: -15,31 + 1653: 60,18 + 6566: 76,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 427: -30,5 - 459: -35,-5 - 460: -30,-5 - 520: -30,3 - 522: -25,-5 - 831: -43,-1 - 832: -43,5 - 1072: -59,-29 - 6640: 80,-25 + 425: -30,5 + 491: -30,3 + 493: -25,-5 + 802: -43,-1 + 803: -43,5 + 1043: -59,-29 + 6565: 80,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 344: 43,-25 - 363: -24,8 - 384: -22,-1 - 629: -39,-13 - 830: -52,-3 - 6598: -22,-20 - 6599: -20,-20 + 342: 43,-25 + 361: -24,8 + 382: -22,-1 + 600: -39,-13 + 801: -52,-3 + 6523: -22,-20 + 6524: -20,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 564: -28,14 - 572: -37,-18 - 828: -43,3 - 829: -43,-3 - 938: -50.00212,-30.877844 - 939: -45.158802,-30.877844 - 940: -45.158802,-25.282345 - 941: -50.020466,-25.282345 - 1071: -59,-25 - 6596: -20,-20 - 6597: -18,-20 + 535: -28,14 + 543: -37,-18 + 799: -43,3 + 800: -43,-3 + 909: -50.00212,-30.877844 + 910: -45.158802,-30.877844 + 911: -45.158802,-25.282345 + 912: -50.020466,-25.282345 + 1042: -59,-25 + 6521: -20,-20 + 6522: -18,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 343: 43,-26 - 359: -22,-2 - 360: -22,-3 - 361: -22,-4 - 362: -22,-5 - 364: -24,4 - 365: -24,5 - 366: -24,7 - 403: -18,-15 - 404: -18,-14 - 425: -38,6 - 426: -38,7 - 429: -30,-2 - 430: -30,-4 - 431: -30,-3 - 438: -40,-2 - 439: -40,-3 - 440: -40,-4 - 441: -35,-2 - 442: -35,-3 - 443: -35,-4 - 508: -32,6 - 509: -32,7 - 512: -38,5 - 513: -38,4 - 544: -19,17 - 545: -19,21 - 616: -39,-15 - 617: -39,-14 - 928: -46,-26 - 929: -46,-27 - 930: -46,-28 - 931: -46,-29 - 932: -46,-30 - 933: -46,-31 - 953: 36,-31 - 954: 36,-30 - 955: 36,-29 - 977: 44,-31 - 978: 44,-30 - 1147: -15,32 - 1148: -15,33 - 1149: -15,34 - 1303: 33,15 - 1351: 33,12 - 1352: 33,13 - 1353: 33,14 - 1682: 60,19 - 1808: 69,-24 - 1809: 69,-23 - 1810: 69,-22 - 1811: 69,-21 - 6590: -20,-21 - 6592: -22,-21 - 6636: 76,-24 - 6637: 76,-23 + 341: 43,-26 + 357: -22,-2 + 358: -22,-3 + 359: -22,-4 + 360: -22,-5 + 362: -24,4 + 363: -24,5 + 364: -24,7 + 401: -18,-15 + 402: -18,-14 + 423: -38,6 + 424: -38,7 + 427: -40,-2 + 428: -40,-3 + 429: -40,-4 + 479: -32,6 + 480: -32,7 + 483: -38,5 + 484: -38,4 + 515: -19,17 + 516: -19,21 + 587: -39,-15 + 588: -39,-14 + 899: -46,-26 + 900: -46,-27 + 901: -46,-28 + 902: -46,-29 + 903: -46,-30 + 904: -46,-31 + 924: 36,-31 + 925: 36,-30 + 926: 36,-29 + 948: 44,-31 + 949: 44,-30 + 1118: -15,32 + 1119: -15,33 + 1120: -15,34 + 1273: 33,15 + 1321: 33,12 + 1322: 33,13 + 1323: 33,14 + 1652: 60,19 + 1778: 69,-24 + 1779: 69,-23 + 1780: 69,-22 + 1781: 69,-21 + 6515: -20,-21 + 6517: -22,-21 + 6561: 76,-24 + 6562: 76,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 301: -15,4 - 353: 35,-26 - 354: 36,-26 - 355: 37,-26 - 371: -23,3 - 375: -21,7 - 376: -20,7 - 381: -22,3 - 382: -21,3 - 405: -22,-23 - 406: -21,-23 - 407: -19,-23 - 408: -18,-23 - 421: -37,5 - 422: -31,5 - 447: -29,-5 - 448: -28,-5 - 449: -27,-5 - 450: -26,-5 - 451: -31,-5 - 452: -33,-5 - 453: -32,-5 - 454: -34,-5 - 455: -36,-5 - 456: -37,-5 - 457: -38,-5 - 458: -39,-5 - 514: -37,3 - 515: -36,3 - 516: -33,3 - 517: -34,3 - 518: -32,3 - 519: -31,3 - 605: -38,-16 - 606: -37,-16 - 607: -36,-16 - 608: -35,-16 - 609: -34,-16 - 610: -33,-16 - 611: -32,-16 - 612: -31,-16 - 613: -29,-16 - 614: -30,-16 - 615: -28,-16 - 724: -40,-33 - 725: -39,-33 - 726: -30,-33 - 727: -29,-33 - 732: -26,-40 - 733: -25,-40 - 734: -24,-40 - 735: -23,-40 - 736: -21,-40 - 737: -22,-40 - 738: -20,-40 - 739: -20,-40 - 748: -19,-40 - 749: -26,-36 - 750: -23,-36 - 751: -20,-36 - 752: -19,-36 - 759: -27,-40 - 760: -28,-40 - 761: -29,-40 - 789: -51,-1 - 790: -50,-1 - 791: -49,-1 - 792: -48,-1 - 793: -47,-1 - 794: -45,-1 - 795: -45,-1 - 796: -46,-1 - 797: -44,-1 - 798: -44,5 - 799: -46,5 - 800: -46,5 - 801: -45,5 - 802: -45,5 - 803: -47,5 - 804: -48,5 - 805: -48,5 - 806: -49,5 - 807: -50,5 - 808: -50,5 - 809: -51,5 - 972: 41,-29 - 973: 42,-29 - 974: 43,-29 - 1066: -61,-29 - 1067: -60,-29 - 1150: -14,31 - 1151: -13,31 - 1152: -12,31 - 5884: -35,3 - 5943: 36,-24 + 299: -15,4 + 351: 35,-26 + 352: 36,-26 + 353: 37,-26 + 369: -23,3 + 373: -21,7 + 374: -20,7 + 379: -22,3 + 380: -21,3 + 403: -22,-23 + 404: -21,-23 + 405: -19,-23 + 406: -18,-23 + 419: -37,5 + 420: -31,5 + 433: -28,-5 + 434: -27,-5 + 435: -26,-5 + 436: -37,-5 + 437: -38,-5 + 438: -39,-5 + 485: -37,3 + 486: -36,3 + 487: -33,3 + 488: -34,3 + 489: -32,3 + 490: -31,3 + 576: -38,-16 + 577: -37,-16 + 578: -36,-16 + 579: -35,-16 + 580: -34,-16 + 581: -33,-16 + 582: -32,-16 + 583: -31,-16 + 584: -29,-16 + 585: -30,-16 + 586: -28,-16 + 695: -40,-33 + 696: -39,-33 + 697: -30,-33 + 698: -29,-33 + 703: -26,-40 + 704: -25,-40 + 705: -24,-40 + 706: -23,-40 + 707: -21,-40 + 708: -22,-40 + 709: -20,-40 + 710: -20,-40 + 719: -19,-40 + 720: -26,-36 + 721: -23,-36 + 722: -20,-36 + 723: -19,-36 + 730: -27,-40 + 731: -28,-40 + 732: -29,-40 + 760: -51,-1 + 761: -50,-1 + 762: -49,-1 + 763: -48,-1 + 764: -47,-1 + 765: -45,-1 + 766: -45,-1 + 767: -46,-1 + 768: -44,-1 + 769: -44,5 + 770: -46,5 + 771: -46,5 + 772: -45,5 + 773: -45,5 + 774: -47,5 + 775: -48,5 + 776: -48,5 + 777: -49,5 + 778: -50,5 + 779: -50,5 + 780: -51,5 + 943: 41,-29 + 944: 42,-29 + 945: 43,-29 + 1037: -61,-29 + 1038: -60,-29 + 1121: -14,31 + 1122: -13,31 + 1123: -12,31 + 5811: -35,3 + 5870: 36,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 300: -15,-2 - 341: 44,-25 - 342: 45,-25 - 367: -23,8 - 368: -22,8 - 369: -21,8 - 370: -20,8 - 373: -21,5 - 374: -20,5 - 383: -21,-1 - 503: -35,5 - 504: -34,5 - 505: -33,5 - 569: -40,-18 - 570: -39,-18 - 571: -38,-18 - 618: -38,-13 - 619: -37,-13 - 620: -36,-13 - 621: -35,-13 - 622: -34,-13 - 623: -33,-13 - 624: -32,-13 - 625: -31,-13 - 626: -29,-13 - 627: -28,-13 - 628: -30,-13 - 631: -38,-10 - 632: -37,-10 - 633: -36,-10 - 634: -30,-10 - 635: -29,-10 - 636: -28,-10 - 720: -40,-26 - 721: -39,-26 - 722: -30,-26 - 723: -29,-26 - 740: -26,-34 - 741: -25,-34 - 742: -24,-34 - 743: -22,-34 - 744: -21,-34 - 745: -20,-34 - 746: -19,-34 - 747: -23,-34 - 753: -26,-38 - 754: -23,-38 - 755: -20,-38 - 756: -19,-38 - 810: -51,3 - 811: -50,3 - 812: -50,3 - 813: -49,3 - 814: -48,3 - 815: -47,3 - 816: -46,3 - 817: -45,3 - 818: -44,3 - 819: -44,-3 - 820: -45,-3 - 821: -46,-3 - 822: -46,-3 - 823: -47,-3 - 824: -49,-3 - 825: -49,-3 - 826: -51,-3 - 827: -51,-3 - 834: -50,-3 - 835: -48,-3 - 1068: -62,-25 - 1069: -61,-25 - 1070: -60,-25 - 1672: 58,19 - 1673: 59,19 - 1674: 60,19 - 2938: 65,-52 - 2939: 66,-52 - 2940: 67,-52 - 5942: 36,-24 - 5962: -38,-17 - 6594: -21,-20 - 6595: -19,-20 - 6746: -37,13 - 6747: -38,13 - 6748: -39,13 + 298: -15,-2 + 339: 44,-25 + 340: 45,-25 + 365: -23,8 + 366: -22,8 + 367: -21,8 + 368: -20,8 + 371: -21,5 + 372: -20,5 + 381: -21,-1 + 474: -35,5 + 475: -34,5 + 476: -33,5 + 540: -40,-18 + 541: -39,-18 + 542: -38,-18 + 589: -38,-13 + 590: -37,-13 + 591: -36,-13 + 592: -35,-13 + 593: -34,-13 + 594: -33,-13 + 595: -32,-13 + 596: -31,-13 + 597: -29,-13 + 598: -28,-13 + 599: -30,-13 + 602: -38,-10 + 603: -37,-10 + 604: -36,-10 + 605: -30,-10 + 606: -29,-10 + 607: -28,-10 + 691: -40,-26 + 692: -39,-26 + 693: -30,-26 + 694: -29,-26 + 711: -26,-34 + 712: -25,-34 + 713: -24,-34 + 714: -22,-34 + 715: -21,-34 + 716: -20,-34 + 717: -19,-34 + 718: -23,-34 + 724: -26,-38 + 725: -23,-38 + 726: -20,-38 + 727: -19,-38 + 781: -51,3 + 782: -50,3 + 783: -50,3 + 784: -49,3 + 785: -48,3 + 786: -47,3 + 787: -46,3 + 788: -45,3 + 789: -44,3 + 790: -44,-3 + 791: -45,-3 + 792: -46,-3 + 793: -46,-3 + 794: -47,-3 + 795: -49,-3 + 796: -49,-3 + 797: -51,-3 + 798: -51,-3 + 805: -50,-3 + 806: -48,-3 + 1039: -62,-25 + 1040: -61,-25 + 1041: -60,-25 + 1642: 58,19 + 1643: 59,19 + 1644: 60,19 + 2891: 65,-52 + 2892: 66,-52 + 2893: 67,-52 + 5869: 36,-24 + 5889: -38,-17 + 6519: -21,-20 + 6520: -19,-20 + 6671: -37,13 + 6672: -38,13 + 6673: -39,13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 293: -17,-1 - 294: -17,0 - 295: -17,1 - 296: -17,3 - 297: -17,2 - 325: -15,7 - 326: -15,6 - 327: -15,5 - 377: -22,6 - 397: -19,-15 - 398: -19,-14 - 399: -19,-13 - 423: -30,6 - 424: -30,7 - 432: -30,-2 - 433: -30,-3 - 434: -30,-4 - 435: -35,-2 - 436: -35,-3 - 437: -35,-4 - 444: -25,-2 - 445: -25,-3 - 446: -25,-4 - 506: -36,6 - 507: -36,7 - 510: -30,5 - 511: -30,4 - 543: -24,17 - 546: -24,21 - 563: -28,13 - 566: -37,-21 - 567: -37,-20 - 568: -37,-19 - 922: -50,-27 - 923: -50,-28 - 924: -50,-29 - 925: -50,-30 - 926: -50,-31 - 927: -50,-26 - 975: 40,-31 - 976: 40,-30 - 1063: -59,-28 - 1064: -59,-27 - 1065: -59,-26 - 1692: 58,19 - 2148: -27,-16 - 2149: -27,-15 - 2150: -27,-14 - 2151: -27,-13 - 6591: -20,-21 - 6593: -18,-21 - 6638: 80,-24 - 6639: 80,-23 + 291: -17,-1 + 292: -17,0 + 293: -17,1 + 294: -17,3 + 295: -17,2 + 323: -15,7 + 324: -15,6 + 325: -15,5 + 375: -22,6 + 395: -19,-15 + 396: -19,-14 + 397: -19,-13 + 421: -30,6 + 422: -30,7 + 430: -25,-2 + 431: -25,-3 + 432: -25,-4 + 477: -36,6 + 478: -36,7 + 481: -30,5 + 482: -30,4 + 514: -24,17 + 517: -24,21 + 534: -28,13 + 537: -37,-21 + 538: -37,-20 + 539: -37,-19 + 893: -50,-27 + 894: -50,-28 + 895: -50,-29 + 896: -50,-30 + 897: -50,-31 + 898: -50,-26 + 946: 40,-31 + 947: 40,-30 + 1034: -59,-28 + 1035: -59,-27 + 1036: -59,-26 + 1662: 58,19 + 2118: -27,-16 + 2119: -27,-15 + 2120: -27,-14 + 2121: -27,-13 + 6516: -20,-21 + 6518: -18,-21 + 6563: 80,-24 + 6564: 80,-23 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa1 decals: - 5900: 80.134224,-34.739353 + 5827: 80.134224,-34.739353 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa2 decals: - 5901: 81.98104,-35.791183 + 5828: 81.98104,-35.791183 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa3 decals: - 5902: 80.43999,-36.158104 + 5829: 80.43999,-36.158104 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb1 decals: - 5903: 83.2041,-35.583263 + 5830: 83.2041,-35.583263 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb3 decals: - 5904: 83.020645,-36.060257 + 5831: 83.020645,-36.060257 - node: color: '#FFFFFFFF' id: e decals: - 898: -40.4296,-9.97279 + 869: -40.4296,-9.97279 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow01 decals: - 5917: 83.460945,-36.10918 - 5918: 80.01192,-34.201206 + 5844: 83.460945,-36.10918 + 5845: 80.01192,-34.201206 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow03 decals: - 5914: 81.7242,-35.840107 + 5841: 81.7242,-35.840107 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 5919: 81.07172,-34.84943 + 5846: 81.07172,-34.84943 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: - 5923: 80.39903,-34.335743 + 5850: 80.39903,-34.335743 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 5912: 80.04861,-36.219257 + 5839: 80.04861,-36.219257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow08 decals: - 5913: 80.8436,-35.974644 + 5840: 80.8436,-35.974644 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 5915: 82.201195,-35.974644 - 5922: 81.98901,-35.155193 + 5842: 82.201195,-35.974644 + 5849: 81.98901,-35.155193 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow10 decals: - 5910: 80.02415,-34.922813 + 5837: 80.02415,-34.922813 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 5911: 80.42776,-35.546574 - 5916: 83.24079,-35.7178 + 5838: 80.42776,-35.546574 + 5843: 83.24079,-35.7178 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow12 decals: - 5920: 82.99192,-34.910583 + 5847: 82.99192,-34.910583 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow13 decals: - 5921: 82.56385,-34.88612 + 5848: 82.56385,-34.88612 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa1 decals: - 5907: 82.82495,-35.571033 + 5834: 82.82495,-35.571033 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: - 5926: 83.059845,-34.91084 + 5853: 83.059845,-34.91084 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: - 5905: 79.9263,-35.46096 + 5832: 79.9263,-35.46096 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb2 decals: - 5906: 81.369514,-35.70557 - 5924: 80.8828,-34.87415 + 5833: 81.369514,-35.70557 + 5851: 80.8828,-34.87415 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: - 5925: 79.87989,-33.993546 + 5852: 79.87989,-33.993546 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc2 decals: - 5909: 79.79176,-36.060257 + 5836: 79.79176,-36.060257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc3 decals: - 5908: 81.10044,-36.13364 + 5835: 81.10044,-36.13364 - node: color: '#FFFFFFFF' id: h decals: - 899: -40.486675,-10.812624 + 870: -40.486675,-10.812624 - node: color: '#FFFF0066' id: shop decals: - 2932: 50.31763,23.128677 - 2933: 51.239506,23.738052 - 2934: 52.00513,23.034927 + 2885: 50.31763,23.128677 + 2886: 51.239506,23.738052 + 2887: 52.00513,23.034927 - node: color: '#FFFFFFFF' id: w decals: - 897: -40.502983,-9.132956 + 868: -40.502983,-9.132956 - type: GridAtmosphere version: 2 data: @@ -9744,13 +9702,17 @@ entities: -9,-3: 1: 56796 -8,-2: - 1: 61680 + 1: 33008 + 3: 12288 -9,-2: - 1: 61680 + 1: 4336 + 3: 49152 -8,-1: - 1: 65535 + 3: 34 + 1: 64136 -9,-1: - 1: 65535 + 3: 204 + 1: 61713 -8,0: 1: 65535 -7,-3: @@ -10383,8 +10345,12 @@ entities: 4: 12544 -11,6: 4: 1 - 0: 136 + 0: 8840 1: 2048 + -11,7: + 0: 42530 + -11,8: + 0: 14 -10,5: 0: 4352 1: 52416 @@ -10394,10 +10360,6 @@ entities: -10,7: 1: 255 0: 61440 - -11,7: - 0: 32768 - -11,8: - 0: 8 -10,8: 0: 34959 -9,5: @@ -10659,7 +10621,7 @@ entities: -3,11: 0: 17476 -3,12: - 0: 76 + 0: 2252 -2,9: 1: 3823 -2,10: @@ -10668,7 +10630,7 @@ entities: 1: 61156 -2,12: 1: 14 - 0: 512 + 0: 768 -1,12: 1: 65391 -8,9: @@ -10704,7 +10666,7 @@ entities: -5,12: 0: 13091 -2,13: - 0: 610 + 0: 36450 -2,14: 0: 8 -1,13: @@ -10717,10 +10679,10 @@ entities: 0: 32768 0,14: 0: 15 + 1,13: + 0: 5988 1,14: 0: 1 - 1,13: - 0: 1124 8,6: 0: 14 9,4: @@ -11474,8 +11436,22 @@ entities: - uid: 21549 components: - type: Transform - pos: 0.23590612,-27.385561 + pos: -0.019477844,-27.376728 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 7549 + components: + - type: Transform + parent: 5268 + - type: InstantAction + container: 5268 + - uid: 7948 + components: + - type: Transform + parent: 7944 + - type: InstantAction + container: 7944 - proto: AirAlarm entities: - uid: 755 @@ -12968,12 +12944,6 @@ entities: - 18249 - 18251 - 18250 - - uid: 8464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,18.5 - parent: 2 - uid: 8465 components: - type: Transform @@ -13217,7 +13187,6 @@ entities: - 7949 - 14066 - 7945 - - 7944 - uid: 17617 components: - type: Transform @@ -13694,9 +13663,6 @@ entities: - type: Transform pos: -36.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 2077 - uid: 7 components: - type: MetaData @@ -13704,9 +13670,6 @@ entities: - type: Transform pos: -28.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 2079 - uid: 8221 components: - type: MetaData @@ -13721,9 +13684,6 @@ entities: - type: Transform pos: 16.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 8530 - uid: 8243 components: - type: MetaData @@ -13731,9 +13691,6 @@ entities: - type: Transform pos: 16.5,23.5 parent: 2 - - type: DeviceLinkSink - links: - - 8532 - uid: 15107 components: - type: Transform @@ -13744,6 +13701,21 @@ entities: - type: Transform pos: 61.5,24.5 parent: 2 + - uid: 17379 + components: + - type: MetaData + name: Nitrogen room airlock + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 21376 + components: + - type: MetaData + name: Nitrogen room airlock + - type: Transform + pos: -30.5,-1.5 + parent: 2 - proto: AirlockArmoryLocked entities: - uid: 4316 @@ -14381,9 +14353,6 @@ entities: - type: Transform pos: 37.5,18.5 parent: 2 - - type: DeviceLinkSink - links: - - 6067 - type: DeviceLinkSource linkedPorts: 6067: @@ -14397,9 +14366,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 44 - type: DeviceLinkSource linkedPorts: 44: @@ -14411,9 +14377,6 @@ entities: - type: Transform pos: -23.5,37.5 parent: 2 - - type: DeviceLinkSink - links: - - 15057 - type: DeviceLinkSource linkedPorts: 15057: @@ -14519,9 +14482,6 @@ entities: - type: Transform pos: 64.5,-53.5 parent: 2 - - type: DeviceLinkSink - links: - - 17526 - uid: 20571 components: - type: MetaData @@ -14549,9 +14509,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 43 - type: DeviceLinkSource linkedPorts: 43: @@ -14564,9 +14521,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 42 - type: DeviceLinkSource linkedPorts: 42: @@ -14580,9 +14534,6 @@ entities: - type: Transform pos: 39.5,19.5 parent: 2 - - type: DeviceLinkSink - links: - - 5663 - type: DeviceLinkSource linkedPorts: 5663: @@ -14594,9 +14545,6 @@ entities: - type: Transform pos: 28.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 5516 - uid: 15606 components: - type: MetaData @@ -14613,9 +14561,6 @@ entities: - type: Transform pos: -6.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 41 - type: DeviceLinkSource linkedPorts: 41: @@ -14630,10 +14575,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 8081 - - 8080 - type: DeviceLinkSource linkedPorts: 8080: @@ -14648,10 +14589,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 8081 - - 8080 - type: DeviceLinkSource linkedPorts: 8081: @@ -14665,9 +14602,6 @@ entities: - type: Transform pos: -21.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 15050 - type: DeviceLinkSource linkedPorts: 15050: @@ -14679,9 +14613,6 @@ entities: - type: Transform pos: -8.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 15889 - type: DeviceLinkSource linkedPorts: 15889: @@ -14693,9 +14624,6 @@ entities: - type: Transform pos: 72.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 16687 - type: DeviceLinkSource linkedPorts: 16687: @@ -14707,9 +14635,6 @@ entities: - type: Transform pos: -58.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 16695 - type: DeviceLinkSource linkedPorts: 16695: @@ -14866,10 +14791,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 8083 - - 8082 - type: DeviceLinkSource linkedPorts: 8083: @@ -14884,10 +14805,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 8083 - - 8082 - type: DeviceLinkSource linkedPorts: 8082: @@ -14901,9 +14818,6 @@ entities: - type: Transform pos: -10.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 15890 - type: DeviceLinkSource linkedPorts: 15890: @@ -14915,9 +14829,6 @@ entities: - type: Transform pos: 72.5,-36.5 parent: 2 - - type: DeviceLinkSink - links: - - 16688 - type: DeviceLinkSource linkedPorts: 16688: @@ -14929,9 +14840,6 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 16696 - type: DeviceLinkSource linkedPorts: 16696: @@ -15805,9 +15713,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 3270 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 50 @@ -16502,9 +16407,6 @@ entities: - type: Transform pos: 49.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 21867 - uid: 6515 components: - type: MetaData @@ -16512,9 +16414,6 @@ entities: - type: Transform pos: 50.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 6514 - uid: 6516 components: - type: MetaData @@ -16522,9 +16421,6 @@ entities: - type: Transform pos: 51.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 21867 - uid: 6705 components: - type: MetaData @@ -16706,9 +16602,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 4690 - uid: 4671 components: - type: MetaData @@ -16717,9 +16610,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 4803 - uid: 4703 components: - type: MetaData @@ -16728,9 +16618,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 4683 - uid: 4784 components: - type: MetaData @@ -16839,9 +16726,6 @@ entities: - type: Transform pos: 56.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 21451 - proto: AirlockVirologyLocked entities: - uid: 2043 @@ -19429,30 +19313,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,19.5 parent: 2 - - uid: 3578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-1.5 - parent: 2 - - uid: 3579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-3.5 - parent: 2 - - uid: 3580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,4.5 - parent: 2 - - uid: 3602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,6.5 - parent: 2 - uid: 6351 components: - type: Transform @@ -19557,6 +19417,30 @@ entities: - type: Transform pos: -18.5,-48.5 parent: 2 + - uid: 21892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,4.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,6.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-1.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-3.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 109 @@ -19712,6 +19596,66 @@ entities: - type: Transform pos: 18.5,-4.5 parent: 2 + - uid: 21937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-4.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 2 - proto: AtmosFixOxygenMarker entities: - uid: 121 @@ -20414,18 +20358,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-23.5 parent: 2 - - uid: 724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 2 - - uid: 725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 - parent: 2 - uid: 726 components: - type: Transform @@ -20450,24 +20382,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-3.5 parent: 2 - - uid: 730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 2 - - uid: 731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 2 - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 2 - uid: 733 components: - type: Transform @@ -20510,12 +20424,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 - - uid: 3856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 2 - uid: 3871 components: - type: Transform @@ -20598,17 +20506,11 @@ entities: - type: Transform pos: 35.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 2076 - uid: 158 components: - type: Transform pos: 34.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 2076 - uid: 159 components: - type: MetaData @@ -20616,9 +20518,6 @@ entities: - type: Transform pos: 3.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 2075 - uid: 160 components: - type: MetaData @@ -20626,41 +20525,26 @@ entities: - type: Transform pos: 3.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 2075 - uid: 5464 components: - type: Transform pos: 24.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 5757 - uid: 5465 components: - type: Transform pos: 25.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 5757 - uid: 5466 components: - type: Transform pos: 26.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 5757 - uid: 5516 components: - type: Transform pos: 29.5,27.5 parent: 2 - - type: DeviceLinkSink - links: - - 12913 - type: DeviceLinkSource linkedPorts: 7407: @@ -20670,9 +20554,6 @@ entities: - type: Transform pos: 25.5,27.5 parent: 2 - - type: DeviceLinkSink - links: - - 12913 - uid: 7121 components: - type: MetaData @@ -20680,9 +20561,6 @@ entities: - type: Transform pos: 60.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 20319 - uid: 7123 components: - type: MetaData @@ -20690,57 +20568,36 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 2 - - type: DeviceLinkSink - links: - - 20319 - uid: 7332 components: - type: Transform pos: 82.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 12914 - uid: 7333 components: - type: Transform pos: 82.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 12914 - uid: 7334 components: - type: Transform pos: 82.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 12914 - uid: 7335 components: - type: Transform pos: 82.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 12916 - uid: 7336 components: - type: Transform pos: 82.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 12916 - uid: 7337 components: - type: Transform pos: 82.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 12916 - uid: 7934 components: - type: MetaData @@ -20748,17 +20605,11 @@ entities: - type: Transform pos: -9.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 14901 - uid: 16939 components: - type: Transform pos: 33.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 2076 - proto: BlastDoorOpen entities: - uid: 4719 @@ -20766,57 +20617,36 @@ entities: - type: Transform pos: 0.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 20230 - uid: 4895 components: - type: Transform pos: 0.5,30.5 parent: 2 - - type: DeviceLinkSink - links: - - 20230 - uid: 20611 components: - type: Transform pos: -0.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 20229 - uid: 20612 components: - type: Transform pos: -1.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 20229 - uid: 20613 components: - type: Transform pos: -2.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 20229 - uid: 21191 components: - type: Transform pos: -0.5,-2.5 parent: 21128 - - type: DeviceLinkSink - links: - - 21235 - uid: 21192 components: - type: Transform pos: -0.5,-4.5 parent: 21128 - - type: DeviceLinkSink - links: - - 21235 - uid: 21401 components: - type: Transform @@ -20866,7 +20696,7 @@ entities: - type: Transform pos: -16.472399,3.4014592 parent: 2 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 164 components: @@ -21229,6 +21059,13 @@ entities: - type: Transform pos: 60.618176,17.745228 parent: 2 +- proto: BoxLightMixed + entities: + - uid: 21913 + components: + - type: Transform + pos: 30.507017,-2.4499931 + parent: 2 - proto: BoxMagazinePistol entities: - uid: 5102 @@ -22081,6 +21918,11 @@ entities: - type: Transform pos: -6.5,-13.5 parent: 2 + - uid: 962 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 - uid: 1072 components: - type: Transform @@ -22191,11 +22033,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 3257 - components: - - type: Transform - pos: -54.5,1.5 - parent: 2 - uid: 3283 components: - type: Transform @@ -24556,26 +24393,11 @@ entities: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 11115 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - - uid: 11116 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - uid: 11117 components: - type: Transform pos: -53.5,-1.5 parent: 2 - - uid: 11118 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 - uid: 11119 components: - type: Transform @@ -24696,11 +24518,6 @@ entities: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 11143 - components: - - type: Transform - pos: -42.5,0.5 - parent: 2 - uid: 11144 components: - type: Transform @@ -38056,6 +37873,31 @@ entities: - type: Transform pos: 45.5,15.5 parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 - proto: CableApcStack entities: - uid: 264 @@ -38066,7 +37908,7 @@ entities: - uid: 4398 components: - type: Transform - pos: 30.551533,-1.368087 + pos: 30.505177,-1.20519 parent: 2 - uid: 6775 components: @@ -43355,7 +43197,7 @@ entities: - uid: 4396 components: - type: Transform - pos: 30.496494,-0.98282325 + pos: 30.510612,-0.9931929 parent: 2 - proto: CableMV entities: @@ -43909,6 +43751,11 @@ entities: - type: Transform pos: 6.5,54.5 parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 1.5,54.5 + parent: 2 - uid: 1087 components: - type: Transform @@ -43924,6 +43771,11 @@ entities: - type: Transform pos: 36.5,-39.5 parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 0.5,54.5 + parent: 2 - uid: 1549 components: - type: Transform @@ -43979,6 +43831,11 @@ entities: - type: Transform pos: -6.5,52.5 parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 - uid: 3520 components: - type: Transform @@ -47844,6 +47701,16 @@ entities: - type: Transform pos: 55.5,-39.5 parent: 2 + - uid: 20198 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + pos: 3.5,55.5 + parent: 2 - uid: 20422 components: - type: Transform @@ -48174,6 +48041,31 @@ entities: - type: Transform pos: 88.5,-11.5 parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -1.5,54.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -2.5,54.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 - proto: CableMVStack entities: - uid: 446 @@ -48184,7 +48076,7 @@ entities: - uid: 4397 components: - type: Transform - pos: 30.514841,-1.1846281 + pos: 30.510612,-1.0964735 parent: 2 - proto: CableTerminal entities: @@ -55783,6 +55675,65 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 + - uid: 21890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-33.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-37.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,55.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,53.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,50.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,48.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 - proto: Chair entities: - uid: 678 @@ -57402,6 +57353,16 @@ entities: - type: Transform pos: -30.5,-12.5 parent: 2 + - uid: 13181 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 - uid: 13862 components: - type: Transform @@ -59034,8 +58995,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -59052,8 +59013,8 @@ entities: showEnts: False occludes: True ents: - - 16652 - 16651 + - 16652 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -59065,6 +59026,44 @@ entities: - type: Transform pos: -13.5,-18.5 parent: 2 +- proto: ClosetWallEmergency + entities: + - uid: 3578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,44.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: + - 3579 + - 3580 + - 3602 + - 5268 + - 7944 + - 8291 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 7555 @@ -59105,12 +59104,6 @@ entities: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 8291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,44.5 - parent: 2 - uid: 8293 components: - type: Transform @@ -59232,6 +59225,41 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-24.5 parent: 2 + - uid: 8292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.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: + - 8869 + - 10635 + - 14914 + - 15992 + - 16235 - proto: ClosetWallFireFilledRandom entities: - uid: 8275 @@ -59267,12 +59295,6 @@ entities: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 8292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 2 - uid: 8294 components: - type: Transform @@ -59791,6 +59813,22 @@ entities: - type: Transform pos: 21.504559,-47.81257 parent: 2 +- proto: ClothingHeadHelmetFire + entities: + - uid: 10635 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15992 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadsetMining entities: - uid: 7563 @@ -59810,6 +59848,22 @@ entities: - type: Transform pos: -35.36938,-10.505542 parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 3602 + components: + - type: Transform + parent: 3578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8291 + components: + - type: Transform + parent: 3578 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskBreathMedicalSecurity entities: - uid: 16508 @@ -59841,6 +59895,13 @@ entities: - type: Transform pos: -27.500795,38.597904 parent: 2 + - uid: 16235 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - uid: 900 @@ -60009,6 +60070,22 @@ entities: - type: Transform pos: 8.466396,42.546463 parent: 2 +- proto: ClothingOuterSuitFire + entities: + - uid: 8869 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14914 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - uid: 20817 @@ -61067,180 +61144,120 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - uid: 5475 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,27.5 parent: 2 - - type: DeviceLinkSink - links: - - 5553 - uid: 5478 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,26.5 parent: 2 - - type: DeviceLinkSink - links: - - 5553 - uid: 5510 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 5553 - uid: 5554 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,23.5 parent: 2 - - type: DeviceLinkSink - links: - - 5553 - uid: 7406 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 5553 - uid: 7905 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-42.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - uid: 7911 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 20106 - uid: 7912 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 20106 - uid: 7913 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 20106 - uid: 7915 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - uid: 7916 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 20106 - uid: 8553 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,23.5 parent: 2 - - type: DeviceLinkSink - links: - - 15603 - uid: 8665 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 20106 - uid: 9233 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - uid: 17528 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 15603 - uid: 17529 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 15603 - uid: 17530 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,26.5 parent: 2 - - type: DeviceLinkSink - links: - - 15603 - uid: 17531 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 - - type: DeviceLinkSink - links: - - 15603 - uid: 20107 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - proto: CowToolboxFilled entities: - uid: 20818 @@ -62155,6 +62172,8 @@ entities: - type: Transform pos: -47.5,10.5 parent: 2 + - type: WarpPoint + location: Arcade - proto: DefaultStationBeaconSingularity entities: - uid: 17163 @@ -62410,8 +62429,18 @@ entities: - type: Transform pos: 3.6125865,51.851067 parent: 2 + - uid: 21883 + components: + - type: Transform + pos: 3.422883,51.88294 + parent: 2 - proto: DisposalBend entities: + - uid: 1652 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 - uid: 2055 components: - type: Transform @@ -62430,6 +62459,12 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 + - uid: 11143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 2 - uid: 12928 components: - type: Transform @@ -62622,11 +62657,6 @@ entities: - type: Transform pos: -17.5,-0.5 parent: 2 - - uid: 13192 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 2 - uid: 13193 components: - type: Transform @@ -62689,12 +62719,6 @@ entities: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 13237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-0.5 - parent: 2 - uid: 13242 components: - type: Transform @@ -63032,17 +63056,17 @@ entities: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 13182 + - uid: 13186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-0.5 + pos: -35.5,0.5 parent: 2 - - uid: 13183 + - uid: 13192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-0.5 + pos: -28.5,0.5 parent: 2 - uid: 13200 components: @@ -63216,6 +63240,24 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-40.5 parent: 2 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 - uid: 832 components: - type: Transform @@ -63234,6 +63276,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 + - uid: 2298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 - uid: 3463 components: - type: Transform @@ -63304,6 +63352,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-44.5 parent: 2 + - uid: 11118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 2 - uid: 12798 components: - type: Transform @@ -64417,89 +64471,45 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 2 - - uid: 13176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 2 - - uid: 13177 + - uid: 13174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 + pos: -35.5,-3.5 parent: 2 - uid: 13178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-1.5 - parent: 2 - - uid: 13179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-3.5 - parent: 2 - - uid: 13180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 2 - - uid: 13181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-1.5 - parent: 2 - - uid: 13184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-0.5 + pos: -35.5,-2.5 parent: 2 - uid: 13185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 2 - - uid: 13186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 + rot: -1.5707963267948966 rad + pos: -25.5,0.5 parent: 2 - uid: 13187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 + rot: -1.5707963267948966 rad + pos: -26.5,0.5 parent: 2 - uid: 13188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-0.5 + pos: -32.5,0.5 parent: 2 - uid: 13189 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + pos: -36.5,0.5 parent: 2 - uid: 13190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 2 - - uid: 13191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 + rot: -1.5707963267948966 rad + pos: -27.5,0.5 parent: 2 - uid: 13202 components: @@ -64654,23 +64664,11 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,1.5 parent: 2 - - uid: 13238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 2 - - uid: 13239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 2 - - uid: 13240 + - uid: 13237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-0.5 + pos: -33.5,0.5 parent: 2 - uid: 13244 components: @@ -67277,6 +67275,36 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,14.5 parent: 2 + - uid: 21929 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 - proto: DisposalTrunk entities: - uid: 2313 @@ -67359,18 +67387,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 2 - - uid: 13174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-4.5 - parent: 2 - - uid: 13175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 2 - uid: 13195 components: - type: Transform @@ -67554,6 +67570,18 @@ entities: - type: Transform pos: 21.5,21.5 parent: 2 + - uid: 21935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-4.5 + parent: 2 - proto: DisposalUnit entities: - uid: 950 @@ -67611,16 +67639,6 @@ entities: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 961 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 2 - - uid: 962 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 2 - uid: 964 components: - type: Transform @@ -67776,6 +67794,16 @@ entities: - type: Transform pos: -59.5,-64.5 parent: 2 + - uid: 21924 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 3227 @@ -68204,6 +68232,18 @@ entities: - type: Transform pos: 51.5,-38.5 parent: 2 + - uid: 2295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-4.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 - uid: 2871 components: - type: Transform @@ -68228,6 +68268,12 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,2.5 parent: 2 + - uid: 13180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 - uid: 14068 components: - type: Transform @@ -68355,12 +68401,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-8.5 parent: 2 - - uid: 17379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-4.5 - parent: 2 - uid: 17380 components: - type: Transform @@ -68738,12 +68778,6 @@ entities: - type: Transform pos: -8.5,29.5 parent: 2 - - uid: 17449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,45.5 - parent: 2 - uid: 17450 components: - type: Transform @@ -68768,12 +68802,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,28.5 parent: 2 - - uid: 17454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,28.5 - parent: 2 - uid: 17455 components: - type: Transform @@ -68903,6 +68931,28 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-4.5 parent: 2 + - uid: 21911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 3579 + components: + - type: Transform + parent: 3578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3580 + components: + - type: Transform + parent: 3578 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EmergencyRollerBed entities: - uid: 985 @@ -73085,12 +73135,6 @@ entities: deviceLists: - 17618 - 9188 - - uid: 7549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,20.5 - parent: 2 - uid: 8536 components: - type: Transform @@ -76406,6 +76450,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 20199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 20214 components: - type: Transform @@ -77128,14 +77180,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8373 components: - type: Transform @@ -91875,6 +91919,12 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-14.5 parent: 2 + - uid: 2300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 2 - uid: 5522 components: - type: Transform @@ -92105,17 +92155,6 @@ entities: - 4744 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15596 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 9034 components: - type: Transform @@ -92124,6 +92163,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 13175 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 - uid: 17707 components: - type: Transform @@ -93175,6 +93219,14 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 21128 + - uid: 21888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 893 @@ -95417,11 +95469,21 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 2 + - uid: 1653 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 - uid: 2012 components: - type: Transform pos: 37.5,-31.5 parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 - uid: 2700 components: - type: Transform @@ -95432,6 +95494,11 @@ entities: - type: Transform pos: -3.5,22.5 parent: 2 + - uid: 3257 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 - uid: 3329 components: - type: Transform @@ -96892,6 +96959,16 @@ entities: - type: Transform pos: -13.5,-41.5 parent: 2 + - uid: 13176 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 - uid: 14852 components: - type: Transform @@ -98792,6 +98869,46 @@ entities: - type: Transform pos: 68.5,17.5 parent: 2 + - uid: 21909 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 - proto: GrilleBroken entities: - uid: 15037 @@ -99038,6 +99155,16 @@ entities: - type: Transform pos: -16.5,-46.5 parent: 2 + - uid: 21922 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 5534 @@ -99675,6 +99802,16 @@ entities: - type: Transform pos: 67.5,17.5 parent: 2 + - uid: 21920 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 16916 @@ -100234,12 +100371,10 @@ entities: - uid: 1467 components: - type: Transform - pos: -18.865784,-2.652586 + pos: -18.87034,-2.5351436 parent: 2 - type: Stack - count: 15 - - type: Item - size: 15 + count: 10 - proto: IngotSilver entities: - uid: 14400 @@ -100479,9 +100614,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 14403 - uid: 20778 components: - type: Transform @@ -100490,9 +100622,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 20784 - uid: 20779 components: - type: Transform @@ -100500,9 +100629,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 20785 - uid: 20780 components: - type: Transform @@ -100511,9 +100637,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 20786 - uid: 20783 components: - type: Transform @@ -100521,9 +100644,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 20781 - proto: JetpackBlueFilled entities: - uid: 1468 @@ -100773,11 +100893,6 @@ entities: - type: Transform pos: 77.49804,-24.241774 parent: 2 - - uid: 16235 - components: - - type: Transform - pos: 76.45136,-24.214552 - parent: 2 - proto: LauncherCreamPie entities: - uid: 16601 @@ -101719,9 +101834,6 @@ entities: - type: Transform pos: 80.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 5555 - proto: MachineCentrifuge entities: - uid: 14259 @@ -102572,11 +102684,6 @@ entities: parent: 2 - proto: Multitool entities: - - uid: 1509 - components: - - type: Transform - pos: 15.470978,-22.490135 - parent: 2 - uid: 9493 components: - type: Transform @@ -102616,6 +102723,11 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 - uid: 6386 components: - type: Transform @@ -102721,6 +102833,23 @@ entities: - type: Transform pos: 10.5,16.5 parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 5268 + components: + - type: Transform + parent: 3578 + - type: GasTank + toggleActionEntity: 7549 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7549 + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 1515 @@ -102951,6 +103080,23 @@ entities: - type: Transform pos: 55.5,-29.5 parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 7944 + components: + - type: Transform + parent: 3578 + - type: GasTank + toggleActionEntity: 7948 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7948 + - type: InsideEntityStorage - proto: Paper entities: - uid: 1521 @@ -103344,6 +103490,13 @@ entities: - type: Transform pos: 21.69673,-35.586906 parent: 2 + - uid: 21452 + components: + - type: Transform + pos: -1.3248596,-17.594215 + parent: 2 + - type: Stack + count: 15 - proto: Pen entities: - uid: 1543 @@ -103421,7 +103574,7 @@ entities: - uid: 3 components: - type: Transform - pos: 0.6421561,-27.635561 + pos: 0.62262845,-27.523497 parent: 2 - uid: 4589 components: @@ -103817,6 +103970,15 @@ entities: - type: Transform pos: -43.503815,9.467685 parent: 2 +- proto: PlushieRouny + entities: + - uid: 21881 + components: + - type: MetaData + desc: This rouny feels like it has experienced the horrors of war. + - type: Transform + pos: 35.498035,-33.025932 + parent: 2 - proto: PlushieSharkBlue entities: - uid: 6594 @@ -104984,44 +105146,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 1651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-4.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1653 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1654 - components: - - type: Transform - pos: -29.5,7.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1655 components: - type: Transform @@ -105294,9 +105418,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 14879 - uid: 1688 components: - type: Transform @@ -105306,9 +105427,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 16121 - uid: 1689 components: - type: Transform @@ -105462,6 +105580,11 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 1903 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 - uid: 2683 components: - type: Transform @@ -105482,6 +105605,12 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 3099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 2 - uid: 3256 components: - type: Transform @@ -106769,6 +106898,11 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 + - uid: 13184 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 - uid: 13666 components: - type: Transform @@ -106883,6 +107017,18 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 21926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 2 - proto: PoweredlightLED entities: - uid: 4915 @@ -107064,40 +107210,40 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 15610 - uid: 12670 components: - type: Transform pos: 43.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 7054 - uid: 12922 components: - type: Transform pos: -12.5,-36.5 parent: 2 + - uid: 13177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 2 - uid: 14224 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 7032 - uid: 14851 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 21875 - uid: 15005 components: - type: Transform @@ -107183,9 +107329,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 7039 - uid: 16125 components: - type: Transform @@ -107421,17 +107564,11 @@ entities: - type: Transform pos: 59.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 21873 - uid: 21877 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 21876 - proto: PoweredSmallLightEmpty entities: - uid: 16926 @@ -109281,11 +109418,6 @@ entities: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 1897 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - uid: 1898 components: - type: Transform @@ -109359,11 +109491,6 @@ entities: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 1903 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 2 - uid: 1904 components: - type: Transform @@ -110979,11 +111106,6 @@ entities: - type: Transform pos: -30.5,-15.5 parent: 2 - - uid: 21376 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - uid: 21379 components: - type: Transform @@ -111439,20 +111561,6 @@ entities: - type: Transform pos: 56.5,-22.5 parent: 2 -- proto: RCD - entities: - - uid: 1085 - components: - - type: Transform - pos: -0.5453439,-27.354311 - parent: 2 -- proto: RCDAmmo - entities: - - uid: 3091 - components: - - type: Transform - pos: -0.5609689,-27.510561 - parent: 2 - proto: ReagentContainerFlour entities: - uid: 1939 @@ -111480,9 +111588,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 7940 - proto: ReinforcedGirder entities: - uid: 14964 @@ -111718,6 +111823,16 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 730 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 - uid: 758 components: - type: Transform @@ -111728,6 +111843,11 @@ entities: - type: Transform pos: -19.5,-47.5 parent: 2 + - uid: 961 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 - uid: 1963 components: - type: Transform @@ -113391,6 +113511,16 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 + - uid: 13239 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 - uid: 13965 components: - type: Transform @@ -114237,11 +114367,6 @@ entities: rot: 3.141592653589793 rad pos: 71.45334,-7.4422317 parent: 2 - - uid: 20343 - components: - - type: Transform - pos: 6.533079,-14.462477 - parent: 2 - uid: 21253 components: - type: Transform @@ -114256,6 +114381,22 @@ entities: parent: 2 - type: Stack count: 15 + - uid: 21882 + components: + - type: Transform + pos: 6.5330257,-14.510506 + parent: 2 + - type: Stack + count: 15 +- proto: SheetPlasma1 + entities: + - uid: 21880 + components: + - type: Transform + pos: 15.5072975,-22.504484 + parent: 2 + - type: Stack + count: 15 - proto: SheetPlasteel entities: - uid: 7622 @@ -114285,8 +114426,10 @@ entities: - uid: 5108 components: - type: Transform - pos: -1.4666648,-17.486858 + pos: -1.5633564,-17.410757 parent: 2 + - type: Stack + count: 15 - proto: SheetSteel entities: - uid: 2058 @@ -114343,6 +114486,8 @@ entities: - type: Transform pos: 6.5942326,-13.459567 parent: 2 + - type: Stack + count: 15 - proto: ShotGunCabinetFilled entities: - uid: 8186 @@ -114351,13 +114496,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,33.5 parent: 2 -- proto: Shovel - entities: - - uid: 5268 - components: - - type: Transform - pos: 3.3911295,51.829834 - parent: 2 - proto: ShuttersNormal entities: - uid: 2061 @@ -114384,72 +114522,48 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 17517 - uid: 6547 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 17517 - uid: 6548 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 17519 - uid: 6549 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 17519 - uid: 6550 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 17518 - uid: 6551 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 17518 - uid: 16146 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,28.5 parent: 2 - - type: DeviceLinkSink - links: - - 16149 - uid: 16147 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,28.5 parent: 2 - - type: DeviceLinkSink - links: - - 16148 - proto: ShuttersNormalOpen entities: - uid: 2064 @@ -114458,630 +114572,411 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 12911 - uid: 2065 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 12911 - uid: 2066 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 12911 - uid: 2067 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,2.5 parent: 2 - - type: DeviceLinkSink - links: - - 12911 - uid: 2068 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 12911 - uid: 2693 components: - type: Transform pos: 43.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2100 - uid: 2694 components: - type: Transform pos: 42.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2100 - uid: 2908 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-52.5 parent: 2 - - type: DeviceLinkSink - links: - - 17526 - uid: 4423 components: - type: Transform pos: -45.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 4520 - uid: 4424 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 4520 - uid: 4425 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 4520 - uid: 4540 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4542 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4543 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4544 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4545 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4546 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 4547 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 4548 - uid: 5655 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 5653 - uid: 5661 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 5653 - uid: 5755 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,19.5 parent: 2 - - type: DeviceLinkSink - links: - - 5653 - uid: 7033 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 18465 - uid: 7377 components: - type: Transform pos: -20.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - uid: 8280 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 8281 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 8437 components: - type: Transform pos: 34.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 8587 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8588 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8589 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8590 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8591 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8592 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 17507 - uid: 8687 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 8185 - uid: 8688 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 8185 - uid: 8689 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 8185 - uid: 8691 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 8185 - uid: 8744 components: - type: Transform pos: 48.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 8747 components: - type: Transform pos: 45.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2100 - uid: 8748 components: - type: Transform pos: 46.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2100 - uid: 8768 components: - type: Transform pos: 47.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 9248 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 12915 components: - type: Transform pos: 42.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 14724 components: - type: Transform pos: 38.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 15408 components: - type: Transform pos: -22.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - uid: 15409 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - uid: 15410 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - uid: 15411 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - uid: 16627 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 16628 - uid: 17478 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 21844 - uid: 17479 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 21844 - uid: 17480 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 21844 - uid: 17492 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17491 - uid: 17493 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 17491 - uid: 17494 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 17491 - uid: 17495 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 17491 - uid: 17496 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 17499 - uid: 17497 components: - type: Transform pos: -15.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 17499 - uid: 17498 components: - type: Transform pos: -17.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 17499 - uid: 17502 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 17505 - uid: 17503 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,23.5 parent: 2 - - type: DeviceLinkSink - links: - - 17505 - uid: 17504 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 17505 - uid: 17512 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 17516 - uid: 17513 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17516 - uid: 17514 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 17516 - uid: 17515 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 17516 - uid: 17521 components: - type: Transform pos: 57.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17520 - uid: 17522 components: - type: Transform pos: 58.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17520 - uid: 17523 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17520 - uid: 17524 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 17520 - uid: 19928 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 18465 - uid: 20807 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 17461 - uid: 20827 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 17461 - uid: 21746 components: - type: Transform pos: -21.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 15913 - proto: ShuttersRadiationOpen entities: - uid: 2069 @@ -115089,65 +114984,41 @@ entities: - type: Transform pos: 2.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2074 - uid: 2070 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2074 - uid: 2071 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2074 - uid: 2072 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2074 - uid: 2073 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 2074 - uid: 20350 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 20353 - uid: 20351 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 20353 - uid: 20352 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 20353 - proto: ShuttersWindowOpen entities: - uid: 4616 @@ -115155,73 +115026,46 @@ entities: - type: Transform pos: 35.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4617 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4618 components: - type: Transform pos: 37.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4620 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4621 components: - type: Transform pos: 40.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4622 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4624 components: - type: Transform pos: 43.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4625 components: - type: Transform pos: 44.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - uid: 4626 components: - type: Transform pos: 45.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 16704 - proto: ShuttleConsoleCircuitboard entities: - uid: 6028 @@ -115629,6 +115473,8 @@ entities: - Pressed: Toggle - uid: 12914 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-12.5 @@ -115643,6 +115489,8 @@ entities: - Pressed: Toggle - uid: 12916 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-16.5 @@ -115979,6 +115827,8 @@ entities: - Pressed: Toggle - uid: 20319 components: + - type: MetaData + name: Blast doors button - type: Transform pos: 61.5,-21.5 parent: 2 @@ -116412,6 +116262,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 + - uid: 17454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.502985,-24.238998 + parent: 2 - proto: SignDirectionalFood entities: - uid: 13619 @@ -116485,6 +116341,12 @@ entities: parent: 2 - proto: SignDirectionalMed entities: + - uid: 17449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.470295,-5.772457 + parent: 2 - uid: 20486 components: - type: Transform @@ -116508,6 +116370,18 @@ entities: rot: 1.5707963267948966 rad pos: 18.508957,-25.217173 parent: 2 + - uid: 21908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.512268,-21.218489 + parent: 2 + - uid: 21910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.47832,-32.75125 + parent: 2 - proto: SignDirectionalSalvage entities: - uid: 13630 @@ -118656,12 +118530,6 @@ entities: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 3099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 2 - uid: 3741 components: - type: Transform @@ -118776,24 +118644,30 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-23.5 parent: 2 - - uid: 8869 + - uid: 8464 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 - - uid: 10635 + - uid: 21884 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-21.5 + pos: 32.5,-21.5 parent: 2 - - uid: 15992 + - uid: 21885 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 + - uid: 21886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-21.5 + parent: 2 - proto: StairStage entities: - uid: 2150 @@ -118864,17 +118738,17 @@ entities: - uid: 21365 components: - type: Transform - pos: 30.64239,-1.8809888 + pos: 30.702707,-1.6835423 parent: 2 - uid: 21366 components: - type: Transform - pos: 30.439264,-2.1622388 + pos: 30.441788,-1.871078 parent: 2 - uid: 21367 components: - type: Transform - pos: 30.54864,-2.0372388 + pos: 30.572248,-1.7732333 parent: 2 - proto: StationMap entities: @@ -118906,6 +118780,12 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-34.5 parent: 2 + - uid: 20200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 - uid: 20438 components: - type: Transform @@ -118942,6 +118822,12 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,9.5 parent: 2 + - uid: 21889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-48.5 + parent: 2 - proto: StoolBar entities: - uid: 2152 @@ -123537,42 +123423,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-3.5 parent: 2 - - uid: 2295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 2 - - uid: 2296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 2 - - uid: 2297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 2 - - uid: 2298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 2 - - uid: 2299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 2 - - uid: 2300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 2 - uid: 2301 components: - type: Transform @@ -137640,6 +137490,17 @@ entities: parent: 21128 - proto: WallSolid entities: + - uid: 1654 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-4.5 + parent: 2 - uid: 2702 components: - type: Transform @@ -138440,11 +138301,6 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 3228 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 2 - uid: 3229 components: - type: Transform @@ -140122,6 +139978,16 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,26.5 parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 - uid: 11655 components: - type: Transform @@ -140372,6 +140238,12 @@ entities: - type: Transform pos: -25.5,-41.5 parent: 2 + - uid: 1651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 2 - uid: 2704 components: - type: Transform @@ -140984,6 +140856,12 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 + - uid: 3228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-3.5 + parent: 2 - uid: 3230 components: - type: Transform @@ -141450,6 +141328,12 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-12.5 parent: 2 + - uid: 3856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 2 - uid: 4067 components: - type: Transform @@ -142263,6 +142147,18 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,23.5 parent: 2 + - uid: 13191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-5.5 + parent: 2 - uid: 14001 components: - type: Transform @@ -143291,9 +143187,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 3270 - uid: 3494 components: - type: Transform @@ -143713,9 +143606,6 @@ entities: - type: Transform pos: 43.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 3270 - uid: 7603 components: - type: Transform @@ -143796,18 +143686,12 @@ entities: - type: Transform pos: 59.5,18.5 parent: 2 - - type: DeviceLinkSink - links: - - 6961 - uid: 6960 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,19.5 parent: 2 - - type: DeviceLinkSink - links: - - 6961 - proto: WindoorSecureSalvageLocked entities: - uid: 5542 @@ -144770,4 +144654,9 @@ entities: - type: Transform pos: 1.7595062,-8.203196 parent: 21128 + - uid: 21928 + components: + - type: Transform + pos: -33.683754,-4.75871 + parent: 2 ... diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index d9d9018051af..7353864af196 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -123,7 +123,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA + tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 @@ -171,7 +171,7 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 @@ -179,7 +179,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAACfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADfwAAAAAAfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,1: ind: 2,1 @@ -187,11 +187,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAAB + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -203,7 +203,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 @@ -251,15 +251,15 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA + tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABYAAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 @@ -267,7 +267,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 @@ -291,7 +291,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -363,7 +363,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -445,445 +445,445 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 709: 42.99683,-1.538444 + 707: 42.99683,-1.538444 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 710: 39.96558,-1.975944 + 708: 39.96558,-1.975944 - node: color: '#FFFFFFFF' id: Bot decals: - 963: -57,-9 - 964: -56,-9 - 965: -55,-9 - 966: -55,-10 - 967: -56,-10 - 968: -57,-10 - 969: -57,-11 - 970: -56,-11 - 971: -55,-11 - 972: -55,-12 - 973: -56,-12 - 974: -57,-12 - 3491: -3,-31 + 961: -57,-9 + 962: -56,-9 + 963: -55,-9 + 964: -55,-10 + 965: -56,-10 + 966: -57,-10 + 967: -57,-11 + 968: -56,-11 + 969: -55,-11 + 970: -55,-12 + 971: -56,-12 + 972: -57,-12 + 3489: -3,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 714: 40,-3 + 712: 40,-3 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2721: 35,-25 - 2722: 35,-26 - 2723: 32,-25 - 2724: 32,-24 - 2725: 32,-22 - 2836: 7,-38 - 2967: 15,-40 - 2968: 15,-41 + 2719: 35,-25 + 2720: 35,-26 + 2721: 32,-25 + 2722: 32,-24 + 2723: 32,-22 + 2834: 7,-38 + 2965: 15,-40 + 2966: 15,-41 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BotLeft decals: - 711: 43,-3 - 712: 42,-3 - 713: 41,-3 + 709: 43,-3 + 710: 42,-3 + 711: 41,-3 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2837: 7,-38 + 2835: 7,-38 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2838: 7,-38 + 2836: 7,-38 - node: color: '#FFFFFFFF' id: Box decals: - 1734: 49,-37 - 1735: 49,-38 - 2341: -7,-51 - 2342: -5,-53 + 1732: 49,-37 + 1733: 49,-38 + 2339: -7,-51 + 2340: -5,-53 - node: color: '#C74EBDB2' id: BrickCornerOverlayNE decals: - 2933: -18,-25 + 2931: -18,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNE decals: - 2484: 5,51 - 3098: -3,42 + 2482: 5,51 + 3096: -3,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNE decals: - 2946: -22,-25 + 2944: -22,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNE decals: - 2939: -15,-25 + 2937: -15,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlayNW decals: - 2934: -20,-25 + 2932: -20,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNW decals: - 2485: 3,51 - 3097: -6,42 + 2483: 3,51 + 3095: -6,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNW decals: - 2945: -23,-25 + 2943: -23,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNW decals: - 2940: -16,-25 + 2938: -16,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlaySE decals: - 2936: -18,-26 + 2934: -18,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySE decals: - 2486: 5,49 - 3095: -3,41 + 2484: 5,49 + 3093: -3,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySE decals: - 2943: -22,-26 + 2941: -22,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySE decals: - 2941: -15,-26 + 2939: -15,-26 - node: color: '#C74EBDB2' id: BrickCornerOverlaySW decals: - 2935: -20,-26 + 2933: -20,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySW decals: - 2438: 7,40 - 2487: 3,49 - 3096: -6,41 + 2436: 7,40 + 2485: 3,49 + 3094: -6,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySW decals: - 2944: -23,-26 + 2942: -23,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySW decals: - 2942: -16,-26 + 2940: -16,-26 - node: color: '#EFB34196' id: BrickLineOverlayE decals: - 2449: 9,50 - 2450: 9,48 - 2451: 9,47 - 2459: 19,50 - 2470: 19,51 - 2471: 9,51 - 2490: 5,50 - 2492: 3,50 + 2447: 9,50 + 2448: 9,48 + 2449: 9,47 + 2457: 19,50 + 2468: 19,51 + 2469: 9,51 + 2488: 5,50 + 2490: 3,50 - node: color: '#C74EBDB2' id: BrickLineOverlayN decals: - 2937: -19,-25 - 2948: -20,-27 - 2949: -18,-27 - 2955: -19,-27 + 2935: -19,-25 + 2946: -20,-27 + 2947: -18,-27 + 2953: -19,-27 - node: color: '#EFB34196' id: BrickLineOverlayN decals: - 2452: 10,46 - 2453: 11,46 - 2454: 15,46 - 2455: 16,46 - 2489: 4,51 - 2495: 4,49 - 3099: -4,42 - 3100: -5,42 + 2450: 10,46 + 2451: 11,46 + 2452: 15,46 + 2453: 16,46 + 2487: 4,51 + 2493: 4,49 + 3097: -4,42 + 3098: -5,42 - node: color: '#F9801DB2' id: BrickLineOverlayN decals: - 2947: -23,-27 - 2956: -22,-27 + 2945: -23,-27 + 2954: -22,-27 - node: color: '#FED83DB2' id: BrickLineOverlayN decals: - 2950: -15,-27 - 2954: -16,-27 + 2948: -15,-27 + 2952: -16,-27 - node: color: '#C74EBDB2' id: BrickLineOverlayS decals: - 2938: -19,-26 + 2936: -19,-26 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 2491: 4,49 - 2493: 4,51 - 3101: -5,41 - 3102: -4,41 + 2489: 4,49 + 2491: 4,51 + 3099: -5,41 + 3100: -4,41 - node: color: '#EFB34196' id: BrickLineOverlayW decals: - 2439: 7,41 - 2440: 7,42 - 2441: 7,43 - 2442: 7,44 - 2443: 7,45 - 2444: 7,46 - 2445: 7,47 - 2446: 7,48 - 2447: 7,49 - 2448: 7,50 - 2456: 17,47 - 2457: 17,48 - 2458: 17,50 - 2469: 17,51 - 2472: 7,51 - 2488: 3,50 - 2494: 5,50 + 2437: 7,41 + 2438: 7,42 + 2439: 7,43 + 2440: 7,44 + 2441: 7,45 + 2442: 7,46 + 2443: 7,47 + 2444: 7,48 + 2445: 7,49 + 2446: 7,50 + 2454: 17,47 + 2455: 17,48 + 2456: 17,50 + 2467: 17,51 + 2470: 7,51 + 2486: 3,50 + 2492: 5,50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 874: -53,8 - 875: -52,7 - 1727: 42,-40 + 872: -53,8 + 873: -52,7 + 1725: 42,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 872: -55,8 - 876: -57,7 - 1726: 40,-40 + 870: -55,8 + 874: -57,7 + 1724: 40,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 877: -52,5 + 875: -52,5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 878: -57,5 + 876: -57,5 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 620: 22,4 - 885: -53,7 + 618: 22,4 + 883: -53,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 886: -55,7 + 884: -55,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 621: 22,9 + 619: 22,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 616: 22,8 - 617: 22,7 - 618: 22,6 - 619: 22,5 - 887: -52,6 - 2519: 27,42 - 2520: 27,43 - 2521: 30,42 - 2522: 30,43 + 614: 22,8 + 615: 22,7 + 616: 22,6 + 617: 22,5 + 885: -52,6 + 2517: 27,42 + 2518: 27,43 + 2519: 30,42 + 2520: 30,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 873: -54,8 - 884: -56,7 - 1728: 41,-40 - 3509: -8,-24 + 871: -54,8 + 882: -56,7 + 1726: 41,-40 + 3507: -8,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 879: -56,5 - 880: -55,5 - 881: -54,5 - 882: -53,5 + 877: -56,5 + 878: -55,5 + 879: -54,5 + 880: -53,5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 883: -57,6 - 2523: 31,42 - 2524: 31,43 + 881: -57,6 + 2521: 31,42 + 2522: 31,43 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 724: -1,-34 - 2325: -4,-50 - 2389: 32,-38 - 3081: -28,42 + 722: -1,-34 + 2323: -4,-50 + 2387: 32,-38 + 3079: -28,42 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2326: -8,-50 - 2388: 29,-38 - 3082: -33,42 - 3427: 19,-18 - 3428: 18,-19 + 2324: -8,-50 + 2386: 29,-38 + 3080: -33,42 + 3425: 19,-18 + 3426: 18,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 723: -1,-39 - 2327: -4,-54 - 2397: 32,-40 - 3083: -28,40 + 721: -1,-39 + 2325: -4,-54 + 2395: 32,-40 + 3081: -28,40 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2328: -8,-54 - 2393: 29,-40 - 3084: -33,40 + 2326: -8,-54 + 2391: 29,-40 + 3082: -33,40 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 2317: -8,-44 + 2315: -8,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 2318: -8,-48 + 2316: -8,-48 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 721: -2,-34 + 719: -2,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3433: 19,-19 + 3431: 19,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 720: -2,-39 + 718: -2,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 715: -2,-40 - 716: -1,-38 - 717: -1,-37 - 718: -1,-36 - 719: -1,-35 - 722: -2,-33 - 1815: 17,30 - 2319: -8,-47 - 2320: -8,-46 - 2321: -8,-45 - 2329: -4,-53 - 2330: -4,-52 - 2331: -4,-51 - 2396: 32,-39 - 3085: -28,41 + 713: -2,-40 + 714: -1,-38 + 715: -1,-37 + 716: -1,-36 + 717: -1,-35 + 720: -2,-33 + 1813: 17,30 + 2317: -8,-47 + 2318: -8,-46 + 2319: -8,-45 + 2327: -4,-53 + 2328: -4,-52 + 2329: -4,-51 + 2394: 32,-39 + 3083: -28,41 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2332: -5,-50 - 2333: -6,-50 - 2334: -7,-50 - 2390: 30,-38 - 2394: 31,-38 - 3091: -32,42 - 3092: -31,42 - 3093: -30,42 - 3094: -29,42 - 3431: 20,-18 - 3432: 21,-18 + 2330: -5,-50 + 2331: -6,-50 + 2332: -7,-50 + 2388: 30,-38 + 2392: 31,-38 + 3089: -32,42 + 3090: -31,42 + 3091: -30,42 + 3092: -29,42 + 3429: 20,-18 + 3430: 21,-18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2335: -5,-54 - 2336: -6,-54 - 2337: -7,-54 - 2391: 30,-40 - 2392: 31,-40 - 3087: -32,40 - 3088: -31,40 - 3089: -30,40 - 3090: -29,40 + 2333: -5,-54 + 2334: -6,-54 + 2335: -7,-54 + 2389: 30,-40 + 2390: 31,-40 + 3085: -32,40 + 3086: -31,40 + 3087: -30,40 + 3088: -29,40 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1816: 12,30 - 2322: -8,-47 - 2323: -8,-46 - 2324: -8,-45 - 2338: -8,-53 - 2339: -8,-52 - 2340: -8,-51 - 2395: 29,-39 - 3086: -33,41 - 3429: 18,-21 - 3430: 18,-20 + 1814: 12,30 + 2320: -8,-47 + 2321: -8,-46 + 2322: -8,-45 + 2336: -8,-53 + 2337: -8,-52 + 2338: -8,-51 + 2393: 29,-39 + 3084: -33,41 + 3427: 18,-21 + 3428: 18,-20 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNe decals: - 3169: -27,43 - 3179: -36,4 - 3181: -42,5 + 3167: -27,43 + 3177: -36,4 + 3179: -42,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 609: 24,9 - 612: 24,8 + 607: 24,9 + 610: 24,8 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNe @@ -897,63 +897,63 @@ entities: 231: -5,-38 494: -25,-26 505: -29,-26 - 557: -24,-39 - 2361: 28,-35 - 2383: 37,-37 + 555: -24,-39 + 2359: 28,-35 + 2381: 37,-37 - node: color: '#765428FF' id: BrickTileWhiteCornerNe decals: - 3333: -53,-17 + 3331: -53,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNe decals: - 2534: -46,-30 + 2532: -46,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNe decals: - 3222: -49,3 + 3220: -49,3 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 837: -11,-47 - 2189: 16,-35 - 2190: 12,-43 + 835: -11,-47 + 2187: 16,-35 + 2188: 12,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1551: 51,-3 - 1715: 42,-41 - 1729: 42,-40 + 1549: 51,-3 + 1713: 42,-41 + 1727: 42,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 3103: -2,43 + 3101: -2,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 574: -30,-27 + 572: -30,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNw decals: - 3170: -34,43 - 3180: -44,5 + 3168: -34,43 + 3178: -44,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 599: 21,8 - 604: 20,8 - 610: 23,9 - 611: 23,8 - 3211: -44,-9 + 597: 21,8 + 602: 20,8 + 608: 23,9 + 609: 23,8 + 3209: -44,-9 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw @@ -967,62 +967,62 @@ entities: 225: -10,-33 493: -27,-26 504: -33,-26 - 558: -28,-39 - 727: -2,-39 - 2360: 27,-35 + 556: -28,-39 + 725: -2,-39 + 2358: 27,-35 - node: color: '#765428FF' id: BrickTileWhiteCornerNw decals: - 3332: -58,-17 + 3330: -58,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNw decals: - 2535: -48,-30 + 2533: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNw decals: - 3221: -51,3 - 3358: -51,-2 + 3219: -51,3 + 3356: -51,-2 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 838: -14,-47 - 2183: 6,-43 - 2184: 14,-35 + 836: -14,-47 + 2181: 6,-43 + 2182: 14,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1550: 49,-3 - 1730: 40,-40 + 1548: 49,-3 + 1728: 40,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 3114: -7,43 + 3112: -7,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 572: -32,-27 - 573: -32,-27 + 570: -32,-27 + 571: -32,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSe decals: - 3171: -27,39 - 3183: -36,3 + 3169: -27,39 + 3181: -36,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 608: 24,4 - 613: 24,5 - 614: 24,5 + 606: 24,4 + 611: 24,5 + 612: 24,5 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe @@ -1036,63 +1036,63 @@ entities: 227: -5,-40 491: -25,-30 503: -29,-30 - 555: -24,-42 - 2381: 34,-42 - 2382: 37,-38 + 553: -24,-42 + 2379: 34,-42 + 2380: 37,-38 - node: color: '#765428FF' id: BrickTileWhiteCornerSe decals: - 3335: -53,-24 + 3333: -53,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSe decals: - 2532: -46,-31 + 2530: -46,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSe decals: - 3230: -49,-5 + 3228: -49,-5 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 836: -11,-51 - 2185: 12,-45 - 2186: 16,-44 + 834: -11,-51 + 2183: 12,-45 + 2184: 16,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1552: 51,-4 + 1550: 51,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 3104: -2,40 - 3119: 10,40 - 3124: 19,39 + 3102: -2,40 + 3117: 10,40 + 3122: 19,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 571: -30,-29 + 569: -30,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSw decals: - 3172: -34,39 - 3182: -44,3 + 3170: -34,39 + 3180: -44,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 600: 21,5 - 603: 20,5 - 607: 23,4 - 615: 23,5 - 3210: -44,-11 + 598: 21,5 + 601: 20,5 + 605: 23,4 + 613: 23,5 + 3208: -44,-11 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSw @@ -1106,48 +1106,48 @@ entities: 229: -10,-35 492: -27,-30 506: -33,-30 - 556: -28,-42 - 726: -2,-34 - 2384: 27,-42 + 554: -28,-42 + 724: -2,-34 + 2382: 27,-42 - node: color: '#765428FF' id: BrickTileWhiteCornerSw decals: - 3334: -58,-24 + 3332: -58,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSw decals: - 2533: -48,-31 + 2531: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSw decals: - 3231: -51,-5 - 3357: -51,1 + 3229: -51,-5 + 3355: -51,1 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 839: -14,-51 - 2187: 6,-45 - 2188: 14,-44 + 837: -14,-51 + 2185: 6,-45 + 2186: 14,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1553: 49,-4 + 1551: 49,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 3112: -7,40 - 3123: 17,39 + 3110: -7,40 + 3121: 17,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 575: -32,-29 + 573: -32,-29 - node: color: '#169C9CFF' id: BrickTileWhiteEndE @@ -1167,22 +1167,22 @@ entities: color: '#80C71F80' id: BrickTileWhiteEndS decals: - 3451: 53,-20 + 3449: 53,-20 - node: color: '#8932B87F' id: BrickTileWhiteEndS decals: - 3448: 49,-20 + 3446: 49,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteEndS decals: - 1716: 42,-42 + 1714: 42,-42 - node: color: '#F9801D7F' id: BrickTileWhiteEndS decals: - 3447: 45,-20 + 3445: 45,-20 - node: color: '#169C9CFF' id: BrickTileWhiteEndW @@ -1197,7 +1197,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 1714: 40,-41 + 1712: 40,-41 - node: color: '#F38BAAFF' id: BrickTileWhiteEndW @@ -1207,13 +1207,13 @@ entities: color: '#00BEBE7F' id: BrickTileWhiteInnerNe decals: - 3200: -44,1 - 3208: -42,4 + 3198: -44,1 + 3206: -42,4 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1357: 33,-8 + 1355: 33,-8 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNe @@ -1223,219 +1223,219 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2387: 28,-37 + 2385: 28,-37 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNe decals: - 2542: -48,-31 + 2540: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNe decals: - 3239: -53,-2 - 3240: -53,3 - 3277: -53,1 - 3278: -53,2 - 3279: -53,3 - 3280: -53,-3 - 3281: -53,-4 - 3282: -53,-5 - 3283: -53,-6 - 3284: -53,-7 - 3285: -53,-8 - 3286: -53,-9 - 3287: -53,-10 - 3288: -53,-11 - 3289: -53,-12 - 3290: -53,-13 - 3291: -53,-15 - 3309: -58,3 - 3310: -57,3 - 3311: -56,3 - 3312: -55,3 + 3237: -53,-2 + 3238: -53,3 + 3275: -53,1 + 3276: -53,2 + 3277: -53,3 + 3278: -53,-3 + 3279: -53,-4 + 3280: -53,-5 + 3281: -53,-6 + 3282: -53,-7 + 3283: -53,-8 + 3284: -53,-9 + 3285: -53,-10 + 3286: -53,-11 + 3287: -53,-12 + 3288: -53,-13 + 3289: -53,-15 + 3307: -58,3 + 3308: -57,3 + 3309: -56,3 + 3310: -55,3 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2074: 3,-48 - 2077: 3,-45 - 2104: 17,-37 - 2105: 17,-36 - 2106: 17,-35 - 2107: 17,-34 - 2108: 15,-34 - 2109: 14,-34 - 2110: 13,-34 - 2118: 12,-42 - 2119: 11,-42 - 2120: 10,-42 - 2121: 9,-42 - 2122: 8,-42 - 2123: 7,-42 - 2124: 6,-42 - 2125: 5,-42 - 2133: 4,-34 - 2134: 8,-34 - 2135: 11,-40 - 2167: 8,-47 - 2168: 21,-44 - 2173: 13,-46 - 2182: 18,-45 - 2234: 5,-39 - 2287: -9,-42 - 2288: -8,-42 - 2289: -7,-42 - 2290: -7,-43 - 2296: -7,-46 - 2297: -7,-45 - 2300: -7,-49 - 2301: -6,-49 - 2302: -5,-49 - 2303: -5,-49 - 2304: -4,-49 - 2305: -3,-49 - 2306: -3,-50 - 2307: -3,-51 - 2308: -3,-52 - 2309: -3,-53 - 2310: -3,-54 - 2311: -3,-55 - 2861: 17,-42 - 2863: 17,-38 - 2864: 17,-39 - 2865: 17,-40 - 2866: 17,-43 - 2871: 20,-43 - 2872: 19,-43 - 2873: 18,-43 - 2963: 14,-42 + 2072: 3,-48 + 2075: 3,-45 + 2102: 17,-37 + 2103: 17,-36 + 2104: 17,-35 + 2105: 17,-34 + 2106: 15,-34 + 2107: 14,-34 + 2108: 13,-34 + 2116: 12,-42 + 2117: 11,-42 + 2118: 10,-42 + 2119: 9,-42 + 2120: 8,-42 + 2121: 7,-42 + 2122: 6,-42 + 2123: 5,-42 + 2131: 4,-34 + 2132: 8,-34 + 2133: 11,-40 + 2165: 8,-47 + 2166: 21,-44 + 2171: 13,-46 + 2180: 18,-45 + 2232: 5,-39 + 2285: -9,-42 + 2286: -8,-42 + 2287: -7,-42 + 2288: -7,-43 + 2294: -7,-46 + 2295: -7,-45 + 2298: -7,-49 + 2299: -6,-49 + 2300: -5,-49 + 2301: -5,-49 + 2302: -4,-49 + 2303: -3,-49 + 2304: -3,-50 + 2305: -3,-51 + 2306: -3,-52 + 2307: -3,-53 + 2308: -3,-54 + 2309: -3,-55 + 2859: 17,-42 + 2861: 17,-38 + 2862: 17,-39 + 2863: 17,-40 + 2864: 17,-43 + 2869: 20,-43 + 2870: 19,-43 + 2871: 18,-43 + 2961: 14,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNe decals: - 1364: 30,-3 + 1362: 30,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1384: 52,-6 - 1385: 52,-7 - 1386: 53,-8 - 1387: 54,-8 - 1388: 54,-9 - 1389: 54,-14 - 1390: 54,-16 - 1391: 54,-18 - 1392: 54,-17 - 1393: 52,-8 - 1394: 54,-15 - 1395: 54,-13 - 1396: 50,-6 - 1397: 48,-6 - 1420: 47,-8 - 1421: 46,-8 - 1440: 40,-15 - 1441: 40,-14 - 1442: 40,-13 - 1443: 40,-12 - 1444: 39,-11 - 1445: 37,-11 - 1446: 36,-11 - 1447: 35,-11 - 1448: 34,-11 - 1449: 33,-11 - 1450: 31,-11 - 1451: 30,-11 - 1502: 42,-21 - 1503: 42,-20 - 1524: 52,-16 - 1525: 51,-16 - 1526: 49,-16 - 1527: 48,-16 - 1528: 47,-16 - 1540: 47,-15 - 1541: 47,-14 - 1542: 47,-13 - 1543: 47,-12 - 1544: 47,-11 - 1545: 47,-10 - 1570: 40,-24 - 1572: 42,-24 - 1589: 39,-25 - 1590: 42,-25 - 1591: 42,-26 - 1592: 42,-28 - 1593: 42,-29 - 1594: 42,-30 - 1624: 38,-35 - 1646: 38,-31 - 1647: 37,-31 - 1648: 36,-31 - 1649: 35,-31 - 1650: 34,-31 - 1651: 33,-31 - 1652: 32,-31 - 1653: 31,-31 - 1654: 30,-31 - 1664: 40,-32 - 1677: 44,-32 - 1678: 43,-32 - 1679: 42,-32 - 1680: 44,-33 - 1681: 44,-34 - 1682: 43,-35 - 1683: 43,-36 - 1692: 39,-37 - 1700: 43,-39 - 1701: 43,-40 - 1702: 43,-41 - 1703: 43,-42 - 1721: 40,-39 - 1724: 39,-39 - 1732: 37,-42 - 2726: 54,-10 - 2842: 40,-25 - 2848: 42,-23 - 2850: 42,-22 - 3458: 54,-19 + 1382: 52,-6 + 1383: 52,-7 + 1384: 53,-8 + 1385: 54,-8 + 1386: 54,-9 + 1387: 54,-14 + 1388: 54,-16 + 1389: 54,-18 + 1390: 54,-17 + 1391: 52,-8 + 1392: 54,-15 + 1393: 54,-13 + 1394: 50,-6 + 1395: 48,-6 + 1418: 47,-8 + 1419: 46,-8 + 1438: 40,-15 + 1439: 40,-14 + 1440: 40,-13 + 1441: 40,-12 + 1442: 39,-11 + 1443: 37,-11 + 1444: 36,-11 + 1445: 35,-11 + 1446: 34,-11 + 1447: 33,-11 + 1448: 31,-11 + 1449: 30,-11 + 1500: 42,-21 + 1501: 42,-20 + 1522: 52,-16 + 1523: 51,-16 + 1524: 49,-16 + 1525: 48,-16 + 1526: 47,-16 + 1538: 47,-15 + 1539: 47,-14 + 1540: 47,-13 + 1541: 47,-12 + 1542: 47,-11 + 1543: 47,-10 + 1568: 40,-24 + 1570: 42,-24 + 1587: 39,-25 + 1588: 42,-25 + 1589: 42,-26 + 1590: 42,-28 + 1591: 42,-29 + 1592: 42,-30 + 1622: 38,-35 + 1644: 38,-31 + 1645: 37,-31 + 1646: 36,-31 + 1647: 35,-31 + 1648: 34,-31 + 1649: 33,-31 + 1650: 32,-31 + 1651: 31,-31 + 1652: 30,-31 + 1662: 40,-32 + 1675: 44,-32 + 1676: 43,-32 + 1677: 42,-32 + 1678: 44,-33 + 1679: 44,-34 + 1680: 43,-35 + 1681: 43,-36 + 1690: 39,-37 + 1698: 43,-39 + 1699: 43,-40 + 1700: 43,-41 + 1701: 43,-42 + 1719: 40,-39 + 1722: 39,-39 + 1730: 37,-42 + 2724: 54,-10 + 2840: 40,-25 + 2846: 42,-23 + 2848: 42,-22 + 3456: 54,-19 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1757: 6,38 - 1758: 5,38 - 1759: 4,38 - 1760: 8,38 - 1761: 8,37 - 1762: 8,36 - 1763: 8,35 - 1764: 8,34 - 1765: 8,31 - 1766: 8,30 - 1811: 5,31 - 1832: 19,31 - 1847: 25,23 - 1848: 22,28 - 1849: 23,34 - 1850: 25,34 - 1851: 25,40 - 1852: 23,40 - 1866: 22,31 - 2496: 3,49 - 2500: 19,43 - 2513: 9,46 - 3062: 11,31 + 1755: 6,38 + 1756: 5,38 + 1757: 4,38 + 1758: 8,38 + 1759: 8,37 + 1760: 8,36 + 1761: 8,35 + 1762: 8,34 + 1763: 8,31 + 1764: 8,30 + 1809: 5,31 + 1830: 19,31 + 1845: 25,23 + 1846: 22,28 + 1847: 23,34 + 1848: 25,34 + 1849: 25,40 + 1850: 23,40 + 1864: 22,31 + 2494: 3,49 + 2498: 19,43 + 2511: 9,46 + 3060: 11,31 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 3488: -6,-29 + 3486: -6,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteInnerNw decals: - 3199: -35,1 + 3197: -35,1 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNw @@ -1445,209 +1445,209 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 734: -1,-39 + 732: -1,-39 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNw decals: - 2539: -46,-31 + 2537: -46,-31 - node: color: '#A4610696' id: BrickTileWhiteInnerNw decals: - 1014: -48,-5 - 1015: -48,-5 + 1012: -48,-5 + 1013: -48,-5 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNw decals: - 3241: -53,3 - 3242: -55,3 - 3243: -56,3 - 3244: -57,3 - 3245: -58,3 - 3246: -58,2 - 3247: -58,1 - 3248: -58,0 - 3249: -58,-1 - 3250: -58,-8 - 3251: -58,-9 - 3252: -58,-10 - 3253: -58,-11 - 3254: -58,-12 - 3255: -58,-13 - 3256: -58,-14 - 3257: -58,-15 - 3345: -47,-5 - 3353: -47,-2 - 3362: -50,-2 + 3239: -53,3 + 3240: -55,3 + 3241: -56,3 + 3242: -57,3 + 3243: -58,3 + 3244: -58,2 + 3245: -58,1 + 3246: -58,0 + 3247: -58,-1 + 3248: -58,-8 + 3249: -58,-9 + 3250: -58,-10 + 3251: -58,-11 + 3252: -58,-12 + 3253: -58,-13 + 3254: -58,-14 + 3255: -58,-15 + 3343: -47,-5 + 3351: -47,-2 + 3360: -50,-2 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2080: 5,-45 - 2085: 5,-42 - 2086: 6,-42 - 2087: 7,-42 - 2088: 8,-42 - 2089: 9,-42 - 2090: 10,-42 - 2091: 11,-42 - 2092: 12,-42 - 2093: 13,-42 - 2094: 13,-41 - 2095: 13,-40 - 2096: 13,-38 - 2097: 13,-37 - 2098: 13,-36 - 2099: 13,-35 - 2100: 13,-34 - 2101: 14,-34 - 2102: 15,-34 - 2103: 17,-34 - 2137: 6,-34 - 2138: 10,-34 - 2235: 9,-39 - 2274: -9,-55 - 2275: -9,-53 - 2276: -9,-52 - 2277: -9,-51 - 2278: -9,-50 - 2279: -9,-48 - 2280: -9,-47 - 2281: -9,-46 - 2282: -9,-44 - 2283: -9,-43 - 2284: -9,-42 - 2285: -8,-42 - 2286: -7,-42 - 2312: -3,-49 - 2313: -4,-49 - 2314: -5,-49 - 2315: -6,-49 - 2353: -1,-48 - 2867: 18,-43 - 2868: 19,-43 - 2869: 20,-43 - 2870: 21,-43 - 2964: 16,-42 + 2078: 5,-45 + 2083: 5,-42 + 2084: 6,-42 + 2085: 7,-42 + 2086: 8,-42 + 2087: 9,-42 + 2088: 10,-42 + 2089: 11,-42 + 2090: 12,-42 + 2091: 13,-42 + 2092: 13,-41 + 2093: 13,-40 + 2094: 13,-38 + 2095: 13,-37 + 2096: 13,-36 + 2097: 13,-35 + 2098: 13,-34 + 2099: 14,-34 + 2100: 15,-34 + 2101: 17,-34 + 2135: 6,-34 + 2136: 10,-34 + 2233: 9,-39 + 2272: -9,-55 + 2273: -9,-53 + 2274: -9,-52 + 2275: -9,-51 + 2276: -9,-50 + 2277: -9,-48 + 2278: -9,-47 + 2279: -9,-46 + 2280: -9,-44 + 2281: -9,-43 + 2282: -9,-42 + 2283: -8,-42 + 2284: -7,-42 + 2310: -3,-49 + 2311: -4,-49 + 2312: -5,-49 + 2313: -6,-49 + 2351: -1,-48 + 2865: 18,-43 + 2866: 19,-43 + 2867: 20,-43 + 2868: 21,-43 + 2962: 16,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNw decals: - 1365: 33,-3 + 1363: 33,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1398: 48,-6 - 1399: 48,-7 - 1400: 48,-8 - 1401: 47,-8 - 1402: 46,-8 - 1403: 46,-9 - 1404: 46,-10 - 1405: 46,-11 - 1406: 46,-12 - 1407: 46,-13 - 1408: 46,-14 - 1409: 46,-15 - 1418: 54,-8 - 1419: 53,-8 - 1422: 50,-6 - 1434: 52,-6 - 1452: 30,-11 - 1453: 30,-12 - 1454: 30,-13 - 1472: 39,-19 - 1475: 37,-18 - 1476: 37,-17 - 1477: 37,-16 - 1478: 37,-15 - 1479: 37,-14 - 1488: 31,-11 - 1489: 33,-11 - 1491: 34,-11 - 1492: 35,-11 - 1493: 36,-11 - 1494: 37,-11 - 1495: 39,-11 - 1529: 48,-16 - 1530: 49,-16 - 1531: 51,-16 - 1532: 52,-16 - 1533: 53,-15 - 1534: 53,-14 - 1535: 53,-13 - 1536: 53,-12 - 1537: 53,-11 - 1538: 53,-10 - 1539: 53,-16 - 1571: 42,-24 - 1573: 40,-24 - 1574: 40,-25 - 1575: 39,-25 - 1576: 39,-26 - 1577: 39,-27 - 1578: 39,-28 - 1579: 39,-29 - 1580: 40,-30 - 1622: 30,-34 - 1625: 40,-35 - 1637: 30,-35 - 1655: 30,-31 - 1656: 31,-31 - 1657: 32,-31 - 1658: 33,-31 - 1659: 34,-31 - 1660: 35,-31 - 1661: 36,-31 - 1662: 37,-31 - 1663: 38,-31 - 1665: 42,-32 - 1666: 43,-32 - 1667: 44,-32 - 1668: 40,-36 - 1669: 40,-37 - 1670: 39,-37 - 1711: 39,-42 - 1712: 39,-40 - 1713: 43,-39 - 1722: 40,-39 - 1723: 39,-39 - 2841: 42,-25 - 2846: 40,-23 - 2856: 40,-19 - 2857: 40,-20 + 1396: 48,-6 + 1397: 48,-7 + 1398: 48,-8 + 1399: 47,-8 + 1400: 46,-8 + 1401: 46,-9 + 1402: 46,-10 + 1403: 46,-11 + 1404: 46,-12 + 1405: 46,-13 + 1406: 46,-14 + 1407: 46,-15 + 1416: 54,-8 + 1417: 53,-8 + 1420: 50,-6 + 1432: 52,-6 + 1450: 30,-11 + 1451: 30,-12 + 1452: 30,-13 + 1470: 39,-19 + 1473: 37,-18 + 1474: 37,-17 + 1475: 37,-16 + 1476: 37,-15 + 1477: 37,-14 + 1486: 31,-11 + 1487: 33,-11 + 1489: 34,-11 + 1490: 35,-11 + 1491: 36,-11 + 1492: 37,-11 + 1493: 39,-11 + 1527: 48,-16 + 1528: 49,-16 + 1529: 51,-16 + 1530: 52,-16 + 1531: 53,-15 + 1532: 53,-14 + 1533: 53,-13 + 1534: 53,-12 + 1535: 53,-11 + 1536: 53,-10 + 1537: 53,-16 + 1569: 42,-24 + 1571: 40,-24 + 1572: 40,-25 + 1573: 39,-25 + 1574: 39,-26 + 1575: 39,-27 + 1576: 39,-28 + 1577: 39,-29 + 1578: 40,-30 + 1620: 30,-34 + 1623: 40,-35 + 1635: 30,-35 + 1653: 30,-31 + 1654: 31,-31 + 1655: 32,-31 + 1656: 33,-31 + 1657: 34,-31 + 1658: 35,-31 + 1659: 36,-31 + 1660: 37,-31 + 1661: 38,-31 + 1663: 42,-32 + 1664: 43,-32 + 1665: 44,-32 + 1666: 40,-36 + 1667: 40,-37 + 1668: 39,-37 + 1709: 39,-42 + 1710: 39,-40 + 1711: 43,-39 + 1720: 40,-39 + 1721: 39,-39 + 2839: 42,-25 + 2844: 40,-23 + 2854: 40,-19 + 2855: 40,-20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1778: 8,38 - 1779: 6,38 - 1780: 5,38 - 1781: 4,38 - 1782: 4,37 - 1783: 4,34 - 1784: 4,31 - 1785: 4,30 - 1812: 7,31 - 1833: 21,31 - 1853: 25,40 - 1854: 27,40 - 1855: 27,34 - 1856: 25,28 - 1857: 25,34 - 1867: 28,31 - 2497: 5,49 - 2502: 20,43 - 2514: 17,46 - 3063: 18,31 + 1776: 8,38 + 1777: 6,38 + 1778: 5,38 + 1779: 4,38 + 1780: 4,37 + 1781: 4,34 + 1782: 4,31 + 1783: 4,30 + 1810: 7,31 + 1831: 21,31 + 1851: 25,40 + 1852: 27,40 + 1853: 27,34 + 1854: 25,28 + 1855: 25,34 + 1865: 28,31 + 2495: 5,49 + 2500: 20,43 + 2512: 17,46 + 3061: 18,31 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1358: 33,-4 + 1356: 33,-4 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSe @@ -1658,221 +1658,221 @@ entities: id: BrickTileWhiteInnerSe decals: 416: -18,-29 - 2385: 34,-38 + 2383: 34,-38 - node: color: '#80C71F80' id: BrickTileWhiteInnerSe decals: - 3452: 53,-19 + 3450: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSe decals: - 3450: 49,-19 + 3448: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSe decals: - 2540: -48,-30 + 2538: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSe decals: - 3258: -58,-15 - 3259: -57,-15 - 3260: -54,-15 - 3261: -53,-15 - 3262: -53,-13 - 3263: -53,-12 - 3264: -53,-11 - 3265: -53,-10 - 3266: -53,-9 - 3267: -53,-8 - 3268: -53,-7 - 3269: -53,-6 - 3270: -53,-4 - 3271: -53,-5 - 3272: -53,-3 - 3273: -53,-2 - 3274: -53,1 - 3275: -53,2 - 3276: -53,3 - 3292: -53,-15 + 3256: -58,-15 + 3257: -57,-15 + 3258: -54,-15 + 3259: -53,-15 + 3260: -53,-13 + 3261: -53,-12 + 3262: -53,-11 + 3263: -53,-10 + 3264: -53,-9 + 3265: -53,-8 + 3266: -53,-7 + 3267: -53,-6 + 3268: -53,-4 + 3269: -53,-5 + 3270: -53,-3 + 3271: -53,-2 + 3272: -53,1 + 3273: -53,2 + 3274: -53,3 + 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2075: 3,-45 - 2076: 3,-42 - 2136: 11,-38 - 2139: 21,-42 - 2140: 17,-36 - 2141: 17,-35 - 2142: 17,-34 - 2143: 21,-44 - 2144: 20,-44 - 2145: 19,-44 - 2146: 18,-44 - 2147: 18,-45 - 2148: 17,-45 - 2149: 16,-45 - 2150: 15,-45 - 2151: 14,-45 - 2152: 13,-45 - 2153: 13,-46 - 2154: 12,-46 - 2155: 11,-46 - 2156: 10,-46 - 2157: 9,-46 - 2158: 8,-46 - 2159: 8,-47 - 2160: 5,-47 - 2161: 6,-47 - 2162: 7,-47 - 2236: 5,-35 - 2261: -3,-55 - 2262: -3,-54 - 2263: -3,-53 - 2264: -3,-52 - 2265: -3,-51 - 2266: -3,-50 - 2267: -3,-49 - 2268: -4,-55 - 2269: -5,-55 - 2270: -6,-55 - 2271: -7,-55 - 2272: -8,-55 - 2273: -9,-55 - 2291: -7,-43 - 2292: -7,-42 - 2293: -7,-45 - 2294: -7,-46 - 2295: -7,-48 - 2862: 17,-40 - 2874: 17,-42 - 2875: 17,-39 - 2876: 17,-38 - 2877: 17,-37 - 2965: 14,-39 + 2073: 3,-45 + 2074: 3,-42 + 2134: 11,-38 + 2137: 21,-42 + 2138: 17,-36 + 2139: 17,-35 + 2140: 17,-34 + 2141: 21,-44 + 2142: 20,-44 + 2143: 19,-44 + 2144: 18,-44 + 2145: 18,-45 + 2146: 17,-45 + 2147: 16,-45 + 2148: 15,-45 + 2149: 14,-45 + 2150: 13,-45 + 2151: 13,-46 + 2152: 12,-46 + 2153: 11,-46 + 2154: 10,-46 + 2155: 9,-46 + 2156: 8,-46 + 2157: 8,-47 + 2158: 5,-47 + 2159: 6,-47 + 2160: 7,-47 + 2234: 5,-35 + 2259: -3,-55 + 2260: -3,-54 + 2261: -3,-53 + 2262: -3,-52 + 2263: -3,-51 + 2264: -3,-50 + 2265: -3,-49 + 2266: -4,-55 + 2267: -5,-55 + 2268: -6,-55 + 2269: -7,-55 + 2270: -8,-55 + 2271: -9,-55 + 2289: -7,-43 + 2290: -7,-42 + 2291: -7,-45 + 2292: -7,-46 + 2293: -7,-48 + 2860: 17,-40 + 2872: 17,-42 + 2873: 17,-39 + 2874: 17,-38 + 2875: 17,-37 + 2963: 14,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1361: 31,-9 - 1410: 54,-8 - 1411: 54,-9 - 1412: 54,-13 - 1413: 54,-14 - 1414: 54,-15 - 1415: 54,-16 - 1416: 54,-17 - 1417: 54,-18 - 1469: 42,-21 - 1470: 42,-20 - 1471: 42,-19 - 1473: 38,-18 - 1474: 37,-18 - 1482: 34,-13 - 1483: 33,-13 - 1484: 32,-13 - 1485: 30,-13 - 1498: 40,-11 - 1499: 40,-12 - 1500: 40,-13 - 1501: 40,-14 - 1513: 47,-15 - 1514: 47,-14 - 1515: 47,-13 - 1516: 47,-12 - 1517: 47,-11 - 1518: 47,-10 - 1519: 47,-9 - 1520: 48,-9 - 1521: 49,-9 - 1548: 51,-9 - 1549: 52,-9 - 1587: 39,-29 - 1597: 40,-30 - 1598: 42,-30 - 1599: 42,-29 - 1600: 42,-28 - 1601: 42,-26 - 1602: 42,-25 - 1603: 42,-24 - 1620: 28,-31 - 1623: 38,-31 - 1626: 38,-35 - 1638: 30,-35 - 1639: 31,-35 - 1640: 32,-35 - 1641: 33,-35 - 1642: 34,-35 - 1643: 35,-35 - 1644: 36,-35 - 1645: 37,-35 - 1671: 43,-36 - 1672: 43,-35 - 1673: 43,-34 - 1674: 44,-34 - 1675: 44,-33 - 1676: 44,-32 - 1689: 40,-37 - 1690: 39,-37 - 1691: 42,-37 - 1704: 39,-42 - 1705: 40,-42 - 1706: 41,-42 - 1707: 43,-42 - 1708: 43,-41 - 1709: 43,-40 - 1710: 43,-39 - 1733: 37,-40 - 2727: 54,-12 - 2844: 40,-23 - 2847: 42,-23 - 2849: 42,-22 - 2855: 39,-18 - 3456: 52,-7 - 3457: 52,-6 + 1359: 31,-9 + 1408: 54,-8 + 1409: 54,-9 + 1410: 54,-13 + 1411: 54,-14 + 1412: 54,-15 + 1413: 54,-16 + 1414: 54,-17 + 1415: 54,-18 + 1467: 42,-21 + 1468: 42,-20 + 1469: 42,-19 + 1471: 38,-18 + 1472: 37,-18 + 1480: 34,-13 + 1481: 33,-13 + 1482: 32,-13 + 1483: 30,-13 + 1496: 40,-11 + 1497: 40,-12 + 1498: 40,-13 + 1499: 40,-14 + 1511: 47,-15 + 1512: 47,-14 + 1513: 47,-13 + 1514: 47,-12 + 1515: 47,-11 + 1516: 47,-10 + 1517: 47,-9 + 1518: 48,-9 + 1519: 49,-9 + 1546: 51,-9 + 1547: 52,-9 + 1585: 39,-29 + 1595: 40,-30 + 1596: 42,-30 + 1597: 42,-29 + 1598: 42,-28 + 1599: 42,-26 + 1600: 42,-25 + 1601: 42,-24 + 1618: 28,-31 + 1621: 38,-31 + 1624: 38,-35 + 1636: 30,-35 + 1637: 31,-35 + 1638: 32,-35 + 1639: 33,-35 + 1640: 34,-35 + 1641: 35,-35 + 1642: 36,-35 + 1643: 37,-35 + 1669: 43,-36 + 1670: 43,-35 + 1671: 43,-34 + 1672: 44,-34 + 1673: 44,-33 + 1674: 44,-32 + 1687: 40,-37 + 1688: 39,-37 + 1689: 42,-37 + 1702: 39,-42 + 1703: 40,-42 + 1704: 41,-42 + 1705: 43,-42 + 1706: 43,-41 + 1707: 43,-40 + 1708: 43,-39 + 1731: 37,-40 + 2725: 54,-12 + 2842: 40,-23 + 2845: 42,-23 + 2847: 42,-22 + 2853: 39,-18 + 3454: 52,-7 + 3455: 52,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1767: 8,30 - 1768: 7,30 - 1769: 6,30 - 1770: 5,30 - 1771: 4,30 - 1772: 8,31 - 1773: 8,34 - 1774: 8,35 - 1775: 8,36 - 1776: 8,37 - 1777: 8,38 - 1814: 5,37 - 1831: 19,34 - 1858: 22,30 - 1859: 23,36 - 1860: 25,36 - 1861: 25,25 - 1869: 22,33 - 2498: 3,51 - 2501: 19,42 - 2512: 10,45 - 2526: 32,42 - 2527: 25,42 - 2529: 23,42 - 3064: 11,33 + 1765: 8,30 + 1766: 7,30 + 1767: 6,30 + 1768: 5,30 + 1769: 4,30 + 1770: 8,31 + 1771: 8,34 + 1772: 8,35 + 1773: 8,36 + 1774: 8,37 + 1775: 8,38 + 1812: 5,37 + 1829: 19,34 + 1856: 22,30 + 1857: 23,36 + 1858: 25,36 + 1859: 25,25 + 1867: 22,33 + 2496: 3,51 + 2499: 19,42 + 2510: 10,45 + 2524: 32,42 + 2525: 25,42 + 2527: 23,42 + 3062: 11,33 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSe decals: - 3455: 45,-19 + 3453: 45,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 3487: -6,-26 + 3485: -6,-26 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSw @@ -1883,227 +1883,231 @@ entities: id: BrickTileWhiteInnerSw decals: 415: -20,-29 - 733: -1,-34 + 731: -1,-34 - node: color: '#80C71F80' id: BrickTileWhiteInnerSw decals: - 3453: 53,-19 + 3451: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSw decals: - 3449: 49,-19 + 3447: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSw decals: - 2541: -46,-30 + 2539: -46,-30 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1016: -48,-2 - 1017: -48,-2 + 1014: -48,-2 + 1015: -48,-2 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3293: -53,-15 - 3294: -54,-15 - 3295: -57,-15 - 3296: -58,-15 - 3297: -58,-14 - 3298: -58,-13 - 3299: -58,-12 - 3300: -58,-11 - 3301: -58,-10 - 3302: -58,-9 - 3303: -58,-8 - 3304: -58,-7 - 3305: -58,0 - 3306: -58,1 - 3307: -58,2 - 3308: -58,3 - 3348: -47,2 - 3354: -47,-2 - 3361: -50,1 + 3291: -53,-15 + 3292: -54,-15 + 3293: -57,-15 + 3294: -58,-15 + 3295: -58,-14 + 3296: -58,-13 + 3297: -58,-12 + 3298: -58,-11 + 3299: -58,-10 + 3300: -58,-9 + 3301: -58,-8 + 3302: -58,-7 + 3303: -58,0 + 3304: -58,1 + 3305: -58,2 + 3306: -58,3 + 3346: -47,2 + 3352: -47,-2 + 3359: -50,1 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2078: 5,-42 - 2079: 5,-45 - 2111: 13,-34 - 2112: 13,-35 - 2113: 13,-36 - 2114: 13,-37 - 2115: 13,-38 - 2116: 13,-40 - 2117: 13,-41 - 2163: 6,-47 - 2164: 7,-47 - 2165: 8,-47 - 2166: 9,-46 - 2169: 10,-46 - 2170: 11,-46 - 2171: 12,-46 - 2172: 13,-46 - 2174: 14,-45 - 2175: 16,-45 - 2176: 15,-45 - 2177: 17,-45 - 2178: 18,-45 - 2179: 19,-44 - 2180: 20,-44 - 2181: 21,-44 - 2233: 9,-35 - 2242: -9,-48 - 2243: -5,-46 - 2244: -9,-47 - 2245: -9,-46 - 2246: -9,-44 - 2247: -9,-43 - 2248: -9,-42 - 2249: -9,-50 - 2250: -9,-51 - 2251: -9,-52 - 2252: -9,-53 - 2254: -9,-55 - 2255: -8,-55 - 2256: -7,-55 - 2257: -6,-55 - 2258: -5,-55 - 2259: -4,-55 - 2260: -3,-55 - 2349: -1,-42 - 2966: 16,-39 + 2076: 5,-42 + 2077: 5,-45 + 2109: 13,-34 + 2110: 13,-35 + 2111: 13,-36 + 2112: 13,-37 + 2113: 13,-38 + 2114: 13,-40 + 2115: 13,-41 + 2161: 6,-47 + 2162: 7,-47 + 2163: 8,-47 + 2164: 9,-46 + 2167: 10,-46 + 2168: 11,-46 + 2169: 12,-46 + 2170: 13,-46 + 2172: 14,-45 + 2173: 16,-45 + 2174: 15,-45 + 2175: 17,-45 + 2176: 18,-45 + 2177: 19,-44 + 2178: 20,-44 + 2179: 21,-44 + 2231: 9,-35 + 2240: -9,-48 + 2241: -5,-46 + 2242: -9,-47 + 2243: -9,-46 + 2244: -9,-44 + 2245: -9,-43 + 2246: -9,-42 + 2247: -9,-50 + 2248: -9,-51 + 2249: -9,-52 + 2250: -9,-53 + 2252: -9,-55 + 2253: -8,-55 + 2254: -7,-55 + 2255: -6,-55 + 2256: -5,-55 + 2257: -4,-55 + 2258: -3,-55 + 2347: -1,-42 + 2964: 16,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1360: 33,-9 - 1423: 48,-7 - 1424: 48,-6 - 1425: 46,-8 - 1426: 46,-9 - 1427: 46,-10 - 1428: 46,-11 - 1429: 46,-12 - 1430: 46,-13 - 1431: 46,-14 - 1455: 30,-13 - 1456: 32,-13 - 1457: 33,-13 - 1458: 34,-13 - 1459: 36,-13 - 1460: 37,-13 - 1461: 37,-14 - 1462: 37,-15 - 1463: 37,-16 - 1464: 37,-17 - 1465: 37,-18 - 1466: 38,-18 - 1467: 39,-18 - 1468: 39,-19 - 1486: 30,-12 - 1487: 30,-11 - 1504: 51,-9 - 1505: 52,-9 - 1506: 53,-9 - 1507: 53,-10 - 1508: 53,-11 - 1509: 53,-12 - 1510: 53,-13 - 1511: 53,-14 - 1512: 53,-15 - 1546: 48,-9 - 1547: 49,-9 - 1581: 40,-24 - 1582: 39,-25 - 1583: 39,-26 - 1584: 39,-27 - 1585: 39,-28 - 1586: 39,-29 - 1588: 40,-29 - 1595: 42,-30 - 1596: 40,-30 - 1621: 30,-31 - 1627: 38,-35 - 1628: 37,-35 - 1629: 36,-35 - 1630: 35,-35 - 1631: 34,-35 - 1632: 33,-35 - 1633: 32,-35 - 1634: 31,-35 - 1635: 30,-35 - 1636: 30,-34 - 1684: 44,-34 - 1685: 43,-37 - 1686: 42,-37 - 1687: 40,-37 - 1688: 39,-37 - 1693: 40,-35 - 1694: 40,-36 - 1695: 43,-42 - 1696: 41,-42 - 1697: 40,-42 - 1698: 39,-42 - 1699: 39,-40 - 1719: 42,-41 - 1725: 39,-39 - 2843: 42,-23 - 2845: 40,-23 - 2852: 40,-20 - 2853: 40,-19 - 2854: 40,-18 + 1358: 33,-9 + 1421: 48,-7 + 1422: 48,-6 + 1423: 46,-8 + 1424: 46,-9 + 1425: 46,-10 + 1426: 46,-11 + 1427: 46,-12 + 1428: 46,-13 + 1429: 46,-14 + 1453: 30,-13 + 1454: 32,-13 + 1455: 33,-13 + 1456: 34,-13 + 1457: 36,-13 + 1458: 37,-13 + 1459: 37,-14 + 1460: 37,-15 + 1461: 37,-16 + 1462: 37,-17 + 1463: 37,-18 + 1464: 38,-18 + 1465: 39,-18 + 1466: 39,-19 + 1484: 30,-12 + 1485: 30,-11 + 1502: 51,-9 + 1503: 52,-9 + 1504: 53,-9 + 1505: 53,-10 + 1506: 53,-11 + 1507: 53,-12 + 1508: 53,-13 + 1509: 53,-14 + 1510: 53,-15 + 1544: 48,-9 + 1545: 49,-9 + 1579: 40,-24 + 1580: 39,-25 + 1581: 39,-26 + 1582: 39,-27 + 1583: 39,-28 + 1584: 39,-29 + 1586: 40,-29 + 1593: 42,-30 + 1594: 40,-30 + 1619: 30,-31 + 1625: 38,-35 + 1626: 37,-35 + 1627: 36,-35 + 1628: 35,-35 + 1629: 34,-35 + 1630: 33,-35 + 1631: 32,-35 + 1632: 31,-35 + 1633: 30,-35 + 1634: 30,-34 + 1682: 44,-34 + 1683: 43,-37 + 1684: 42,-37 + 1685: 40,-37 + 1686: 39,-37 + 1691: 40,-35 + 1692: 40,-36 + 1693: 43,-42 + 1694: 41,-42 + 1695: 40,-42 + 1696: 39,-42 + 1697: 39,-40 + 1717: 42,-41 + 1723: 39,-39 + 2841: 42,-23 + 2843: 40,-23 + 2850: 40,-20 + 2851: 40,-19 + 2852: 40,-18 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1790: 4,37 - 1791: 4,34 - 1792: 4,30 - 1793: 5,30 - 1794: 6,30 - 1795: 7,30 - 1796: 8,30 - 1797: 4,31 - 1798: 4,38 - 1813: 7,37 - 1821: 10,34 - 1830: 21,34 - 1862: 25,30 - 1863: 25,36 - 1864: 27,36 - 1865: 27,42 - 1868: 28,33 - 1883: 35,42 - 2499: 5,51 - 2503: 20,42 - 2528: 25,42 - 3065: 18,33 - 3134: 17,45 + 1788: 4,37 + 1789: 4,34 + 1790: 4,30 + 1791: 5,30 + 1792: 6,30 + 1793: 7,30 + 1794: 8,30 + 1795: 4,31 + 1796: 4,38 + 1811: 7,37 + 1819: 10,34 + 1828: 21,34 + 1860: 25,30 + 1861: 25,36 + 1862: 27,36 + 1863: 27,42 + 1866: 28,33 + 1881: 35,42 + 2497: 5,51 + 2501: 20,42 + 2526: 25,42 + 3063: 18,33 + 3132: 17,45 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSw decals: - 3454: 45,-19 + 3452: 45,-19 - node: color: '#00BEBE7F' id: BrickTileWhiteLineE decals: - 3157: -27,40 - 3158: -27,41 - 3159: -27,42 + 3155: -27,40 + 3156: -27,41 + 3157: -27,42 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1354: 33,-5 - 1355: 33,-7 - 1356: 33,-6 + 1352: 33,-5 + 1353: 33,-7 + 1354: 33,-6 + 3594: 26,13 + 3595: 26,14 + 3608: 33,13 + 3609: 33,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineE @@ -2124,153 +2128,159 @@ entities: 507: -29,-29 508: -29,-28 509: -29,-27 - 562: -24,-40 - 563: -24,-41 - 2372: 34,-39 - 2373: 34,-40 - 2374: 34,-41 - 2386: 28,-36 + 560: -24,-40 + 561: -24,-41 + 2370: 34,-39 + 2371: 34,-40 + 2372: 34,-41 + 2384: 28,-36 - node: color: '#765428FF' id: BrickTileWhiteLineE decals: - 3319: -53,-18 - 3320: -53,-19 - 3321: -53,-20 - 3322: -53,-21 - 3323: -53,-22 - 3324: -53,-23 + 3317: -53,-18 + 3318: -53,-19 + 3319: -53,-20 + 3320: -53,-21 + 3321: -53,-22 + 3322: -53,-23 - node: color: '#9FED58B3' id: BrickTileWhiteLineE decals: - 2543: -45,-31 - 2544: -45,-30 + 2541: -45,-31 + 2542: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineE decals: - 3216: -53,-14 - 3217: -53,-1 - 3218: -53,0 - 3224: -49,2 - 3225: -49,1 - 3226: -49,0 - 3227: -49,-1 - 3228: -49,-2 - 3229: -49,-4 - 3356: -49,-3 + 3214: -53,-14 + 3215: -53,-1 + 3216: -53,0 + 3222: -49,2 + 3223: -49,1 + 3224: -49,0 + 3225: -49,-1 + 3226: -49,-2 + 3227: -49,-4 + 3354: -49,-3 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 843: -11,-50 - 844: -11,-49 - 845: -11,-48 - 2070: 3,-43 - 2071: 3,-44 - 2072: 3,-46 - 2073: 3,-47 - 2127: 17,-41 - 2128: 21,-43 - 2129: 11,-39 - 2197: 12,-44 - 2198: 16,-43 - 2199: 16,-42 - 2200: 16,-41 - 2201: 16,-40 - 2202: 16,-39 - 2203: 16,-38 - 2204: 16,-37 - 2205: 16,-36 - 2227: 5,-38 - 2228: 5,-37 - 2229: 5,-36 - 2237: -7,-47 - 2239: -7,-44 - 2299: -11,-45 - 2343: -3,-47 - 2344: -3,-46 - 2959: 14,-41 - 2960: 14,-40 + 841: -11,-50 + 842: -11,-49 + 843: -11,-48 + 2068: 3,-43 + 2069: 3,-44 + 2070: 3,-46 + 2071: 3,-47 + 2125: 17,-41 + 2126: 21,-43 + 2127: 11,-39 + 2195: 12,-44 + 2196: 16,-43 + 2197: 16,-42 + 2198: 16,-41 + 2199: 16,-40 + 2200: 16,-39 + 2201: 16,-38 + 2202: 16,-37 + 2203: 16,-36 + 2225: 5,-38 + 2226: 5,-37 + 2227: 5,-36 + 2235: -7,-47 + 2237: -7,-44 + 2297: -11,-45 + 2341: -3,-47 + 2342: -3,-46 + 2957: 14,-41 + 2958: 14,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1604: 42,-27 - 1605: 43,-37 - 1608: 37,-41 - 1609: 38,-34 - 1610: 38,-33 - 1611: 38,-32 - 1617: 27,-27 - 1618: 28,-32 - 1619: 28,-33 + 1602: 42,-27 + 1603: 43,-37 + 1606: 37,-41 + 1607: 38,-34 + 1608: 38,-33 + 1609: 38,-32 + 1615: 27,-27 + 1616: 28,-32 + 1617: 28,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1755: 8,32 - 1756: 8,33 - 1799: 5,32 - 1800: 5,33 - 1801: 5,34 - 1802: 5,35 - 1803: 5,36 - 1817: 17,30 - 1826: 19,32 - 1827: 19,33 - 1880: 22,32 - 2509: 10,44 - 2510: 10,43 - 2511: 10,42 - 2515: 19,44 - 2516: 19,45 - 2517: 20,42 - 2518: 20,43 - 3053: 11,32 - 3080: 17,34 - 3105: -2,41 - 3106: -2,42 - 3120: 10,41 - 3125: 19,40 - 3126: 19,41 + 1753: 8,32 + 1754: 8,33 + 1797: 5,32 + 1798: 5,33 + 1799: 5,34 + 1800: 5,35 + 1801: 5,36 + 1815: 17,30 + 1824: 19,32 + 1825: 19,33 + 1878: 22,32 + 2507: 10,44 + 2508: 10,43 + 2509: 10,42 + 2513: 19,44 + 2514: 19,45 + 2515: 20,42 + 2516: 20,43 + 3051: 11,32 + 3078: 17,34 + 3103: -2,41 + 3104: -2,42 + 3118: 10,41 + 3123: 19,40 + 3124: 19,41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 577: -30,-28 - 3489: -6,-28 - 3490: -6,-27 + 575: -30,-28 + 3487: -6,-28 + 3488: -6,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteLineN decals: - 3160: -28,43 - 3161: -29,43 - 3162: -30,43 - 3163: -31,43 - 3164: -32,43 - 3165: -33,43 - 3191: -43,1 - 3192: -42,1 - 3193: -41,1 - 3194: -40,1 - 3195: -39,1 - 3196: -38,1 - 3197: -37,1 - 3198: -36,1 - 3202: -43,5 - 3203: -41,4 - 3204: -40,4 - 3205: -39,4 - 3206: -38,4 - 3207: -37,4 + 3158: -28,43 + 3159: -29,43 + 3160: -30,43 + 3161: -31,43 + 3162: -32,43 + 3163: -33,43 + 3189: -43,1 + 3190: -42,1 + 3191: -41,1 + 3192: -40,1 + 3193: -39,1 + 3194: -38,1 + 3195: -37,1 + 3196: -36,1 + 3200: -43,5 + 3201: -41,4 + 3202: -40,4 + 3203: -39,4 + 3204: -38,4 + 3205: -37,4 - node: color: '#169C9CFF' id: BrickTileWhiteLineN decals: 402: -16,-30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 3610: 30,16 + 3611: 31,16 - node: color: '#4B709CFF' id: BrickTileWhiteLineN @@ -2298,111 +2308,111 @@ entities: 510: -30,-26 511: -31,-26 512: -32,-26 - 559: -27,-39 - 560: -26,-39 - 561: -25,-39 - 2362: 29,-37 - 2363: 30,-37 - 2364: 31,-37 - 2365: 32,-37 - 2366: 33,-37 - 2367: 34,-37 - 2368: 35,-37 - 2369: 36,-37 + 557: -27,-39 + 558: -26,-39 + 559: -25,-39 + 2360: 29,-37 + 2361: 30,-37 + 2362: 31,-37 + 2363: 32,-37 + 2364: 33,-37 + 2365: 34,-37 + 2366: 35,-37 + 2367: 36,-37 - node: color: '#765428FF' id: BrickTileWhiteLineN decals: - 3313: -55,-17 - 3314: -56,-17 - 3315: -57,-17 - 3316: -54,-17 + 3311: -55,-17 + 3312: -56,-17 + 3313: -57,-17 + 3314: -54,-17 - node: color: '#9FED58B3' id: BrickTileWhiteLineN decals: - 2531: -47,-31 - 2537: -47,-30 + 2529: -47,-31 + 2535: -47,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineN decals: - 3213: -54,3 - 3223: -50,3 + 3211: -54,3 + 3221: -50,3 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 834: -13,-47 - 835: -12,-47 - 2130: 16,-34 - 2131: 9,-34 - 2132: 5,-34 - 2191: 7,-43 - 2192: 8,-43 - 2193: 9,-43 - 2194: 10,-43 - 2195: 11,-43 - 2196: 15,-35 - 2224: 6,-39 - 2225: 7,-39 - 2226: 8,-39 + 832: -13,-47 + 833: -12,-47 + 2128: 16,-34 + 2129: 9,-34 + 2130: 5,-34 + 2189: 7,-43 + 2190: 8,-43 + 2191: 9,-43 + 2192: 10,-43 + 2193: 11,-43 + 2194: 15,-35 + 2222: 6,-39 + 2223: 7,-39 + 2224: 8,-39 - node: color: '#D4D4D428' id: BrickTileWhiteLineN decals: - 1362: 31,-3 - 1363: 32,-3 + 1360: 31,-3 + 1361: 32,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1432: 49,-6 - 1433: 51,-6 - 1490: 32,-11 - 1496: 38,-11 - 1497: 40,-11 - 1523: 50,-16 - 1554: 50,-3 - 1568: 41,-32 - 1717: 41,-41 - 1720: 41,-39 - 1731: 41,-40 - 2840: 41,-25 + 1430: 49,-6 + 1431: 51,-6 + 1488: 32,-11 + 1494: 38,-11 + 1495: 40,-11 + 1521: 50,-16 + 1552: 50,-3 + 1566: 41,-32 + 1715: 41,-41 + 1718: 41,-39 + 1729: 41,-40 + 2838: 41,-25 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1754: 7,38 - 1804: 6,31 - 1834: 23,28 - 1835: 24,28 - 1842: 24,40 - 1843: 26,40 - 1844: 24,34 - 1845: 26,34 - 1846: 26,23 - 1870: 23,31 - 1871: 24,31 - 1872: 25,31 - 1873: 26,31 - 1874: 27,31 - 3041: 17,31 - 3042: 16,31 - 3043: 15,31 - 3044: 14,31 - 3045: 13,31 - 3046: 12,31 - 3056: 12,33 - 3057: 13,33 - 3058: 14,33 - 3059: 15,33 - 3060: 16,33 - 3061: 17,33 - 3115: -6,43 - 3116: -5,43 - 3117: -4,43 - 3118: -3,43 + 1752: 7,38 + 1802: 6,31 + 1832: 23,28 + 1833: 24,28 + 1840: 24,40 + 1841: 26,40 + 1842: 24,34 + 1843: 26,34 + 1844: 26,23 + 1868: 23,31 + 1869: 24,31 + 1870: 25,31 + 1871: 26,31 + 1872: 27,31 + 3039: 17,31 + 3040: 16,31 + 3041: 15,31 + 3042: 14,31 + 3043: 13,31 + 3044: 12,31 + 3054: 12,33 + 3055: 13,33 + 3056: 14,33 + 3057: 15,33 + 3058: 16,33 + 3059: 17,33 + 3113: -6,43 + 3114: -5,43 + 3115: -4,43 + 3116: -3,43 - node: color: '#F38BAAFF' id: BrickTileWhiteLineN @@ -2412,27 +2422,27 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 576: -31,-27 - 3481: -5,-29 - 3482: -4,-29 - 3483: -3,-29 + 574: -31,-27 + 3479: -5,-29 + 3480: -4,-29 + 3481: -3,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteLineS decals: - 3151: -33,39 - 3152: -32,39 - 3153: -31,39 - 3154: -30,39 - 3155: -29,39 - 3156: -28,39 - 3184: -37,3 - 3185: -38,3 - 3186: -39,3 - 3187: -40,3 - 3188: -41,3 - 3189: -42,3 - 3190: -43,3 + 3149: -33,39 + 3150: -32,39 + 3151: -31,39 + 3152: -30,39 + 3153: -29,39 + 3154: -28,39 + 3182: -37,3 + 3183: -38,3 + 3184: -39,3 + 3185: -40,3 + 3186: -41,3 + 3187: -42,3 + 3188: -43,3 - node: color: '#169C9CFF' id: BrickTileWhiteLineS @@ -2469,120 +2479,119 @@ entities: 496: -26,-30 516: -32,-30 517: -31,-30 - 518: -30,-30 - 519: -30,-30 - 564: -25,-42 - 565: -26,-42 - 566: -27,-42 - 2370: 36,-38 - 2371: 35,-38 - 2375: 33,-42 - 2376: 32,-42 - 2377: 31,-42 - 2378: 30,-42 - 2379: 29,-42 - 2380: 28,-42 + 562: -25,-42 + 563: -26,-42 + 564: -27,-42 + 2368: 36,-38 + 2369: 35,-38 + 2373: 33,-42 + 2374: 32,-42 + 2375: 31,-42 + 2376: 30,-42 + 2377: 29,-42 + 2378: 28,-42 + 3624: -30,-30 - node: color: '#765428FF' id: BrickTileWhiteLineS decals: - 3325: -54,-24 - 3326: -55,-24 - 3327: -56,-24 - 3328: -57,-24 + 3323: -54,-24 + 3324: -55,-24 + 3325: -56,-24 + 3326: -57,-24 - node: color: '#80C71F7F' id: BrickTileWhiteLineS decals: - 3438: 54,-19 - 3439: 52,-19 - 3440: 51,-19 + 3436: 54,-19 + 3437: 52,-19 + 3438: 51,-19 - node: color: '#8932B87F' id: BrickTileWhiteLineS decals: - 3441: 50,-19 - 3442: 48,-19 - 3443: 47,-19 + 3439: 50,-19 + 3440: 48,-19 + 3441: 47,-19 - node: color: '#9FED58B3' id: BrickTileWhiteLineS decals: - 2536: -47,-30 - 2538: -47,-31 + 2534: -47,-30 + 2536: -47,-31 - node: color: '#BC863FFF' id: BrickTileWhiteLineS decals: - 3214: -56,-15 - 3215: -55,-15 - 3232: -50,-5 + 3212: -56,-15 + 3213: -55,-15 + 3230: -50,-5 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 846: -12,-51 - 847: -13,-51 - 2215: 7,-45 - 2216: 8,-45 - 2217: 9,-45 - 2218: 10,-45 - 2219: 11,-45 - 2220: 15,-44 - 2221: 6,-35 - 2222: 7,-35 - 2223: 8,-35 + 844: -12,-51 + 845: -13,-51 + 2213: 7,-45 + 2214: 8,-45 + 2215: 9,-45 + 2216: 10,-45 + 2217: 11,-45 + 2218: 15,-44 + 2219: 6,-35 + 2220: 7,-35 + 2221: 8,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1359: 32,-9 - 1480: 35,-13 - 1481: 31,-13 - 1522: 50,-9 - 1555: 50,-4 - 1569: 41,-30 - 1606: 41,-37 - 1718: 41,-41 - 2839: 41,-23 + 1357: 32,-9 + 1478: 35,-13 + 1479: 31,-13 + 1520: 50,-9 + 1553: 50,-4 + 1567: 41,-30 + 1604: 41,-37 + 1716: 41,-41 + 2837: 41,-23 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1810: 6,37 - 1836: 23,30 - 1837: 24,30 - 1838: 26,25 - 1839: 26,36 - 1840: 24,36 - 1841: 26,42 - 1875: 23,33 - 1876: 24,33 - 1877: 25,33 - 1878: 26,33 - 1879: 27,33 - 1882: 34,42 - 2504: 15,45 - 2505: 14,45 - 2506: 13,45 - 2507: 12,45 - 2508: 11,45 - 2525: 33,42 - 2530: 24,42 - 3047: 12,33 - 3048: 13,33 - 3049: 14,33 - 3050: 15,33 - 3051: 16,33 - 3052: 17,33 - 3107: -3,40 - 3108: -4,40 - 3109: -5,40 - 3113: -6,40 - 3121: 9,40 - 3122: 8,40 - 3127: 18,39 - 3133: 16,45 + 1808: 6,37 + 1834: 23,30 + 1835: 24,30 + 1836: 26,25 + 1837: 26,36 + 1838: 24,36 + 1839: 26,42 + 1873: 23,33 + 1874: 24,33 + 1875: 25,33 + 1876: 26,33 + 1877: 27,33 + 1880: 34,42 + 2502: 15,45 + 2503: 14,45 + 2504: 13,45 + 2505: 12,45 + 2506: 11,45 + 2523: 33,42 + 2528: 24,42 + 3045: 12,33 + 3046: 13,33 + 3047: 14,33 + 3048: 15,33 + 3049: 16,33 + 3050: 17,33 + 3105: -3,40 + 3106: -4,40 + 3107: -5,40 + 3111: -6,40 + 3119: 9,40 + 3120: 8,40 + 3125: 18,39 + 3131: 16,45 - node: color: '#F38BAAFF' id: BrickTileWhiteLineS @@ -2592,34 +2601,36 @@ entities: color: '#F9801D7F' id: BrickTileWhiteLineS decals: - 3444: 46,-19 - 3445: 44,-19 - 3446: 43,-19 + 3442: 46,-19 + 3443: 44,-19 + 3444: 43,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 578: -31,-29 - 3484: -5,-26 - 3485: -4,-26 - 3486: -3,-26 + 576: -31,-29 + 3482: -5,-26 + 3483: -4,-26 + 3484: -3,-26 - node: color: '#00BEBE7F' id: BrickTileWhiteLineW decals: - 3166: -34,42 - 3167: -34,41 - 3168: -34,40 - 3201: -44,4 + 3164: -34,42 + 3165: -34,41 + 3166: -34,40 + 3199: -44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 601: 21,6 - 602: 21,7 - 605: 20,6 - 606: 20,7 - 3212: -44,-10 + 599: 21,6 + 600: 21,7 + 603: 20,6 + 604: 20,7 + 3210: -44,-10 + 3596: 28,13 + 3597: 28,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineW @@ -2640,517 +2651,517 @@ entities: 513: -33,-29 514: -33,-28 515: -33,-27 - 567: -28,-41 - 568: -28,-40 - 725: -2,-33 - 728: -2,-40 - 729: -1,-35 - 730: -1,-36 - 731: -1,-37 - 732: -1,-38 - 2354: 27,-41 - 2355: 27,-40 - 2356: 27,-39 - 2357: 27,-38 - 2358: 27,-37 - 2359: 27,-36 + 565: -28,-41 + 566: -28,-40 + 723: -2,-33 + 726: -2,-40 + 727: -1,-35 + 728: -1,-36 + 729: -1,-37 + 730: -1,-38 + 2352: 27,-41 + 2353: 27,-40 + 2354: 27,-39 + 2355: 27,-38 + 2356: 27,-37 + 2357: 27,-36 - node: color: '#765428FF' id: BrickTileWhiteLineW decals: - 3329: -58,-23 - 3330: -58,-22 - 3331: -58,-21 + 3327: -58,-23 + 3328: -58,-22 + 3329: -58,-21 - node: color: '#9FED58B3' id: BrickTileWhiteLineW decals: - 2545: -45,-31 - 2546: -45,-30 + 2543: -45,-31 + 2544: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineW decals: - 3219: -51,-4 - 3220: -51,-3 - 3233: -47,-4 - 3234: -47,-3 - 3346: -47,0 - 3347: -47,1 - 3352: -47,-1 - 3355: -51,2 - 3359: -50,-1 - 3360: -50,0 + 3217: -51,-4 + 3218: -51,-3 + 3231: -47,-4 + 3232: -47,-3 + 3344: -47,0 + 3345: -47,1 + 3350: -47,-1 + 3353: -51,2 + 3357: -50,-1 + 3358: -50,0 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 840: -14,-50 - 841: -14,-49 - 842: -14,-48 - 2081: 5,-43 - 2082: 5,-44 - 2083: 5,-46 - 2084: 5,-47 - 2126: 13,-39 - 2206: 6,-44 - 2207: 14,-43 - 2208: 14,-42 - 2209: 14,-41 - 2210: 14,-39 - 2211: 14,-40 - 2212: 14,-38 - 2213: 14,-37 - 2214: 14,-36 - 2230: 9,-38 - 2231: 9,-37 - 2232: 9,-36 - 2238: -5,-47 - 2241: -9,-49 - 2253: -9,-54 - 2298: -9,-45 - 2345: -1,-46 - 2346: -1,-45 - 2347: -1,-44 - 2348: -1,-43 - 2352: -1,-47 - 2961: 16,-41 - 2962: 16,-40 + 838: -14,-50 + 839: -14,-49 + 840: -14,-48 + 2079: 5,-43 + 2080: 5,-44 + 2081: 5,-46 + 2082: 5,-47 + 2124: 13,-39 + 2204: 6,-44 + 2205: 14,-43 + 2206: 14,-42 + 2207: 14,-41 + 2208: 14,-39 + 2209: 14,-40 + 2210: 14,-38 + 2211: 14,-37 + 2212: 14,-36 + 2228: 9,-38 + 2229: 9,-37 + 2230: 9,-36 + 2236: -5,-47 + 2239: -9,-49 + 2251: -9,-54 + 2296: -9,-45 + 2343: -1,-46 + 2344: -1,-45 + 2345: -1,-44 + 2346: -1,-43 + 2350: -1,-47 + 2959: 16,-41 + 2960: 16,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1607: 39,-41 - 1612: 40,-34 - 1613: 40,-33 - 1614: 40,-32 - 1615: 30,-33 - 1616: 30,-32 - 2858: 40,-22 - 2859: 40,-21 + 1605: 39,-41 + 1610: 40,-34 + 1611: 40,-33 + 1612: 40,-32 + 1613: 30,-33 + 1614: 30,-32 + 2856: 40,-22 + 2857: 40,-21 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1786: 4,32 - 1787: 4,33 - 1788: 4,35 - 1789: 4,36 - 1805: 7,32 - 1806: 7,33 - 1807: 7,34 - 1808: 7,35 - 1809: 7,36 - 1818: 12,30 - 1819: 10,33 - 1820: 10,32 - 1828: 21,32 - 1829: 21,33 - 1881: 28,32 - 3054: 18,32 - 3055: 12,34 - 3110: -7,41 - 3111: -7,42 - 3128: 17,40 - 3129: 17,41 - 3130: 17,42 - 3131: 17,43 - 3132: 17,44 + 1784: 4,32 + 1785: 4,33 + 1786: 4,35 + 1787: 4,36 + 1803: 7,32 + 1804: 7,33 + 1805: 7,34 + 1806: 7,35 + 1807: 7,36 + 1816: 12,30 + 1817: 10,33 + 1818: 10,32 + 1826: 21,32 + 1827: 21,33 + 1879: 28,32 + 3052: 18,32 + 3053: 12,34 + 3108: -7,41 + 3109: -7,42 + 3126: 17,40 + 3127: 17,41 + 3128: 17,42 + 3129: 17,43 + 3130: 17,44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 579: -32,-28 - 580: -32,-28 + 577: -32,-28 + 578: -32,-28 - node: color: '#FFFFFFFF' id: BushAOne decals: - 2647: -12.173578,-13.16537 + 2645: -12.173578,-13.16537 - node: color: '#FFFFFFFF' id: BushAThree decals: - 2604: 7.063609,-17.083809 - 2648: -12.954828,-13.13412 - 2980: -13.009358,7.995878 - 2985: -15.09027,11.031727 + 2602: 7.063609,-17.083809 + 2646: -12.954828,-13.13412 + 2978: -13.009358,7.995878 + 2983: -15.09027,11.031727 - node: color: '#FFFFFFFF' id: BushATwo decals: - 2649: -12.996495,-12.238287 - 2650: -6.0969057,-13.717453 + 2647: -12.996495,-12.238287 + 2648: -6.0969057,-13.717453 - node: color: '#FFFFFFFF' id: BushCOne decals: - 2973: -11.007082,13.412277 + 2971: -11.007082,13.412277 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2598: 17.014423,-8.300894 - 2634: -4.785802,3.4705331 + 2596: 17.014423,-8.300894 + 2632: -4.785802,3.4705331 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 2653: -5.148989,-12.144537 + 2651: -5.148989,-12.144537 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 2590: 17.163681,15.561111 - 2591: 3.516313,17.119299 + 2588: 17.163681,15.561111 + 2589: 3.516313,17.119299 - node: color: '#FFFFFFFF' id: Busha1 decals: - 2592: 4.90173,16.900549 - 2977: -13.092692,9.881294 + 2590: 4.90173,16.900549 + 2975: -13.092692,9.881294 - node: color: '#FFFFFFFF' id: Busha2 decals: - 2982: -13.96527,9.885894 - 2984: -14.642353,10.979644 + 2980: -13.96527,9.885894 + 2982: -14.642353,10.979644 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 2974: -10.975832,14.18311 - 2978: -13.092692,9.006294 + 2972: -10.975832,14.18311 + 2976: -13.092692,9.006294 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 2646: -12.183994,-14.061203 - 2975: -10.996666,15.02686 + 2644: -12.183994,-14.061203 + 2973: -10.996666,15.02686 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 2979: -13.009358,8.402128 - 2983: -14.017353,10.354644 + 2977: -13.009358,8.402128 + 2981: -14.017353,10.354644 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 2651: -5.1698227,-12.957037 - 2981: -14.02777,11.062977 + 2649: -5.1698227,-12.957037 + 2979: -14.02777,11.062977 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 2589: 17.194931,12.9986105 - 2652: -8.055239,-11.332037 - 2976: -11.044625,12.930744 + 2587: 17.194931,12.9986105 + 2650: -8.055239,-11.332037 + 2974: -11.044625,12.930744 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 2580: 6.2998166,3.7755318 - 2595: 17.076923,-7.467561 - 2596: 16.566507,-7.988394 - 2602: 7.2406926,-16.500475 - 2617: 3.5204434,-9.447139 - 2618: 3.2912767,-9.686723 - 2654: -8.044823,-11.092453 + 2578: 6.2998166,3.7755318 + 2593: 17.076923,-7.467561 + 2594: 16.566507,-7.988394 + 2600: 7.2406926,-16.500475 + 2615: 3.5204434,-9.447139 + 2616: 3.2912767,-9.686723 + 2652: -8.044823,-11.092453 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 2581: 6.6984973,3.4174294 - 2597: 17.014423,-8.030061 - 2611: 7.441076,6.766222 - 2971: -17.569584,14.99561 - 2994: -4.0134697,4.9046235 - 3476: 63.771957,-1.9947927 - 3480: 64.23029,-2.0052094 + 2579: 6.6984973,3.4174294 + 2595: 17.014423,-8.030061 + 2609: 7.441076,6.766222 + 2969: -17.569584,14.99561 + 2992: -4.0134697,4.9046235 + 3474: 63.771957,-1.9947927 + 3478: 64.23029,-2.0052094 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 2603: 6.6990256,-16.510893 - 3375: 58.245747,-2.973395 - 3376: 57.818665,-3.0463119 - 3377: 58.308247,-2.1817284 - 3475: 64.15737,-0.19270933 + 2601: 6.6990256,-16.510893 + 3373: 58.245747,-2.973395 + 3374: 57.818665,-3.0463119 + 3375: 58.308247,-2.1817284 + 3473: 64.15737,-0.19270933 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1304: 57.84424,1.1426643 - 1305: 58.21924,0.9864143 - 1306: 57.885906,-2.0552526 - 1307: 58.15674,-1.5865024 - 1308: 57.90674,0.18433094 - 2628: 6.6556993,14.650438 - 2635: -4.7441354,3.6892834 - 2660: -12.329075,-5.2076516 - 2661: -11.683241,-5.540985 - 2995: -4.2530527,4.29004 - 3474: 63.792793,0.09895742 + 1302: 57.84424,1.1426643 + 1303: 58.21924,0.9864143 + 1304: 57.885906,-2.0552526 + 1305: 58.15674,-1.5865024 + 1306: 57.90674,0.18433094 + 2626: 6.6556993,14.650438 + 2633: -4.7441354,3.6892834 + 2658: -12.329075,-5.2076516 + 2659: -11.683241,-5.540985 + 2993: -4.2530527,4.29004 + 3472: 63.792793,0.09895742 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1311: 58.167156,-0.24275243 - 3008: -4.922404,-3.8768375 + 1309: 58.167156,-0.24275243 + 3006: -4.922404,-3.8768375 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1312: 57.833824,-0.37816906 - 3010: -4.4328203,-4.7726707 - 3011: -4.3255215,-5.3247385 + 1310: 57.833824,-0.37816906 + 3008: -4.4328203,-4.7726707 + 3009: -4.3255215,-5.3247385 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 2970: -17.132084,16.266443 - 3009: -4.3703203,-4.199754 - 3374: 57.943665,-2.723395 + 2968: -17.132084,16.266443 + 3007: -4.3703203,-4.199754 + 3372: 57.943665,-2.723395 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 2599: 17.14984,-5.092561 - 2605: 8.53236,-17.187975 - 2639: 3.404969,-4.7533755 - 2986: -9.359586,2.9312673 + 2597: 17.14984,-5.092561 + 2603: 8.53236,-17.187975 + 2637: 3.404969,-4.7533755 + 2984: -9.359586,2.9312673 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 2640: 4.175802,-4.0346255 - 2972: -16.8925,15.828943 + 2638: 4.175802,-4.0346255 + 2970: -16.8925,15.828943 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 2559: -2.1416075,5.8916445 - 2560: -2.162441,14.072103 - 2561: 17.866562,15.155413 - 2562: 18.231146,11.999163 - 2563: 3.059716,-17.07088 - 2564: -4.1298733,-14.029394 - 2565: -2.3702574,-5.9809127 - 2566: -8.961391,-10.053829 - 2567: -17.146135,-6.1901164 + 2557: -2.1416075,5.8916445 + 2558: -2.162441,14.072103 + 2559: 17.866562,15.155413 + 2560: 18.231146,11.999163 + 2561: 3.059716,-17.07088 + 2562: -4.1298733,-14.029394 + 2563: -2.3702574,-5.9809127 + 2564: -8.961391,-10.053829 + 2565: -17.146135,-6.1901164 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 2600: 17.160257,-5.6342273 - 2629: 7.2077823,13.712938 + 2598: 17.160257,-5.6342273 + 2627: 7.2077823,13.712938 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 2577: 5.9211392,3.1419072 - 2582: 8.507914,15.796663 - 2583: 9.528748,15.46333 - 2993: -3.4732609,5.2424126 + 2575: 5.9211392,3.1419072 + 2580: 8.507914,15.796663 + 2581: 9.528748,15.46333 + 2991: -3.4732609,5.2424126 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 2578: 5.087806,3.9127407 - 2584: 8.528747,14.473747 - 2662: -13.162408,-5.0826516 - 2663: -14.037408,-5.988902 + 2576: 5.087806,3.9127407 + 2582: 8.528747,14.473747 + 2660: -13.162408,-5.0826516 + 2661: -14.037408,-5.988902 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 2579: 7.181556,4.0273237 - 2588: 17.465765,12.071527 - 2664: -13.756159,-5.822237 - 2665: -13.901991,-8.228487 - 2990: -9.230458,4.9216795 + 2577: 7.181556,4.0273237 + 2586: 17.465765,12.071527 + 2662: -13.756159,-5.822237 + 2663: -13.901991,-8.228487 + 2988: -9.230458,4.9216795 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 2568: -17.677385,-15.149096 - 2569: -6.0205603,-17.117607 - 2570: -9.970078,-14.052947 - 2571: -9.887934,2.4137444 - 2572: -18.05108,15.0529785 - 2601: 6.2927756,-17.073393 - 2612: 15.850491,-4.61609 - 2614: 9.772904,-4.483665 - 2626: 13.70388,8.66825 - 2627: 7.1036158,14.358771 - 2630: -5.465275,9.849015 - 2631: -6.746525,10.213598 - 2644: 3.4466357,-5.461709 - 2679: -20.130556,-17.838984 - 2680: -16.849306,-19.984818 - 2681: -17.307638,-19.6619 - 2682: -19.265972,-20.13065 - 2998: -14.051299,-2.1793242 - 3001: -17.143507,-2.1316965 - 3002: -14.734559,-9.289597 - 3004: -14.390809,-9.633347 - 3005: -10.377625,-9.233512 - 3013: -3.5338547,-5.210155 - 3014: -4.8467765,-14.670914 - 3370: -2.6337829,9.646117 + 2566: -17.677385,-15.149096 + 2567: -6.0205603,-17.117607 + 2568: -9.970078,-14.052947 + 2569: -9.887934,2.4137444 + 2570: -18.05108,15.0529785 + 2599: 6.2927756,-17.073393 + 2610: 15.850491,-4.61609 + 2612: 9.772904,-4.483665 + 2624: 13.70388,8.66825 + 2625: 7.1036158,14.358771 + 2628: -5.465275,9.849015 + 2629: -6.746525,10.213598 + 2642: 3.4466357,-5.461709 + 2677: -20.130556,-17.838984 + 2678: -16.849306,-19.984818 + 2679: -17.307638,-19.6619 + 2680: -19.265972,-20.13065 + 2996: -14.051299,-2.1793242 + 2999: -17.143507,-2.1316965 + 3000: -14.734559,-9.289597 + 3002: -14.390809,-9.633347 + 3003: -10.377625,-9.233512 + 3011: -3.5338547,-5.210155 + 3012: -4.8467765,-14.670914 + 3368: -2.6337829,9.646117 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 2573: -17.025719,17.03245 - 2574: 18.117056,13.867498 - 2619: 3.580893,-8.535644 - 2620: 8.918044,-3.98356 - 2621: 15.266736,-5.8692675 - 2622: 16.209822,-5.8538113 - 2623: 7.318463,5.66825 - 2624: 6.4642963,5.85575 - 2625: 14.620547,8.230751 - 2636: 6.318049,2.225238 - 2655: -8.044823,-13.97787 - 2656: -8.878156,-13.144537 - 2657: -5.867739,-11.154953 - 2658: -13.026991,-9.009735 - 2659: -11.860325,-5.124318 - 2683: -16.859722,-18.94315 - 2987: -8.75542,2.9208503 - 2992: -13.95071,2.256745 - 2999: -14.165881,-2.439741 - 3003: -14.713725,-9.602097 - 3006: -9.76849,-14.395954 - 3015: -4.450943,-14.608414 - 3371: -2.8004496,9.333617 + 2571: -17.025719,17.03245 + 2572: 18.117056,13.867498 + 2617: 3.580893,-8.535644 + 2618: 8.918044,-3.98356 + 2619: 15.266736,-5.8692675 + 2620: 16.209822,-5.8538113 + 2621: 7.318463,5.66825 + 2622: 6.4642963,5.85575 + 2623: 14.620547,8.230751 + 2634: 6.318049,2.225238 + 2653: -8.044823,-13.97787 + 2654: -8.878156,-13.144537 + 2655: -5.867739,-11.154953 + 2656: -13.026991,-9.009735 + 2657: -11.860325,-5.124318 + 2681: -16.859722,-18.94315 + 2985: -8.75542,2.9208503 + 2990: -13.95071,2.256745 + 2997: -14.165881,-2.439741 + 3001: -14.713725,-9.602097 + 3004: -9.76849,-14.395954 + 3013: -4.450943,-14.608414 + 3369: -2.8004496,9.333617 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 2575: 17.117056,10.211248 - 2576: 9.26489,2.9960737 - 2606: 14.499886,6.958212 - 2607: 13.541552,7.447795 - 2608: 6.0254874,14.498462 - 2613: 16.579659,-3.9598398 - 2637: 7.224299,2.3710713 - 2638: 4.0082765,6.5204124 - 2645: 5.713353,-3.1926599 - 2969: -14.413333,18.172693 - 2989: -9.557503,5.8271008 - 2991: -14.0402975,2.506745 - 3372: -2.8212829,8.989867 + 2573: 17.117056,10.211248 + 2574: 9.26489,2.9960737 + 2604: 14.499886,6.958212 + 2605: 13.541552,7.447795 + 2606: 6.0254874,14.498462 + 2611: 16.579659,-3.9598398 + 2635: 7.224299,2.3710713 + 2636: 4.0082765,6.5204124 + 2643: 5.713353,-3.1926599 + 2967: -14.413333,18.172693 + 2987: -9.557503,5.8271008 + 2989: -14.0402975,2.506745 + 3370: -2.8212829,8.989867 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 2547: -15.13607,-18.199955 - 2548: -18.14605,-11.80234 - 2549: -13.963279,-4.177868 - 2550: -5.8667884,-5.4799514 - 2551: 8.061129,-4.427868 - 2552: 15.901968,-2.2820346 - 2553: 17.151968,2.9988291 - 2554: 9.610178,17.11985 - 2555: 4.0546904,17.078184 - 2556: 3.480264,5.210905 - 2557: -15.017622,18.057854 - 2558: -5.5270247,2.9853945 - 2593: 5.777904,17.049623 - 2594: 9.139725,14.0701685 - 2609: 6.567154,13.456795 - 2610: 6.441076,6.7870555 - 2615: 9.397904,-5.046165 - 2616: 4.3850265,-9.488806 - 2632: -6.2881913,9.494848 - 2633: -5.402775,10.869849 - 2641: 3.8528857,-4.5242085 - 2666: -11.037408,-8.100949 - 2996: -3.7009702,4.4983735 - 2997: -5.697132,-3.1168242 - 3007: -9.425084,-14.560988 - 3012: -3.5442712,-4.7830715 + 2545: -15.13607,-18.199955 + 2546: -18.14605,-11.80234 + 2547: -13.963279,-4.177868 + 2548: -5.8667884,-5.4799514 + 2549: 8.061129,-4.427868 + 2550: 15.901968,-2.2820346 + 2551: 17.151968,2.9988291 + 2552: 9.610178,17.11985 + 2553: 4.0546904,17.078184 + 2554: 3.480264,5.210905 + 2555: -15.017622,18.057854 + 2556: -5.5270247,2.9853945 + 2591: 5.777904,17.049623 + 2592: 9.139725,14.0701685 + 2607: 6.567154,13.456795 + 2608: 6.441076,6.7870555 + 2613: 9.397904,-5.046165 + 2614: 4.3850265,-9.488806 + 2630: -6.2881913,9.494848 + 2631: -5.402775,10.869849 + 2639: 3.8528857,-4.5242085 + 2664: -11.037408,-8.100949 + 2994: -3.7009702,4.4983735 + 2995: -5.697132,-3.1168242 + 3005: -9.425084,-14.560988 + 3010: -3.5442712,-4.7830715 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 2585: 8.789164,15.109163 - 2671: -19.824345,-10.10782 - 2672: -20.11601,-9.63907 - 2674: -20.011845,-8.243237 - 2675: -18.730595,-8.79532 - 2676: -18.873224,-10.013859 - 2677: -19.654474,-7.0659423 - 3388: -18.860361,-7.807997 + 2583: 8.789164,15.109163 + 2669: -19.824345,-10.10782 + 2670: -20.11601,-9.63907 + 2672: -20.011845,-8.243237 + 2673: -18.730595,-8.79532 + 2674: -18.873224,-10.013859 + 2675: -19.654474,-7.0659423 + 3386: -18.860361,-7.807997 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 2673: -18.793095,-6.868236 - 2678: -19.94614,-7.7117753 - 3386: -20.016611,-7.2975807 - 3387: -18.902029,-9.370498 - 3389: -19.318695,-8.485081 + 2671: -18.793095,-6.868236 + 2676: -19.94614,-7.7117753 + 3384: -20.016611,-7.2975807 + 3385: -18.902029,-9.370498 + 3387: -19.318695,-8.485081 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 3373: -4.6337833,10.114867 + 3371: -4.6337833,10.114867 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 2643: 3.0091357,-5.795042 - 2988: -10.00542,5.191684 + 2641: 3.0091357,-5.795042 + 2986: -10.00542,5.191684 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2586: 15.903748,17.02583 - 2587: 18.067644,12.942497 - 2642: 4.8112187,-3.7846253 + 2584: 15.903748,17.02583 + 2585: 18.067644,12.942497 + 2640: 4.8112187,-3.7846253 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 3477: 63.81363,-0.83854264 + 3475: 63.81363,-0.83854264 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 3478: 64.29279,-0.73437595 + 3476: 64.29279,-0.73437595 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 2667: -10.9586735,-6.0094166 - 2668: -11.224603,-5.736016 - 2669: -13.307937,-8.381849 - 2670: -14.067469,-7.593817 - 3479: 64.12612,-1.2864593 + 2665: -10.9586735,-6.0094166 + 2666: -11.224603,-5.736016 + 2667: -13.307937,-8.381849 + 2668: -14.067469,-7.593817 + 3477: 64.12612,-1.2864593 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 1309: 58.021324,0.5489143 - 1310: 57.96924,-1.1594192 - 3378: 57.99387,-2.411529 + 1307: 58.021324,0.5489143 + 1308: 57.96924,-1.1594192 + 3376: 57.99387,-2.411529 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 3546: 56.20735,16.017925 + 3544: 56.20735,16.017925 - node: color: '#52B4E996' id: CheckerNWSE decals: - 2951: -19,-27 - 2952: -16,-27 - 2953: -22,-27 + 2949: -19,-27 + 2950: -16,-27 + 2951: -22,-27 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe @@ -3181,33 +3192,33 @@ entities: decals: 30: -2,-2 31: -2,-2 - 3413: 2,4 - 3414: 3,3 - 3415: 4,2 + 3411: 2,4 + 3412: 3,3 + 3413: 4,2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: 33: 2,-2 - 3410: -4,2 - 3411: -3,3 - 3412: -2,4 + 3408: -4,2 + 3409: -3,3 + 3410: -2,4 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: 29: -2,2 - 3407: 2,-4 - 3408: 3,-3 - 3409: 4,-2 + 3405: 2,-4 + 3406: 3,-3 + 3407: 4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: 32: 2,2 - 3404: -2,-4 - 3405: -3,-3 - 3406: -4,-2 + 3402: -2,-4 + 3403: -3,-3 + 3404: -4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE @@ -3271,7 +3282,7 @@ entities: 95: -13,-2 96: -16,-2 97: -17,-2 - 3000: -14,-2 + 2998: -14,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS @@ -3302,8 +3313,8 @@ entities: 105: -8,2 106: -7,2 107: -6,2 - 3396: 11,2 - 3397: 14,2 + 3394: 11,2 + 3395: 14,2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW @@ -3333,348 +3344,350 @@ entities: 76: 2,-14 77: 2,-16 78: 2,-17 - 3402: 2,10 - 3403: 2,13 + 3400: 2,10 + 3401: 2,13 - node: color: '#FFFFFFFF' id: Delivery decals: - 1736: 50,-39 - 1737: 50,-38 - 1738: 50,-37 - 1739: 50,-36 + 1734: 50,-39 + 1735: 50,-38 + 1736: 50,-37 + 1737: 50,-36 - node: color: '#3EB38896' id: DiagonalCheckerAOverlay decals: - 3523: 12,23 - 3524: 13,22 - 3525: 13,23 - 3526: 14,23 - 3527: 15,23 - 3528: 15,22 - 3529: 14,22 - 3530: 14,21 - 3531: 13,21 - 3532: 12,20 - 3533: 13,20 - 3534: 14,20 - 3535: 15,20 - 3536: 15,21 - 3538: 12,21 - 3539: 12,22 + 3521: 12,23 + 3522: 13,22 + 3523: 13,23 + 3524: 14,23 + 3525: 15,23 + 3526: 15,22 + 3527: 14,22 + 3528: 14,21 + 3529: 13,21 + 3530: 12,20 + 3531: 13,20 + 3532: 14,20 + 3533: 15,20 + 3534: 15,21 + 3536: 12,21 + 3537: 12,22 - node: color: '#639137FF' id: DiagonalCheckerBOverlay decals: - 3510: 12,20 - 3511: 13,20 - 3512: 13,21 - 3513: 13,22 - 3514: 13,23 - 3515: 14,23 - 3516: 14,22 - 3517: 14,21 - 3518: 14,20 - 3519: 15,20 - 3520: 15,21 - 3521: 15,22 - 3522: 15,23 - 3537: 12,23 - 3540: 12,21 - 3541: 12,22 + 3508: 12,20 + 3509: 13,20 + 3510: 13,21 + 3511: 13,22 + 3512: 13,23 + 3513: 14,23 + 3514: 14,22 + 3515: 14,21 + 3516: 14,20 + 3517: 15,20 + 3518: 15,21 + 3519: 15,22 + 3520: 15,23 + 3535: 12,23 + 3538: 12,21 + 3539: 12,22 - node: color: '#D381C996' id: DiagonalOverlay decals: - 2240: -10,-49 - 2316: -10,-45 - 3381: 4,-47 - 3382: 4,-46 - 3383: -2,-47 - 3384: -6,-47 + 2238: -10,-49 + 2314: -10,-45 + 3379: 4,-47 + 3380: 4,-46 + 3381: -2,-47 + 3382: -6,-47 - node: color: '#DE3A3A96' id: DiagonalOverlay decals: - 1556: 51,-2 - 1557: 49,-2 - 1558: 49,-5 - 1559: 51,-5 - 1560: 29,-33 - 1561: 29,-32 - 1562: 39,-34 - 1563: 39,-32 - 1564: 41,-31 - 1565: 44,-37 - 1566: 41,-38 - 1567: 38,-41 - 2851: 41,-24 + 1554: 51,-2 + 1555: 49,-2 + 1556: 49,-5 + 1557: 51,-5 + 1558: 29,-33 + 1559: 29,-32 + 1560: 39,-34 + 1561: 39,-32 + 1562: 41,-31 + 1563: 44,-37 + 1564: 41,-38 + 1565: 38,-41 + 2849: 41,-24 - node: color: '#EFB34196' id: DiagonalOverlay decals: - 1822: 9,33 - 1823: 9,32 - 1824: 20,33 - 1825: 20,32 + 1820: 9,33 + 1821: 9,32 + 1822: 20,33 + 1823: 20,32 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 2749: 16.070688,16.03927 - 2780: 9.361443,4.4135666 - 2781: 8.71561,5.3614836 + 2747: 16.070688,16.03927 + 2778: 9.361443,4.4135666 + 2779: 8.71561,5.3614836 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 2750: 17.062426,11.239492 - 2751: 10.321154,17.060677 - 2784: 7.6635256,6.1948166 - 2785: 8.538526,6.2989836 - 2820: 9.51524,6.327868 + 2748: 17.062426,11.239492 + 2749: 10.321154,17.060677 + 2782: 7.6635256,6.1948166 + 2783: 8.538526,6.2989836 + 2818: 9.51524,6.327868 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 2777: 10.111443,4.4344 - 2778: 8.663526,4.5594 - 2779: 8.05936,5.5073166 - 2821: 9.79649,6.7862015 + 2775: 10.111443,4.4344 + 2776: 8.663526,4.5594 + 2777: 8.05936,5.5073166 + 2819: 9.79649,6.7862015 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2746: 3.1090877,15.838451 - 2747: 15.10194,16.174686 + 2744: 3.1090877,15.838451 + 2745: 15.10194,16.174686 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2748: 15.393607,16.737186 - 2782: 9.49686,5.1010666 - 2783: 9.080193,5.7260666 - 2786: 10.324566,5.2335067 - 2808: 16.988474,10.508276 - 2809: 16.363474,10.747859 - 2810: 11.000941,16.992361 - 2811: 11.6309395,17.170504 - 2827: 7.8013525,4.69695 - 2828: 9.145103,3.603201 - 2829: 9.15132,6.0905905 + 2746: 15.393607,16.737186 + 2780: 9.49686,5.1010666 + 2781: 9.080193,5.7260666 + 2784: 10.324566,5.2335067 + 2806: 16.988474,10.508276 + 2807: 16.363474,10.747859 + 2808: 11.000941,16.992361 + 2809: 11.6309395,17.170504 + 2825: 7.8013525,4.69695 + 2826: 9.145103,3.603201 + 2827: 9.15132,6.0905905 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2819: 8.806907,6.8799515 + 2817: 8.806907,6.8799515 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2787: 15.255633,6.9409747 - 2788: 14.661882,7.545141 + 2785: 15.255633,6.9409747 + 2786: 14.661882,7.545141 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 2789: 15.463966,7.690975 - 2791: 14.5844555,8.774308 - 2795: 14.978545,6.1768036 - 2796: 15.728544,6.3643036 - 2822: 14.814111,5.0989227 - 2823: 15.56411,4.4947557 - 2826: 12.9190645,9.799427 + 2787: 15.463966,7.690975 + 2789: 14.5844555,8.774308 + 2793: 14.978545,6.1768036 + 2794: 15.728544,6.3643036 + 2820: 14.814111,5.0989227 + 2821: 15.56411,4.4947557 + 2824: 12.9190645,9.799427 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 2740: 8.013186,3.1140726 - 2741: 10.378889,-5.012858 - 2742: 10.274722,-4.383773 - 2790: 15.219872,8.347224 - 2792: 13.9177885,8.774308 - 2793: 13.252036,8.115639 - 2794: 13.134795,8.926804 - 2797: 16.103544,7.1143036 - 2798: 16.42646,6.1143036 - 2799: 15.748611,5.544657 - 2824: 14.501611,4.234339 - 2825: 13.6690645,9.570259 + 2738: 8.013186,3.1140726 + 2739: 10.378889,-5.012858 + 2740: 10.274722,-4.383773 + 2788: 15.219872,8.347224 + 2790: 13.9177885,8.774308 + 2791: 13.252036,8.115639 + 2792: 13.134795,8.926804 + 2795: 16.103544,7.1143036 + 2796: 16.42646,6.1143036 + 2797: 15.748611,5.544657 + 2822: 14.501611,4.234339 + 2823: 13.6690645,9.570259 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 2738: 7.160172,13.449887 - 2739: 5.483089,13.918637 - 2752: 12.341987,18.164845 - 2759: 4.084557,12.876521 - 2760: 6.313724,11.689021 - 2761: 9.0012245,11.564021 - 2767: 8.3553915,12.168188 - 2768: 6.730391,12.855688 - 2769: 5.105391,14.376521 - 2770: 2.9283073,14.741104 - 2772: 4.719974,13.105688 - 2773: 4.355391,14.585857 - 2774: 3.473161,14.394393 - 2775: 4.3585773,13.821476 - 2801: 2.299132,6.662748 - 2806: 4.7337813,6.6002483 - 2807: 4.5150313,6.0064983 + 2736: 7.160172,13.449887 + 2737: 5.483089,13.918637 + 2750: 12.341987,18.164845 + 2757: 4.084557,12.876521 + 2758: 6.313724,11.689021 + 2759: 9.0012245,11.564021 + 2765: 8.3553915,12.168188 + 2766: 6.730391,12.855688 + 2767: 5.105391,14.376521 + 2768: 2.9283073,14.741104 + 2770: 4.719974,13.105688 + 2771: 4.355391,14.585857 + 2772: 3.473161,14.394393 + 2773: 4.3585773,13.821476 + 2799: 2.299132,6.662748 + 2804: 4.7337813,6.6002483 + 2805: 4.5150313,6.0064983 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 2753: 14.633654,18.154427 - 2762: 7.6991415,11.939021 - 2763: 7.0533075,11.282771 - 2764: 8.1783085,11.241104 - 2802: 3.0178826,5.8710814 + 2751: 14.633654,18.154427 + 2760: 7.6991415,11.939021 + 2761: 7.0533075,11.282771 + 2762: 8.1783085,11.241104 + 2800: 3.0178826,5.8710814 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 2754: 13.227404,18.091927 - 2756: 11.914904,18.11276 - 2757: 11.914904,18.11276 - 2765: 6.938724,12.168188 - 2766: 7.6158075,12.918188 - 2776: 3.4939945,13.592309 - 2803: 3.1637156,6.5481644 - 2804: 3.7887158,5.704415 - 2805: 3.9108648,7.0273314 + 2752: 13.227404,18.091927 + 2754: 11.914904,18.11276 + 2755: 11.914904,18.11276 + 2763: 6.938724,12.168188 + 2764: 7.6158075,12.918188 + 2774: 3.4939945,13.592309 + 2801: 3.1637156,6.5481644 + 2802: 3.7887158,5.704415 + 2803: 3.9108648,7.0273314 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 2743: 3.8501334,-9.470912 - 2744: 4.3709664,-9.908412 - 2745: 3.6209664,-9.960495 - 2755: 13.966987,18.133595 - 2758: 15.123237,18.071095 - 2771: 5.136641,13.511938 - 2800: 2.2574656,5.8294144 - 2812: 9.849766,11.338729 - 2813: 9.047683,10.619978 - 2814: 4.7809443,7.692894 - 2815: 5.676778,7.797061 - 2816: 5.4059443,8.505394 - 2817: 5.8902392,6.890369 - 2818: 6.223573,8.400785 + 2741: 3.8501334,-9.470912 + 2742: 4.3709664,-9.908412 + 2743: 3.6209664,-9.960495 + 2753: 13.966987,18.133595 + 2756: 15.123237,18.071095 + 2769: 5.136641,13.511938 + 2798: 2.2574656,5.8294144 + 2810: 9.849766,11.338729 + 2811: 9.047683,10.619978 + 2812: 4.7809443,7.692894 + 2813: 5.676778,7.797061 + 2814: 5.4059443,8.505394 + 2815: 5.8902392,6.890369 + 2816: 6.223573,8.400785 - node: color: '#00BEBE7F' id: FullTileOverlayGreyscale decals: - 3173: -26,40 - 3174: -26,42 - 3175: -43,2 - 3176: -42,2 - 3177: -37,2 - 3178: -36,2 + 3171: -26,40 + 3172: -26,42 + 3173: -43,2 + 3174: -42,2 + 3175: -37,2 + 3176: -36,2 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 706: 21,3 - 707: 23,3 - 708: 25,3 - 808: -33,-9 - 809: -29,-9 - 2860: -23,-36 + 704: 21,3 + 705: 23,3 + 706: 25,3 + 806: -33,-9 + 807: -29,-9 + 2858: -23,-36 + 3612: 27,13 + 3613: 27,14 - node: color: '#373737FF' id: FullTileOverlayGreyscale decals: - 3416: 21,-19 - 3417: 20,-19 - 3418: 19,-19 - 3419: 19,-18 - 3420: 18,-19 - 3421: 18,-20 - 3422: 19,-20 - 3423: 19,-21 - 3424: 18,-21 - 3425: 21,-18 - 3426: 20,-18 - 3434: 17,-18 - 3435: 18,-17 - 3436: 21,-22 - 3437: 22,-21 + 3414: 21,-19 + 3415: 20,-19 + 3416: 19,-19 + 3417: 19,-18 + 3418: 18,-19 + 3419: 18,-20 + 3420: 19,-20 + 3421: 19,-21 + 3422: 18,-21 + 3423: 21,-18 + 3424: 20,-18 + 3432: 17,-18 + 3433: 18,-17 + 3434: 21,-22 + 3435: 22,-21 - node: color: '#4A35194C' id: FullTileOverlayGreyscale decals: - 2689: -22,3 - 2690: -21,3 - 2691: -20,3 - 2692: -19,3 - 2693: -19,4 - 2694: -19,5 - 2695: -19,6 - 2696: -19,7 - 2697: -19,8 - 2698: -19,9 - 2699: -19,10 - 2700: -20,10 - 2701: -20,9 - 2702: -20,8 - 2703: -20,7 - 2704: -20,6 - 2705: -20,5 - 2706: -20,4 - 2707: -21,4 - 2708: -22,4 - 2709: -22,5 - 2710: -21,5 - 2711: -21,6 - 2712: -22,6 - 2713: -22,7 - 2714: -21,7 - 2715: -21,8 - 2716: -22,8 - 2717: -22,9 - 2718: -21,9 - 2719: -21,10 - 2720: -22,10 + 2687: -22,3 + 2688: -21,3 + 2689: -20,3 + 2690: -19,3 + 2691: -19,4 + 2692: -19,5 + 2693: -19,6 + 2694: -19,7 + 2695: -19,8 + 2696: -19,9 + 2697: -19,10 + 2698: -20,10 + 2699: -20,9 + 2700: -20,8 + 2701: -20,7 + 2702: -20,6 + 2703: -20,5 + 2704: -20,4 + 2705: -21,4 + 2706: -22,4 + 2707: -22,5 + 2708: -21,5 + 2709: -21,6 + 2710: -22,6 + 2711: -22,7 + 2712: -21,7 + 2713: -21,8 + 2714: -22,8 + 2715: -22,9 + 2716: -21,9 + 2717: -21,10 + 2718: -22,10 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: 244: -8,-39 245: -7,-39 - 530: -26,-27 - 531: -26,-28 - 532: -26,-29 - 533: -12,-30 - 534: -12,-29 - 535: -11,-29 - 550: -26,-41 - 735: -3,-37 - 736: -3,-36 - 818: -29,-6 - 819: -33,-6 - 927: -28,-29 - 928: -28,-28 - 929: -24,-29 - 930: -24,-28 + 528: -26,-27 + 529: -26,-28 + 530: -26,-29 + 531: -12,-30 + 532: -12,-29 + 533: -11,-29 + 548: -26,-41 + 733: -3,-37 + 734: -3,-36 + 816: -29,-6 + 817: -33,-6 + 925: -28,-29 + 926: -28,-28 + 927: -24,-29 + 928: -24,-28 - node: color: '#765428FF' id: FullTileOverlayGreyscale decals: - 3317: -55,-16 - 3318: -56,-16 + 3315: -55,-16 + 3316: -56,-16 - node: color: '#951710FF' id: FullTileOverlayGreyscale decals: - 2398: 43,37 - 2399: 43,38 - 2400: 43,39 - 2401: 43,40 - 2402: 43,41 - 2403: 43,36 - 2404: 43,42 + 2396: 43,37 + 2397: 43,38 + 2398: 43,39 + 2399: 43,40 + 2400: 43,41 + 2401: 43,36 + 2402: 43,42 - node: color: '#9FED5896' id: FullTileOverlayGreyscale @@ -3687,102 +3700,106 @@ entities: 193: -31,-17 263: -26,-14 474: -30,-22 - 814: -31,-9 - 815: -31,-4 + 812: -31,-9 + 813: -31,-4 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 812: -31,-8 - 813: -31,-5 + 810: -31,-8 + 811: -31,-5 - node: color: '#BC863FFF' id: FullTileOverlayGreyscale decals: - 3235: -48,-3 - 3236: -48,-4 - 3237: -52,-1 - 3238: -52,0 - 3349: -48,0 - 3350: -48,1 - 3351: -48,-1 - 3363: -51,-1 - 3364: -51,0 + 3233: -48,-3 + 3234: -48,-4 + 3235: -52,-1 + 3236: -52,0 + 3347: -48,0 + 3348: -48,1 + 3349: -48,-1 + 3361: -51,-1 + 3362: -51,0 - node: color: '#C6FF91FF' id: FullTileOverlayGreyscale decals: - 3018: -37,-35 - 3019: -37,-34 - 3020: -36,-34 - 3021: -35,-34 + 3016: -37,-35 + 3017: -37,-34 + 3018: -36,-34 + 3019: -35,-34 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 822: -29,-4 - 823: -33,-4 + 820: -29,-4 + 821: -33,-4 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 816: -29,-7 - 817: -33,-7 + 814: -29,-7 + 815: -33,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 820: -29,-5 - 821: -33,-5 - 2735: 56,-10 - 2736: 56,-11 - 2737: 56,-12 - 3390: 32,-10 - 3391: 38,-10 - 3392: 40,-10 + 818: -29,-5 + 819: -33,-5 + 2733: 56,-10 + 2734: 56,-11 + 2735: 56,-12 + 3388: 32,-10 + 3389: 38,-10 + 3390: 40,-10 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 810: -29,-8 - 811: -33,-8 - 2886: -11,-39 - 2887: -19,-40 - 2932: -16,-38 + 808: -29,-8 + 809: -33,-8 + 2884: -11,-39 + 2885: -19,-40 + 2930: -16,-38 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 3393: 11,2 + 3391: 11,2 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 3400: 2,10 + 3398: 2,10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 3395: 12.501469,3.9993005 - 3398: 2,13 - 3399: 2,13 + 3393: 12.501469,3.9993005 + 3396: 2,13 + 3397: 2,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 3394: 14,2 - 3401: 4.001555,11.500919 + 3392: 14,2 + 3399: 4.001555,11.500919 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 593: 20,9 - 594: 21,9 - 595: 21,9 - 596: 22,9 - 597: 22,9 - 598: 25,9 - 622: 26,9 + 591: 20,9 + 592: 21,9 + 593: 21,9 + 594: 22,9 + 595: 22,9 + 596: 25,9 + 620: 26,9 + 3585: 22,18 + 3586: 23,18 + 3587: 24,18 + 3588: 25,18 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3795,18 +3812,18 @@ entities: 332: -17,-33 333: -16,-33 334: -15,-33 - 537: -13,-29 - 549: -26,-42 + 535: -13,-29 + 547: -26,-42 - node: color: '#639137FF' id: HalfTileOverlayGreyscale decals: - 640: 4,24 - 641: 5,24 - 642: 6,24 - 643: 7,24 - 644: 8,24 - 645: 9,24 + 638: 4,24 + 639: 5,24 + 640: 6,24 + 641: 7,24 + 642: 8,24 + 643: 9,24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3825,35 +3842,37 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale decals: - 3022: -36,-31 - 3023: -37,-31 - 3024: -38,-31 + 3020: -36,-31 + 3021: -37,-31 + 3022: -38,-31 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 830: -13,-50 - 831: -12,-50 - 2957: 15,-42 + 828: -13,-50 + 829: -12,-50 + 2955: 15,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1435: 45,-15 - 1436: 44,-15 - 1437: 43,-15 - 1438: 42,-15 - 1439: 41,-15 + 1433: 45,-15 + 1434: 44,-15 + 1435: 43,-15 + 1436: 42,-15 + 1437: 41,-15 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 588: 20,4 - 589: 20,4 - 590: 21,4 - 591: 22,4 - 592: 25,4 - 623: 26,4 + 586: 20,4 + 587: 20,4 + 588: 21,4 + 589: 22,4 + 590: 25,4 + 621: 26,4 + 3589: 23,11 + 3590: 24,11 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3864,26 +3883,26 @@ entities: 340: -18,-36 341: -20,-36 342: -19,-36 - 536: -13,-28 - 548: -26,-40 + 534: -13,-28 + 546: -26,-40 - node: color: '#639137FF' id: HalfTileOverlayGreyscale180 decals: - 632: 8,22 - 633: 7,22 - 634: 7,22 - 635: 6,22 - 636: 5,22 - 646: 4,19 - 647: 5,19 - 648: 6,19 - 649: 7,19 - 650: 7,19 - 651: 8,19 - 652: 9,19 - 665: 5,23 - 666: 8,23 + 630: 8,22 + 631: 7,22 + 632: 7,22 + 633: 6,22 + 634: 5,22 + 644: 4,19 + 645: 5,19 + 646: 6,19 + 647: 7,19 + 648: 7,19 + 649: 8,19 + 650: 9,19 + 663: 5,23 + 664: 8,23 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3901,33 +3920,38 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale180 decals: - 3017: -38,-35 + 3015: -38,-35 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 824: -13,-48 - 825: -12,-48 - 2958: 15,-39 + 822: -13,-48 + 823: -12,-48 + 2956: 15,-39 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale270 decals: - 2412: 42,36 - 2413: 42,37 - 2414: 42,38 - 2415: 42,39 - 2416: 42,40 - 2417: 42,41 - 2418: 42,42 + 2410: 42,36 + 2411: 42,37 + 2412: 42,38 + 2413: 42,39 + 2414: 42,40 + 2415: 42,41 + 2416: 42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 584: 19,5 - 585: 19,6 - 586: 19,7 - 587: 19,8 + 582: 19,5 + 583: 19,6 + 584: 19,7 + 585: 19,8 + 3580: 21,13 + 3581: 21,14 + 3582: 21,15 + 3583: 21,16 + 3584: 21,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3944,32 +3968,32 @@ entities: 257: -8,-34 327: -21,-34 328: -21,-35 - 541: -11,-28 - 542: -11,-27 - 543: -11,-26 - 547: -11,-25 + 539: -11,-28 + 540: -11,-27 + 541: -11,-26 + 545: -11,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale270 decals: - 631: 9,21 - 653: 3,20 - 654: 3,21 - 655: 3,22 - 656: 3,23 - 667: 7,20 - 670: 7,21 + 629: 9,21 + 651: 3,20 + 652: 3,21 + 653: 3,22 + 654: 3,23 + 665: 7,20 + 668: 7,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale270 decals: - 2426: 44,36 - 2427: 44,37 - 2428: 44,38 - 2429: 44,39 - 2430: 44,40 - 2431: 44,41 - 2432: 44,42 + 2424: 44,36 + 2425: 44,37 + 2426: 44,38 + 2427: 44,39 + 2428: 44,40 + 2429: 44,41 + 2430: 44,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3985,32 +4009,39 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale270 decals: - 3026: -39,-32 - 3027: -39,-33 - 3028: -39,-34 + 3024: -39,-32 + 3025: -39,-33 + 3026: -39,-34 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 829: -13,-49 + 827: -13,-49 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 2730: 57,-12 - 2731: 57,-11 - 2732: 57,-10 + 2728: 57,-12 + 2729: 57,-11 + 2730: 57,-10 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale90 decals: - 2405: 44,36 - 2406: 44,37 - 2407: 44,38 - 2408: 44,39 - 2409: 44,40 - 2410: 44,41 - 2411: 44,42 + 2403: 44,36 + 2404: 44,37 + 2405: 44,38 + 2406: 44,39 + 2407: 44,40 + 2408: 44,41 + 2409: 44,42 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 3591: 26,15 + 3592: 26,16 + 3593: 26,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -4021,31 +4052,31 @@ entities: 255: -10,-34 335: -14,-34 336: -14,-35 - 544: -12,-27 - 545: -12,-26 - 546: -12,-25 + 542: -12,-27 + 543: -12,-26 + 544: -12,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale90 decals: - 637: 4,21 - 657: 10,20 - 658: 10,21 - 659: 10,22 - 660: 10,23 - 668: 6,20 - 669: 6,21 + 635: 4,21 + 655: 10,20 + 656: 10,21 + 657: 10,22 + 658: 10,23 + 666: 6,20 + 667: 6,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale90 decals: - 2419: 42,36 - 2420: 42,37 - 2421: 42,38 - 2422: 42,39 - 2423: 42,40 - 2424: 42,41 - 2425: 42,42 + 2417: 42,36 + 2418: 42,37 + 2419: 42,38 + 2420: 42,39 + 2421: 42,40 + 2422: 42,41 + 2423: 42,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -4059,238 +4090,238 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 828: -12,-49 + 826: -12,-49 - node: color: '#EFB34196' id: MiniTileCornerOverlayNE decals: - 2881: -14,-40 + 2879: -14,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW decals: - 2878: -16,-40 + 2876: -16,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlaySE decals: - 2879: -14,-42 + 2877: -14,-42 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW decals: - 2880: -16,-42 + 2878: -16,-42 - node: color: '#DE3A3A96' id: MiniTileInnerOverlaySE decals: - 2830: 36,-13 + 2828: 36,-13 - node: color: '#EFB34196' id: MiniTileLineOverlayE decals: - 2883: -14,-41 + 2881: -14,-41 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN decals: - 2729: 55,-10 + 2727: 55,-10 - node: color: '#EFB34196' id: MiniTileLineOverlayN decals: - 2882: -15,-40 + 2880: -15,-40 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS decals: - 2728: 55,-12 + 2726: 55,-12 - node: color: '#EFB34196' id: MiniTileLineOverlayS decals: - 2885: -15,-42 + 2883: -15,-42 - node: color: '#EFB34196' id: MiniTileLineOverlayW decals: - 2884: -16,-41 + 2882: -16,-41 - node: color: '#D4D4D496' id: MiniTileOverlay decals: - 1751: 46,-35 - 1752: 46,-41 + 1749: 46,-35 + 1750: 46,-41 - node: color: '#FFFFFFFF' id: MiniTileOverlay decals: - 1753: 6,39 + 1751: 6,39 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 1741: 48,-36 + 1739: 48,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 1742: 45,-36 + 1740: 45,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 1740: 48,-39 - 1744: 47,-40 + 1738: 48,-39 + 1742: 47,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1743: 45,-40 + 1741: 45,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1745: 46,-36 - 1746: 47,-36 + 1743: 46,-36 + 1744: 47,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 1747: 46,-40 + 1745: 46,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1748: 45,-39 - 1749: 45,-38 - 1750: 45,-37 + 1746: 45,-39 + 1747: 45,-38 + 1748: 45,-37 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 989: -52,-9 + 987: -52,-9 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 1004: -57,-3 - 1007: -57,-3 + 1002: -57,-3 + 1005: -57,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNe decals: - 960: -57,-18 + 958: -57,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 2923: -11,-42 - 2924: -12,-39 + 2921: -11,-42 + 2922: -12,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: 441: -15,-34 - 2891: -12,-39 - 2892: -11,-42 + 2889: -12,-39 + 2890: -11,-42 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 1005: -58,-3 - 1006: -58,-3 + 1003: -58,-3 + 1004: -58,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNw decals: - 959: -58,-18 + 957: -58,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 2925: -18,-39 + 2923: -18,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: 440: -20,-34 - 2890: -18,-39 + 2888: -18,-39 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 988: -52,-11 + 986: -52,-11 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 1002: -57,-5 - 1008: -57,-5 + 1000: -57,-5 + 1006: -57,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSe decals: - 957: -57,-20 + 955: -57,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 2922: -11,-43 + 2920: -11,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: 438: -15,-35 - 2888: -11,-43 + 2886: -11,-43 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 1003: -58,-5 - 1009: -58,-5 + 1001: -58,-5 + 1007: -58,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSw decals: - 958: -58,-20 + 956: -58,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 2921: -18,-43 + 2919: -18,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 - 2889: -18,-43 + 2887: -18,-43 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 3385: -7,-48 + 3383: -7,-48 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNe decals: - 3380: 42,-39 + 3378: 42,-39 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2931: -12,-42 + 2929: -12,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: 434: -21,-36 - 2909: -12,-42 + 2907: -12,-42 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw decals: - 3379: 42,-39 + 3377: 42,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -4311,24 +4342,24 @@ entities: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 987: -52,-10 + 985: -52,-10 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 1012: -57,-4 - 1013: -57,-4 + 1010: -57,-4 + 1011: -57,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineE decals: - 962: -57,-19 + 960: -57,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2929: -12,-41 - 2930: -12,-40 + 2927: -12,-41 + 2928: -12,-40 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE @@ -4336,17 +4367,17 @@ entities: 425: -21,-34 426: -21,-34 427: -21,-35 - 2898: -12,-40 - 2899: -12,-41 + 2896: -12,-40 + 2897: -12,-41 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 2910: -17,-39 - 2911: -16,-39 - 2912: -15,-39 - 2913: -14,-39 - 2914: -13,-39 + 2908: -17,-39 + 2909: -16,-39 + 2910: -15,-39 + 2911: -14,-39 + 2912: -13,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -4361,21 +4392,21 @@ entities: 443: -18,-34 444: -17,-34 445: -16,-34 - 2893: -17,-39 - 2894: -16,-39 - 2895: -15,-39 - 2896: -14,-39 - 2897: -13,-39 + 2891: -17,-39 + 2892: -16,-39 + 2893: -15,-39 + 2894: -14,-39 + 2895: -13,-39 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 2915: -12,-43 - 2916: -13,-43 - 2917: -14,-43 - 2918: -15,-43 - 2919: -16,-43 - 2920: -17,-43 + 2913: -12,-43 + 2914: -13,-43 + 2915: -14,-43 + 2916: -15,-43 + 2917: -16,-43 + 2918: -17,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -4390,39 +4421,39 @@ entities: 447: -17,-35 448: -18,-35 449: -19,-35 - 2900: -12,-43 - 2901: -13,-43 - 2902: -14,-43 - 2903: -15,-43 - 2904: -16,-43 - 2905: -17,-43 + 2898: -12,-43 + 2899: -13,-43 + 2900: -14,-43 + 2901: -15,-43 + 2902: -16,-43 + 2903: -17,-43 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 1010: -58,-4 - 1011: -58,-4 + 1008: -58,-4 + 1009: -58,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineW decals: - 961: -58,-19 + 959: -58,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2926: -18,-40 - 2927: -18,-41 - 2928: -18,-42 + 2924: -18,-40 + 2925: -18,-41 + 2926: -18,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: 417: -14,-35 418: -14,-34 - 2906: -18,-42 - 2907: -18,-41 - 2908: -18,-40 + 2904: -18,-42 + 2905: -18,-41 + 2906: -18,-40 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe @@ -4486,53 +4517,53 @@ entities: color: '#D4D4D428' id: PavementOverlay decals: - 1366: 44,-21 - 1367: 45,-21 - 1368: 46,-21 - 1369: 46,-22 - 1370: 45,-22 - 1371: 44,-22 - 1372: 48,-21 - 1373: 49,-21 - 1374: 50,-21 - 1375: 50,-22 - 1376: 49,-22 - 1377: 48,-22 - 1378: 52,-21 - 1379: 53,-21 - 1380: 54,-21 - 1381: 54,-22 - 1382: 53,-22 - 1383: 52,-22 - 3459: 42,-12 - 3460: 44,-12 - 3461: 44,-13 - 3462: 43,-13 - 3463: 41,-12 - 3464: 41,-14 - 3465: 42,-13 - 3466: 41,-13 - 3467: 42,-14 - 3468: 43,-14 - 3469: 44,-14 - 3470: 45,-14 - 3471: 45,-13 - 3472: 45,-12 - 3473: 43,-12 + 1364: 44,-21 + 1365: 45,-21 + 1366: 46,-21 + 1367: 46,-22 + 1368: 45,-22 + 1369: 44,-22 + 1370: 48,-21 + 1371: 49,-21 + 1372: 50,-21 + 1373: 50,-22 + 1374: 49,-22 + 1375: 48,-22 + 1376: 52,-21 + 1377: 53,-21 + 1378: 54,-21 + 1379: 54,-22 + 1380: 53,-22 + 1381: 52,-22 + 3457: 42,-12 + 3458: 44,-12 + 3459: 44,-13 + 3460: 43,-13 + 3461: 41,-12 + 3462: 41,-14 + 3463: 42,-13 + 3464: 41,-13 + 3465: 42,-14 + 3466: 43,-14 + 3467: 44,-14 + 3468: 45,-14 + 3469: 45,-13 + 3470: 45,-12 + 3471: 43,-12 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale decals: - 2433: 43,37 - 2436: 44,41 + 2431: 43,37 + 2434: 44,41 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1344: 30,-3 - 1348: 30,-8 - 1351: 30,-5 - 1352: 30,-6 + 1342: 30,-3 + 1346: 30,-8 + 1349: 30,-5 + 1350: 30,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -4586,19 +4617,19 @@ entities: 394: -22,-28 395: -19,-28 396: -16,-28 - 520: -31,-32 - 521: -31,-31 - 524: -31,-33 - 525: -22,-36 - 529: -24,-29 - 538: -14,-29 - 554: -25,-42 - 570: -12,-31 - 737: -2,-37 - 3029: -36,-33 - 3033: -37,-33 - 3037: -35,-33 - 3039: -34,-33 + 518: -31,-32 + 519: -31,-31 + 522: -31,-33 + 523: -22,-36 + 527: -24,-29 + 536: -14,-29 + 552: -25,-42 + 568: -12,-31 + 735: -2,-37 + 3027: -36,-33 + 3031: -37,-33 + 3035: -35,-33 + 3037: -34,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -4608,168 +4639,169 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 832: -11,-50 + 830: -11,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1018: -48,-2 - 1020: -48,3 - 1055: -33,-2 - 1120: -1,18 - 1121: -1,19 - 1122: -1,20 - 1123: -1,21 - 1124: -1,22 - 1125: -1,23 - 1126: -1,24 - 1127: -1,25 - 1128: -1,29 - 1129: -1,30 - 1130: -2,31 - 1131: -2,32 - 1132: -2,33 - 1133: -2,34 - 1134: -2,35 - 1135: -2,36 - 1136: -2,37 - 1137: -2,38 - 1152: -13,53 - 1154: -12,53 - 1155: -11,53 - 1156: -10,53 - 1157: -9,53 - 1162: -8,50 - 1163: -7,50 - 1164: -6,50 - 1165: -5,50 - 1166: -5,50 - 1167: -4,50 - 1168: -3,50 - 1169: -3,51 - 1170: -3,52 - 1171: -3,53 - 1172: -2,53 - 1173: -1,53 - 1174: 0,53 - 1176: 1,53 - 1218: -2,26 - 1219: -2,27 - 1220: -2,27 - 1221: -2,28 - 1257: 53,1 - 1258: 53,2 - 1259: 54,3 - 1260: 55,4 - 1261: 56,5 - 1302: 45,-3 - 1303: 45,-2 - 1315: 59,-3 - 1329: 57,5 - 1330: 58,5 - 1331: 59,5 - 1332: 60,5 - 1333: 61,5 - 1339: 62,0 - 1933: 3,-83 - 1934: 3,-82 - 1935: 3,-81 - 1936: 3,-80 - 1937: 3,-79 - 1938: 3,-78 - 1939: 3,-77 - 1940: 3,-76 - 1941: 3,-75 - 1942: 3,-74 - 1943: 3,-73 - 1944: 3,-72 - 1945: 3,-71 - 1946: 3,-70 - 1947: 3,-69 - 1948: 3,-68 - 1949: 3,-67 - 1950: 3,-66 - 1951: 3,-65 - 1952: 3,-64 - 1987: -10,-81 - 1988: -10,-80 - 1989: -10,-79 - 1990: -10,-78 - 1991: -11,-77 - 1992: -11,-76 - 1993: -11,-75 - 1994: -11,-75 - 1995: -10,-75 - 1996: -10,-74 - 1997: -10,-73 - 1998: -10,-72 - 1999: -10,-71 - 2000: -11,-70 - 2001: -11,-69 - 2002: -11,-68 - 2003: -10,-68 - 2004: -10,-67 - 2005: -10,-66 - 2006: -10,-65 - 2007: -10,-64 - 2008: -10,-63 - 2009: -10,-62 - 2010: -10,-61 - 2011: -10,-60 - 2012: -10,-59 - 2013: -10,-58 - 2014: -10,-57 - 2015: -9,-57 - 2016: -1,-57 - 2017: -1,-56 - 2018: -1,-55 - 2019: -1,-54 - 2020: -1,-53 - 2021: -1,-52 - 2022: -1,-51 - 2023: -1,-50 - 2024: -1,-49 - 2025: -1,-46 - 2026: -1,-45 - 2027: -1,-44 - 2028: -1,-43 - 2029: -1,-42 - 2030: -1,-41 - 2350: -1,-47 - 2351: -1,-48 + 1016: -48,-2 + 1018: -48,3 + 1053: -33,-2 + 1118: -1,18 + 1119: -1,19 + 1120: -1,20 + 1121: -1,21 + 1122: -1,22 + 1123: -1,23 + 1124: -1,24 + 1125: -1,25 + 1126: -1,29 + 1127: -1,30 + 1128: -2,31 + 1129: -2,32 + 1130: -2,33 + 1131: -2,34 + 1132: -2,35 + 1133: -2,36 + 1134: -2,37 + 1135: -2,38 + 1150: -13,53 + 1152: -12,53 + 1153: -11,53 + 1154: -10,53 + 1155: -9,53 + 1160: -8,50 + 1161: -7,50 + 1162: -6,50 + 1163: -5,50 + 1164: -5,50 + 1165: -4,50 + 1166: -3,50 + 1167: -3,51 + 1168: -3,52 + 1169: -3,53 + 1170: -2,53 + 1171: -1,53 + 1172: 0,53 + 1174: 1,53 + 1216: -2,26 + 1217: -2,27 + 1218: -2,27 + 1219: -2,28 + 1255: 53,1 + 1256: 53,2 + 1257: 54,3 + 1258: 55,4 + 1259: 56,5 + 1300: 45,-3 + 1301: 45,-2 + 1313: 59,-3 + 1327: 57,5 + 1328: 58,5 + 1329: 59,5 + 1330: 60,5 + 1331: 61,5 + 1337: 62,0 + 1931: 3,-83 + 1932: 3,-82 + 1933: 3,-81 + 1934: 3,-80 + 1935: 3,-79 + 1936: 3,-78 + 1937: 3,-77 + 1938: 3,-76 + 1939: 3,-75 + 1940: 3,-74 + 1941: 3,-73 + 1942: 3,-72 + 1943: 3,-71 + 1944: 3,-70 + 1945: 3,-69 + 1946: 3,-68 + 1947: 3,-67 + 1948: 3,-66 + 1949: 3,-65 + 1950: 3,-64 + 1985: -10,-81 + 1986: -10,-80 + 1987: -10,-79 + 1988: -10,-78 + 1989: -11,-77 + 1990: -11,-76 + 1991: -11,-75 + 1992: -11,-75 + 1993: -10,-75 + 1994: -10,-74 + 1995: -10,-73 + 1996: -10,-72 + 1997: -10,-71 + 1998: -11,-70 + 1999: -11,-69 + 2000: -11,-68 + 2001: -10,-68 + 2002: -10,-67 + 2003: -10,-66 + 2004: -10,-65 + 2005: -10,-64 + 2006: -10,-63 + 2007: -10,-62 + 2008: -10,-61 + 2009: -10,-60 + 2010: -10,-59 + 2011: -10,-58 + 2012: -10,-57 + 2013: -9,-57 + 2014: -1,-57 + 2015: -1,-56 + 2016: -1,-55 + 2017: -1,-54 + 2018: -1,-53 + 2019: -1,-52 + 2020: -1,-51 + 2021: -1,-50 + 2022: -1,-49 + 2023: -1,-46 + 2024: -1,-45 + 2025: -1,-44 + 2026: -1,-43 + 2027: -1,-42 + 2028: -1,-41 + 2348: -1,-47 + 2349: -1,-48 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale decals: - 3139: 0,48 - 3140: 0,47 - 3141: 0,46 - 3142: 0,45 - 3143: 0,44 - 3144: 0,43 - 3145: 0,42 - 3146: 0,41 - 3147: 0,40 - 3148: 0,38 - 3149: 0,39 - 3150: -1,38 + 3137: 0,48 + 3138: 0,47 + 3139: 0,46 + 3140: 0,45 + 3141: 0,44 + 3142: 0,43 + 3143: 0,42 + 3144: 0,41 + 3145: 0,40 + 3146: 0,38 + 3147: 0,39 + 3148: -1,38 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2734: 57,-13 + 2732: 57,-13 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale180 decals: - 2434: 43,39 - 2437: 43,36 + 2432: 43,39 + 2435: 43,36 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 630: 27,5 - 1346: 33,-9 + 628: 27,5 + 1344: 33,-9 + 3598: 25,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4820,305 +4852,306 @@ entities: 381: -16,-28 382: -15,-28 391: -19,-28 - 522: -31,-31 - 523: -31,-33 - 526: -22,-36 - 527: -22,-35 - 528: -24,-28 - 539: -14,-28 - 551: -27,-40 - 569: -12,-31 - 581: -12,-33 - 3030: -36,-32 - 3031: -37,-32 - 3032: -38,-32 - 3038: -35,-32 - 3040: -34,-32 + 520: -31,-31 + 521: -31,-33 + 524: -22,-36 + 525: -22,-35 + 526: -24,-28 + 537: -14,-28 + 549: -27,-40 + 567: -12,-31 + 579: -12,-33 + 3028: -36,-32 + 3029: -37,-32 + 3030: -38,-32 + 3036: -35,-32 + 3038: -34,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale180 decals: - 639: 4,22 + 637: 4,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 826: -14,-48 + 824: -14,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1041: -18,-1 - 1042: -19,-1 - 1043: -20,-1 - 1044: -21,-1 - 1045: -22,-1 - 1046: -23,-1 - 1047: -27,-1 - 1048: -28,-1 - 1049: -29,-1 - 1050: -29,-2 - 1051: -31,-2 - 1053: -33,-2 - 1056: -34,-1 - 1057: -35,-1 - 1058: -36,-1 - 1059: -37,-1 - 1060: -38,-1 - 1061: -39,-1 - 1062: -40,-1 - 1063: -41,-1 - 1064: -41,-2 - 1065: -41,-3 - 1066: -41,-4 - 1067: -41,-5 - 1068: -41,-6 - 1069: -41,-7 - 1070: -41,-8 - 1071: -41,-9 - 1072: -41,-10 - 1073: -41,-13 - 1074: -41,-14 - 1075: -41,-15 - 1076: -41,-16 - 1077: -41,-17 - 1078: -41,-18 - 1079: -41,-19 - 1080: -41,-20 - 1081: -41,-21 - 1082: -41,-22 - 1083: -41,-23 - 1084: -41,-24 - 1085: -41,-25 - 1086: -41,-26 - 1087: -41,-27 - 1088: -41,-28 - 1089: -41,-29 - 1090: -41,-30 - 1091: -41,-31 - 1092: -43,-31 - 1159: -9,53 - 1160: -9,52 - 1161: -9,51 - 1177: 1,53 - 1202: 2,31 - 1205: -2,31 - 1268: 52,-1 - 1269: 51,-1 - 1270: 50,-1 - 1271: 49,-1 - 1272: 48,-1 - 1273: 47,-2 - 1274: 47,-3 - 1275: 46,-3 - 1276: 44,-1 - 1277: 42,-1 - 1278: 39,-1 - 1279: 38,-1 - 1280: 37,-1 - 1281: 36,-1 - 1282: 35,-1 - 1283: 34,-1 - 1284: 33,-1 - 1285: 32,-1 - 1286: 31,-1 - 1287: 29,-1 - 1288: 28,-2 - 1289: 27,-2 - 1290: 26,-2 - 1291: 25,-1 - 1292: 24,-1 - 1293: 23,-1 - 1294: 22,-1 - 1295: 21,-1 - 1296: 20,-1 - 1297: 19,-1 - 1298: 18,-1 - 1301: 45,-3 - 1316: 57,2 - 1317: 57,1 - 1318: 57,0 - 1319: 57,-1 - 1334: 61,5 - 1335: 61,4 - 1336: 61,3 - 1337: 61,2 - 1338: 61,1 - 1342: 62,-1 - 1343: 30,-1 - 1884: 1,-19 - 1885: 1,-20 - 1886: 1,-18 - 1887: 1,-21 - 1888: 1,-22 - 1889: 1,-23 - 1890: 2,-26 - 1891: 2,-28 - 1892: 1,-29 - 1893: 1,-30 - 1894: 1,-31 - 1895: 1,-32 - 1931: 4,-83 - 1932: 3,-83 - 1953: 2,-63 - 1954: 1,-63 - 1955: 0,-63 - 1956: -1,-63 - 1957: -2,-63 - 1964: -3,-63 - 2042: 1,-33 - 2043: 1,-34 - 2044: 1,-35 - 2045: 1,-36 - 2046: 1,-37 - 2047: 1,-38 - 2048: 1,-39 - 2049: 1,-40 - 2069: 1,-25 + 1039: -18,-1 + 1040: -19,-1 + 1041: -20,-1 + 1042: -21,-1 + 1043: -22,-1 + 1044: -23,-1 + 1045: -27,-1 + 1046: -28,-1 + 1047: -29,-1 + 1048: -29,-2 + 1049: -31,-2 + 1051: -33,-2 + 1054: -34,-1 + 1055: -35,-1 + 1056: -36,-1 + 1057: -37,-1 + 1058: -38,-1 + 1059: -39,-1 + 1060: -40,-1 + 1061: -41,-1 + 1062: -41,-2 + 1063: -41,-3 + 1064: -41,-4 + 1065: -41,-5 + 1066: -41,-6 + 1067: -41,-7 + 1068: -41,-8 + 1069: -41,-9 + 1070: -41,-10 + 1071: -41,-13 + 1072: -41,-14 + 1073: -41,-15 + 1074: -41,-16 + 1075: -41,-17 + 1076: -41,-18 + 1077: -41,-19 + 1078: -41,-20 + 1079: -41,-21 + 1080: -41,-22 + 1081: -41,-23 + 1082: -41,-24 + 1083: -41,-25 + 1084: -41,-26 + 1085: -41,-27 + 1086: -41,-28 + 1087: -41,-29 + 1088: -41,-30 + 1089: -41,-31 + 1090: -43,-31 + 1157: -9,53 + 1158: -9,52 + 1159: -9,51 + 1175: 1,53 + 1200: 2,31 + 1203: -2,31 + 1266: 52,-1 + 1267: 51,-1 + 1268: 50,-1 + 1269: 49,-1 + 1270: 48,-1 + 1271: 47,-2 + 1272: 47,-3 + 1273: 46,-3 + 1274: 44,-1 + 1275: 42,-1 + 1276: 39,-1 + 1277: 38,-1 + 1278: 37,-1 + 1279: 36,-1 + 1280: 35,-1 + 1281: 34,-1 + 1282: 33,-1 + 1283: 32,-1 + 1284: 31,-1 + 1285: 29,-1 + 1286: 28,-2 + 1287: 27,-2 + 1288: 26,-2 + 1289: 25,-1 + 1290: 24,-1 + 1291: 23,-1 + 1292: 22,-1 + 1293: 21,-1 + 1294: 20,-1 + 1295: 19,-1 + 1296: 18,-1 + 1299: 45,-3 + 1314: 57,2 + 1315: 57,1 + 1316: 57,0 + 1317: 57,-1 + 1332: 61,5 + 1333: 61,4 + 1334: 61,3 + 1335: 61,2 + 1336: 61,1 + 1340: 62,-1 + 1341: 30,-1 + 1882: 1,-19 + 1883: 1,-20 + 1884: 1,-18 + 1885: 1,-21 + 1886: 1,-22 + 1887: 1,-23 + 1888: 2,-26 + 1889: 2,-28 + 1890: 1,-29 + 1891: 1,-30 + 1892: 1,-31 + 1893: 1,-32 + 1929: 4,-83 + 1930: 3,-83 + 1951: 2,-63 + 1952: 1,-63 + 1953: 0,-63 + 1954: -1,-63 + 1955: -2,-63 + 1962: -3,-63 + 2040: 1,-33 + 2041: 1,-34 + 2042: 1,-35 + 2043: 1,-36 + 2044: 1,-37 + 2045: 1,-38 + 2046: 1,-39 + 2047: 1,-40 + 2067: 1,-25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 1345: 30,-9 - 1349: 30,-7 - 1350: 30,-4 - 1353: 30,-6 + 1343: 30,-9 + 1347: 30,-7 + 1348: 30,-4 + 1351: 30,-6 + 3599: 22,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: 249: -7,-38 - 553: -25,-40 - 738: -2,-36 - 3035: -37,-32 + 551: -25,-40 + 736: -2,-36 + 3033: -37,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale270 decals: - 638: 9,22 + 636: 9,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 827: -11,-48 + 825: -11,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1019: -48,3 - 1052: -31,-2 - 1054: -33,-2 - 1094: -43,-29 - 1095: -43,-28 - 1096: -43,-27 - 1097: -43,-26 - 1098: -43,-25 - 1099: -43,-24 - 1100: -43,-23 - 1101: -43,-22 - 1102: -43,-21 - 1103: -43,-20 - 1104: -43,-19 - 1105: -43,-18 - 1106: -43,-14 - 1107: -43,-13 - 1108: -43,-12 - 1109: -43,-8 - 1110: -43,-7 - 1111: -43,-6 - 1112: -44,-5 - 1113: -45,-5 - 1114: -46,-5 - 1115: -47,-5 - 1116: -48,-5 - 1117: -43,-5 - 1118: -29,-2 - 1138: -4,49 - 1139: -5,49 - 1140: -6,49 - 1141: -7,49 - 1142: -8,49 - 1143: -9,49 - 1144: -10,49 - 1145: -11,49 - 1146: -12,49 - 1147: -13,49 - 1148: -13,50 - 1149: -13,51 - 1150: -13,52 - 1151: -13,53 - 1203: 2,31 - 1204: -2,31 - 1262: 53,-3 - 1263: 54,-4 - 1264: 55,-5 - 1265: 56,-6 - 1266: 53,-1 - 1267: 53,-2 - 1299: 41,-1 - 1300: 45,-3 - 1314: 59,2 - 1320: 59,-1 - 1321: 59,0 - 1322: 59,1 - 1323: 61,-6 - 1340: 62,-1 - 1958: -8,-63 - 1959: -7,-63 - 1960: -6,-63 - 1961: -5,-63 - 1962: -4,-63 - 1963: -3,-63 - 1985: -9,-83 - 1986: -10,-83 - 2031: -1,-32 - 2032: -1,-31 - 2033: -1,-29 - 2034: -1,-30 - 2035: -1,-26 - 2036: -2,-23 - 2037: -2,-22 - 2038: -1,-21 - 2039: -1,-20 - 2040: -1,-19 - 2041: -1,-18 - 2062: 4,-51 - 2063: 3,-51 - 2064: 2,-51 - 2065: -1,-24 - 2066: -1,-25 - 2067: -1,-27 - 2068: -1,-28 + 1017: -48,3 + 1050: -31,-2 + 1052: -33,-2 + 1092: -43,-29 + 1093: -43,-28 + 1094: -43,-27 + 1095: -43,-26 + 1096: -43,-25 + 1097: -43,-24 + 1098: -43,-23 + 1099: -43,-22 + 1100: -43,-21 + 1101: -43,-20 + 1102: -43,-19 + 1103: -43,-18 + 1104: -43,-14 + 1105: -43,-13 + 1106: -43,-12 + 1107: -43,-8 + 1108: -43,-7 + 1109: -43,-6 + 1110: -44,-5 + 1111: -45,-5 + 1112: -46,-5 + 1113: -47,-5 + 1114: -48,-5 + 1115: -43,-5 + 1116: -29,-2 + 1136: -4,49 + 1137: -5,49 + 1138: -6,49 + 1139: -7,49 + 1140: -8,49 + 1141: -9,49 + 1142: -10,49 + 1143: -11,49 + 1144: -12,49 + 1145: -13,49 + 1146: -13,50 + 1147: -13,51 + 1148: -13,52 + 1149: -13,53 + 1201: 2,31 + 1202: -2,31 + 1260: 53,-3 + 1261: 54,-4 + 1262: 55,-5 + 1263: 56,-6 + 1264: 53,-1 + 1265: 53,-2 + 1297: 41,-1 + 1298: 45,-3 + 1312: 59,2 + 1318: 59,-1 + 1319: 59,0 + 1320: 59,1 + 1321: 61,-6 + 1338: 62,-1 + 1956: -8,-63 + 1957: -7,-63 + 1958: -6,-63 + 1959: -5,-63 + 1960: -4,-63 + 1961: -3,-63 + 1983: -9,-83 + 1984: -10,-83 + 2029: -1,-32 + 2030: -1,-31 + 2031: -1,-29 + 2032: -1,-30 + 2033: -1,-26 + 2034: -2,-23 + 2035: -2,-22 + 2036: -1,-21 + 2037: -1,-20 + 2038: -1,-19 + 2039: -1,-18 + 2060: 4,-51 + 2061: 3,-51 + 2062: 2,-51 + 2063: -1,-24 + 2064: -1,-25 + 2065: -1,-27 + 2066: -1,-28 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale270 decals: - 3135: -3,49 - 3136: -2,49 - 3137: -1,49 + 3133: -3,49 + 3134: -2,49 + 3135: -1,49 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 2733: 57,-9 + 2731: 57,-9 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale90 decals: - 2435: 42,40 + 2433: 42,40 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 629: 27,8 - 1347: 33,-3 + 627: 27,8 + 1345: 33,-3 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: 247: -8,-40 - 552: -27,-42 - 3034: -38,-33 + 550: -27,-42 + 3032: -38,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -5128,246 +5161,249 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 833: -14,-50 + 831: -14,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1021: -48,3 - 1022: -47,3 - 1023: -46,3 - 1024: -46,2 - 1025: -46,1 - 1026: -45,1 - 1027: -34,1 - 1028: -33,1 - 1029: -32,1 - 1030: -31,1 - 1031: -30,1 - 1032: -29,1 - 1033: -28,1 - 1034: -27,1 - 1035: -23,1 - 1036: -22,1 - 1037: -21,1 - 1038: -20,1 - 1039: -19,1 - 1040: -18,1 - 1093: -44,-30 - 1119: -29,-2 - 1153: -13,53 - 1158: -9,53 - 1175: 1,53 - 1178: 1,52 - 1179: 1,51 - 1180: 1,50 - 1181: 1,48 - 1182: 1,47 - 1183: 1,46 - 1184: 1,45 - 1185: 1,44 - 1186: 1,43 - 1187: 1,42 - 1188: 1,41 - 1189: 1,40 - 1190: 1,39 - 1191: 1,38 - 1192: 2,38 - 1193: 2,37 - 1194: 2,37 - 1195: 2,36 - 1196: 2,35 - 1197: 2,34 - 1198: 2,33 - 1199: 2,32 - 1200: 2,31 - 1201: 1,30 - 1206: 1,29 - 1207: 1,25 - 1208: 1,24 - 1209: 1,23 - 1210: 1,22 - 1211: 1,21 - 1212: 1,20 - 1213: 1,20 - 1214: 1,19 - 1215: 1,18 - 1216: 2,26 - 1217: 2,27 - 1222: 18,1 - 1223: 19,1 - 1224: 20,1 - 1225: 21,1 - 1226: 22,1 - 1227: 23,1 - 1228: 24,1 - 1229: 25,1 - 1230: 26,1 - 1231: 27,1 - 1232: 28,1 - 1233: 29,1 - 1234: 30,1 - 1235: 31,1 - 1236: 32,1 - 1237: 33,1 - 1238: 34,2 - 1239: 35,2 - 1240: 36,2 - 1241: 37,1 - 1242: 38,1 - 1243: 39,1 - 1244: 40,1 - 1245: 41,1 - 1246: 42,1 - 1247: 43,1 - 1248: 44,1 - 1249: 45,1 - 1250: 46,1 - 1251: 47,1 - 1252: 48,1 - 1253: 49,1 - 1254: 50,1 - 1255: 51,1 - 1256: 52,1 - 1313: 57,-3 - 1324: 61,-6 - 1325: 61,-5 - 1326: 61,-4 - 1327: 61,-3 - 1328: 61,-2 - 1341: 62,0 - 1896: 1,-52 - 1897: 1,-53 - 1898: 1,-54 - 1899: 1,-55 - 1900: 1,-56 - 1901: 1,-57 - 1902: 1,-58 - 1903: 1,-59 - 1904: 1,-60 - 1905: 2,-60 - 1906: 3,-60 - 1907: 4,-60 - 1908: 4,-61 - 1909: 4,-62 - 1910: 4,-63 - 1911: 4,-64 - 1912: 4,-65 - 1913: 4,-66 - 1914: 4,-68 - 1915: 5,-68 - 1916: 5,-69 - 1917: 5,-70 - 1918: 4,-71 - 1919: 4,-67 - 1920: 4,-72 - 1921: 4,-73 - 1922: 4,-74 - 1923: 4,-75 - 1924: 5,-75 - 1925: 5,-76 - 1926: 5,-77 - 1927: 4,-78 - 1928: 4,-79 - 1929: 4,-80 - 1930: 4,-81 - 1965: -9,-64 - 1966: -9,-65 - 1967: -9,-66 - 1968: -9,-67 - 1969: -9,-68 - 1970: -9,-69 - 1971: -9,-70 - 1972: -9,-71 - 1973: -9,-72 - 1974: -9,-73 - 1975: -9,-74 - 1976: -9,-75 - 1977: -9,-76 - 1978: -9,-77 - 1979: -9,-78 - 1980: -9,-79 - 1981: -9,-80 - 1982: -9,-81 - 1983: -9,-82 - 1984: -9,-83 - 2050: 1,-41 - 2051: 2,-42 - 2052: 3,-42 - 2053: 3,-43 - 2054: 3,-44 - 2055: 3,-45 - 2056: 3,-46 - 2057: 3,-47 - 2058: 3,-48 - 2059: 4,-49 - 2060: 4,-50 - 2061: 4,-51 + 1019: -48,3 + 1020: -47,3 + 1021: -46,3 + 1022: -46,2 + 1023: -46,1 + 1024: -45,1 + 1025: -34,1 + 1026: -33,1 + 1027: -32,1 + 1028: -31,1 + 1029: -30,1 + 1030: -29,1 + 1031: -28,1 + 1032: -27,1 + 1033: -23,1 + 1034: -22,1 + 1035: -21,1 + 1036: -20,1 + 1037: -19,1 + 1038: -18,1 + 1091: -44,-30 + 1117: -29,-2 + 1151: -13,53 + 1156: -9,53 + 1173: 1,53 + 1176: 1,52 + 1177: 1,51 + 1178: 1,50 + 1179: 1,48 + 1180: 1,47 + 1181: 1,46 + 1182: 1,45 + 1183: 1,44 + 1184: 1,43 + 1185: 1,42 + 1186: 1,41 + 1187: 1,40 + 1188: 1,39 + 1189: 1,38 + 1190: 2,38 + 1191: 2,37 + 1192: 2,37 + 1193: 2,36 + 1194: 2,35 + 1195: 2,34 + 1196: 2,33 + 1197: 2,32 + 1198: 2,31 + 1199: 1,30 + 1204: 1,29 + 1205: 1,25 + 1206: 1,24 + 1207: 1,23 + 1208: 1,22 + 1209: 1,21 + 1210: 1,20 + 1211: 1,20 + 1212: 1,19 + 1213: 1,18 + 1214: 2,26 + 1215: 2,27 + 1220: 18,1 + 1221: 19,1 + 1222: 20,1 + 1223: 21,1 + 1224: 22,1 + 1225: 23,1 + 1226: 24,1 + 1227: 25,1 + 1228: 26,1 + 1229: 27,1 + 1230: 28,1 + 1231: 29,1 + 1232: 30,1 + 1233: 31,1 + 1234: 32,1 + 1235: 33,1 + 1236: 34,2 + 1237: 35,2 + 1238: 36,2 + 1239: 37,1 + 1240: 38,1 + 1241: 39,1 + 1242: 40,1 + 1243: 41,1 + 1244: 42,1 + 1245: 43,1 + 1246: 44,1 + 1247: 45,1 + 1248: 46,1 + 1249: 47,1 + 1250: 48,1 + 1251: 49,1 + 1252: 50,1 + 1253: 51,1 + 1254: 52,1 + 1311: 57,-3 + 1322: 61,-6 + 1323: 61,-5 + 1324: 61,-4 + 1325: 61,-3 + 1326: 61,-2 + 1339: 62,0 + 1894: 1,-52 + 1895: 1,-53 + 1896: 1,-54 + 1897: 1,-55 + 1898: 1,-56 + 1899: 1,-57 + 1900: 1,-58 + 1901: 1,-59 + 1902: 1,-60 + 1903: 2,-60 + 1904: 3,-60 + 1905: 4,-60 + 1906: 4,-61 + 1907: 4,-62 + 1908: 4,-63 + 1909: 4,-64 + 1910: 4,-65 + 1911: 4,-66 + 1912: 4,-68 + 1913: 5,-68 + 1914: 5,-69 + 1915: 5,-70 + 1916: 4,-71 + 1917: 4,-67 + 1918: 4,-72 + 1919: 4,-73 + 1920: 4,-74 + 1921: 4,-75 + 1922: 5,-75 + 1923: 5,-76 + 1924: 5,-77 + 1925: 4,-78 + 1926: 4,-79 + 1927: 4,-80 + 1928: 4,-81 + 1963: -9,-64 + 1964: -9,-65 + 1965: -9,-66 + 1966: -9,-67 + 1967: -9,-68 + 1968: -9,-69 + 1969: -9,-70 + 1970: -9,-71 + 1971: -9,-72 + 1972: -9,-73 + 1973: -9,-74 + 1974: -9,-75 + 1975: -9,-76 + 1976: -9,-77 + 1977: -9,-78 + 1978: -9,-79 + 1979: -9,-80 + 1980: -9,-81 + 1981: -9,-82 + 1982: -9,-83 + 2048: 1,-41 + 2049: 2,-42 + 2050: 3,-42 + 2051: 3,-43 + 2052: 3,-44 + 2053: 3,-45 + 2054: 3,-46 + 2055: 3,-47 + 2056: 3,-48 + 2057: 4,-49 + 2058: 4,-50 + 2059: 4,-51 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale90 decals: - 3138: 1,49 - 3209: -35,1 + 3136: 1,49 + 3207: -35,1 - node: color: '#FFFFFFFF' id: Rock06 decals: - 2684: -6.549043,-18.995234 + 2682: -6.549043,-18.995234 - node: color: '#FFFFFFFF' id: Rock07 decals: - 2685: -10.21571,-19.245234 - 2686: -19.922543,-12.716649 - 2687: -18.60001,-10.259648 - 2688: -18.846893,-8.106161 + 2683: -10.21571,-19.245234 + 2684: -19.922543,-12.716649 + 2685: -18.60001,-10.259648 + 2686: -18.846893,-8.106161 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 956: 31,0 + 954: 31,0 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 955: 32,0 + 953: 32,0 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 954: 33,0 + 952: 33,0 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 953: 34,0 + 951: 34,0 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 952: 35,0 + 950: 35,0 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 951: 36,0 + 949: 36,0 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 950: 37,0 + 948: 37,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClearGreyscale decals: - 3369: -56,-4 + 3367: -56,-4 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 582: 19,9 + 580: 19,9 + 3574: 21,18 + 3600: 28,15 + 3601: 29,16 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -5377,7 +5413,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale decals: - 661: 3,24 + 659: 3,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -5392,25 +5428,29 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale decals: - 3025: -39,-31 + 3023: -39,-31 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 624: 27,4 - 625: 28,5 - 626: 28,5 + 622: 27,4 + 623: 28,5 + 624: 28,5 + 3578: 25,11 + 3579: 26,12 + 3604: 33,12 + 3605: 32,11 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 489: -14,-36 - 540: -12,-28 + 538: -12,-28 - node: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 664: 10,19 + 662: 10,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -5426,7 +5466,11 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 583: 19,4 + 581: 19,4 + 3576: 21,12 + 3577: 22,11 + 3606: 29,11 + 3607: 28,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -5436,7 +5480,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 663: 3,19 + 661: 3,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -5452,13 +5496,16 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3016: -39,-35 + 3014: -39,-35 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 627: 28,8 - 628: 27,9 + 625: 28,8 + 626: 27,9 + 3575: 26,18 + 3602: 32,16 + 3603: 33,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -5468,7 +5515,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 662: 10,24 + 660: 10,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -5478,200 +5525,201 @@ entities: 174: -29,-11 175: -32,-11 483: -29,-23 - 3036: -35,-31 + 3034: -35,-31 - node: color: '#FFFFFFFF' id: WarnBox decals: - 3559: -24,36 - 3560: -25,37 - 3561: -26,37 - 3562: -27,37 - 3563: -28,37 - 3564: -29,37 - 3565: -30,37 - 3566: -31,36 - 3567: -25,35 - 3568: -26,35 - 3569: -28,35 - 3570: -29,35 - 3571: -30,35 + 3557: -24,36 + 3558: -25,37 + 3559: -26,37 + 3560: -27,37 + 3561: -28,37 + 3562: -29,37 + 3563: -30,37 + 3564: -31,36 + 3565: -25,35 + 3566: -26,35 + 3567: -28,35 + 3568: -29,35 + 3569: -30,35 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 3492: -6,-26 + 3490: -6,-26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 3508: -6,-29 + 3506: -6,-29 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3342: -58,-13 - 3558: -22,42 - 3574: -31,35 + 3340: -58,-13 + 3556: -22,42 + 3572: -31,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 981: -56,-7 - 985: -56,-3 - 1001: -54,-13 - 3557: -18,42 - 3575: -24,35 + 979: -56,-7 + 983: -56,-3 + 999: -54,-13 + 3555: -18,42 + 3573: -24,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3341: -58,-8 - 3555: -22,44 - 3573: -31,37 + 3339: -58,-8 + 3553: -22,44 + 3571: -31,37 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 979: -56,-1 - 980: -56,-1 - 986: -56,-5 - 1000: -54,-8 - 3556: -18,44 - 3572: -24,37 + 977: -56,-1 + 978: -56,-1 + 984: -56,-5 + 998: -54,-8 + 3554: -18,44 + 3570: -24,37 - node: color: '#FFFFFFFF' id: WarnFull decals: - 2481: 12,53 - 2482: 13,53 - 2483: 14,53 + 2479: 12,53 + 2480: 13,53 + 2481: 14,53 - node: color: '#BC863FFF' id: WarnFullGreyscale decals: - 3365: -51,-1 - 3366: -51,0 - 3367: -52,-1 - 3368: -52,0 + 3363: -51,-1 + 3364: -51,0 + 3365: -52,-1 + 3366: -52,0 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2463: 9,49 - 2465: 19,49 - 2466: 19,48 - 2467: 19,47 - 2468: 19,46 - 3336: -58,-12 - 3337: -58,-11 - 3338: -58,-10 - 3339: -58,-9 - 3551: -22,43 + 2461: 9,49 + 2463: 19,49 + 2464: 19,48 + 2465: 19,47 + 2466: 19,46 + 3334: -58,-12 + 3335: -58,-11 + 3336: -58,-10 + 3337: -58,-9 + 3549: -22,43 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 3493: -5,-26 - 3494: -4,-26 - 3495: -3,-26 - 3505: -9,-29 - 3506: -8,-29 - 3507: -7,-29 + 3491: -5,-26 + 3492: -4,-26 + 3493: -3,-26 + 3503: -9,-29 + 3504: -8,-29 + 3505: -7,-29 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 3498: -9,-30 - 3499: -8,-30 - 3500: -7,-30 - 3501: -6,-30 - 3502: -5,-30 - 3503: -4,-30 - 3504: -3,-30 + 3496: -9,-30 + 3497: -8,-30 + 3498: -7,-30 + 3499: -6,-30 + 3500: -5,-30 + 3501: -4,-30 + 3502: -3,-30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 982: -56,-5 - 983: -56,-4 - 984: -56,-3 - 3496: -6,-27 - 3497: -6,-28 + 980: -56,-5 + 981: -56,-4 + 982: -56,-3 + 3494: -6,-27 + 3495: -6,-28 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 976: -57,-1 - 990: -57,-8 - 991: -56,-8 - 992: -56,-8 - 993: -55,-8 - 3343: -58,-1 - 3548: -19,44 - 3549: -20,44 - 3550: -21,44 + 974: -57,-1 + 988: -57,-8 + 989: -56,-8 + 990: -56,-8 + 991: -55,-8 + 3341: -58,-1 + 3546: -19,44 + 3547: -20,44 + 3548: -21,44 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 977: -56,-6 - 978: -56,-2 - 994: -54,-10 - 995: -54,-11 - 996: -54,-12 - 2464: 17,49 - 3340: -54,-9 - 3542: 21,46 - 3543: 21,47 - 3544: 21,48 - 3545: 21,49 - 3547: -18,43 + 975: -56,-6 + 976: -56,-2 + 992: -54,-10 + 993: -54,-11 + 994: -54,-12 + 2462: 17,49 + 3338: -54,-9 + 3540: 21,46 + 3541: 21,47 + 3542: 21,48 + 3543: 21,49 + 3545: -18,43 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 975: -57,-7 - 997: -55,-13 - 998: -56,-13 - 999: -57,-13 - 2460: 12,46 - 2461: 13,46 - 2462: 14,46 - 2473: 7,51 - 2474: 8,51 - 2475: 9,51 - 2476: 17,51 - 2477: 18,51 - 2478: 19,51 - 2479: 15,53 - 2480: 11,53 - 3344: -58,-7 - 3552: -21,42 - 3553: -20,42 - 3554: -19,42 + 973: -57,-7 + 995: -55,-13 + 996: -56,-13 + 997: -57,-13 + 2458: 12,46 + 2459: 13,46 + 2460: 14,46 + 2471: 7,51 + 2472: 8,51 + 2473: 9,51 + 2474: 17,51 + 2475: 18,51 + 2476: 19,51 + 2477: 15,53 + 2478: 11,53 + 3342: -58,-7 + 3550: -21,42 + 3551: -20,42 + 3552: -19,42 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 266: -30,-39 286: -29,-35 - 685: 37,-7 - 691: 44,-5 - 739: -4,38 - 740: -12,33 - 781: -16,32 - 797: -19,-3 - 851: -49,7 - 854: -53,12 - 855: -51,10 - 897: 36,18 - 904: 40,16 - 924: 44,-9 - 931: 17,-30 - 932: 20,-30 - 2831: 41,23 - 3066: 19,37 + 683: 37,-7 + 689: 44,-5 + 737: -4,38 + 738: -12,33 + 779: -16,32 + 795: -19,-3 + 849: -49,7 + 852: -53,12 + 853: -51,10 + 895: 36,18 + 902: 40,16 + 922: 44,-9 + 929: 17,-30 + 930: 20,-30 + 2829: 41,23 + 3064: 19,37 + 3614: 10,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -5679,108 +5727,111 @@ entities: 269: -31,-39 270: -31,-39 287: -33,-35 - 678: 35,-7 - 679: 35,-3 - 692: 39,-5 - 741: -14,38 - 742: -14,33 - 782: -19,32 - 798: -22,-3 - 850: -50,7 - 856: -55,12 - 857: -57,10 - 898: 35,18 - 905: 38,16 - 906: 35,15 - 921: 42,-9 - 933: 13,-30 - 934: 19,-30 - 2832: 39,23 - 3067: 12,37 + 676: 35,-7 + 677: 35,-3 + 690: 39,-5 + 739: -14,38 + 740: -14,33 + 780: -19,32 + 796: -22,-3 + 848: -50,7 + 854: -55,12 + 855: -57,10 + 896: 35,18 + 903: 38,16 + 904: 35,15 + 919: 42,-9 + 931: 13,-30 + 932: 19,-30 + 2830: 39,23 + 3065: 12,37 + 3615: 7,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 268: -30,-41 297: -29,-37 - 689: 37,-5 - 704: 44,-7 - 743: -12,31 - 744: -4,31 - 783: -16,27 - 799: -19,-5 - 848: -49,5 - 859: -51,9 - 889: 41,18 - 900: 36,17 - 901: 40,11 - 922: 44,-10 - 935: 17,-32 - 936: 20,-32 - 3077: 19,36 + 687: 37,-5 + 702: 44,-7 + 741: -12,31 + 742: -4,31 + 781: -16,27 + 797: -19,-5 + 846: -49,5 + 857: -51,9 + 887: 41,18 + 898: 36,17 + 899: 40,11 + 920: 44,-10 + 933: 17,-32 + 934: 20,-32 + 3075: 19,36 + 3617: 10,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 267: -31,-41 295: -33,-37 - 676: 35,-5 - 677: 35,-9 - 693: 39,-7 - 745: -14,31 - 746: -14,35 - 747: -10,31 - 784: -19,27 - 800: -22,-5 - 849: -50,5 - 858: -57,9 - 888: 39,18 - 899: 35,17 - 902: 38,11 - 903: 35,12 - 923: 42,-10 - 937: 13,-32 - 938: 19,-32 + 674: 35,-5 + 675: 35,-9 + 691: 39,-7 + 743: -14,31 + 744: -14,35 + 745: -10,31 + 782: -19,27 + 798: -22,-5 + 847: -50,5 + 856: -57,9 + 886: 39,18 + 897: 35,17 + 900: 38,11 + 901: 35,12 + 921: 42,-10 + 935: 13,-32 + 936: 19,-32 + 3616: 7,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 671: 38,-3 - 672: 38,-9 + 669: 38,-3 + 670: 38,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 919: 46,-5 + 917: 46,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 920: 46,-6 + 918: 46,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 687: 37,-9 - 870: -53,10 + 685: 37,-9 + 868: -53,10 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 871: -55,10 - 918: 38,15 + 869: -55,10 + 916: 38,15 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 690: 37,-3 - 3079: 17,36 + 688: 37,-3 + 3077: 17,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 777: -10,35 - 917: 38,12 + 775: -10,35 + 915: 38,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5797,34 +5848,35 @@ entities: 279: -32.293655,-40.00201 280: -32.29232,-41.003887 298: -29,-36 - 686: 37,-8 - 688: 37,-4 - 705: 44,-6 - 754: -4,32 - 755: -4,33 - 756: -4,34 - 757: -4,35 - 758: -4,36 - 759: -4,37 - 760: -12,32 - 785: -16,31 - 786: -16,30 - 787: -16,29 - 788: -16,28 - 801: -19,-4 - 853: -49,6 - 869: -53,11 - 890: 41,19 - 891: 41,20 - 892: 41,21 - 907: 40,14 - 908: 40,15 - 909: 40,12 - 910: 40,13 - 939: 20,-31 - 940: 17,-31 - 2833: 41,22 - 3068: 17,35 + 684: 37,-8 + 686: 37,-4 + 703: 44,-6 + 752: -4,32 + 753: -4,33 + 754: -4,34 + 755: -4,35 + 756: -4,36 + 757: -4,37 + 758: -12,32 + 783: -16,31 + 784: -16,30 + 785: -16,29 + 786: -16,28 + 799: -19,-4 + 851: -49,6 + 867: -53,11 + 888: 41,19 + 889: 41,20 + 890: 41,21 + 905: 40,14 + 906: 40,15 + 907: 40,12 + 908: 40,13 + 937: 20,-31 + 938: 17,-31 + 2831: 41,22 + 3066: 17,35 + 3623: 10,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5834,46 +5886,48 @@ entities: 288: -32,-35 289: -31,-35 290: -30,-35 - 680: 36,-3 - 681: 37,-3 - 684: 36,-7 - 699: 40,-5 - 700: 41,-5 - 701: 41,-5 - 702: 42,-5 - 703: 43,-5 - 761: -5,38 - 762: -6,38 - 763: -7,38 - 764: -8,38 - 765: -9,38 - 766: -10,38 - 767: -11,38 - 768: -12,38 - 769: -13,38 - 770: -13,33 - 791: -17,32 - 792: -18,32 - 805: -21,-3 - 806: -20,-3 - 807: -19,-3 - 865: -54,12 - 866: -56,10 - 867: -52,10 - 913: 36,15 - 914: 37,15 - 926: 43,-9 - 946: 14,-30 - 947: 15,-30 - 948: 15,-30 - 949: 16,-30 - 2835: 40,23 - 3071: 13,37 - 3072: 14,37 - 3073: 15,37 - 3074: 16,37 - 3075: 17,37 - 3076: 18,37 + 678: 36,-3 + 679: 37,-3 + 682: 36,-7 + 697: 40,-5 + 698: 41,-5 + 699: 41,-5 + 700: 42,-5 + 701: 43,-5 + 759: -5,38 + 760: -6,38 + 761: -7,38 + 762: -8,38 + 763: -9,38 + 764: -10,38 + 765: -11,38 + 766: -12,38 + 767: -13,38 + 768: -13,33 + 789: -17,32 + 790: -18,32 + 803: -21,-3 + 804: -20,-3 + 805: -19,-3 + 863: -54,12 + 864: -56,10 + 865: -52,10 + 911: 36,15 + 912: 37,15 + 924: 43,-9 + 944: 14,-30 + 945: 15,-30 + 946: 15,-30 + 947: 16,-30 + 2833: 40,23 + 3069: 13,37 + 3070: 14,37 + 3071: 15,37 + 3072: 16,37 + 3073: 17,37 + 3074: 18,37 + 3621: 8,-19 + 3622: 9,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5885,71 +5939,74 @@ entities: 292: -31,-37 293: -31,-37 294: -30,-37 - 673: 37,-9 - 674: 36,-9 - 675: 36,-5 - 695: 40,-7 - 696: 41,-7 - 697: 42,-7 - 698: 43,-7 - 748: -13,31 - 749: -9,31 - 750: -8,31 - 751: -7,31 - 752: -6,31 - 753: -5,31 - 778: -11,35 - 779: -12,35 - 780: -13,35 - 789: -17,27 - 790: -18,27 - 803: -21,-5 - 804: -20,-5 - 860: -56,9 - 861: -55,9 - 862: -54,9 - 863: -53,9 - 864: -52,9 - 893: 40,18 - 915: 36,12 - 916: 37,12 - 925: 43,-10 - 943: 14,-32 - 944: 15,-32 - 945: 16,-32 - 3078: 18,36 + 671: 37,-9 + 672: 36,-9 + 673: 36,-5 + 693: 40,-7 + 694: 41,-7 + 695: 42,-7 + 696: 43,-7 + 746: -13,31 + 747: -9,31 + 748: -8,31 + 749: -7,31 + 750: -6,31 + 751: -5,31 + 776: -11,35 + 777: -12,35 + 778: -13,35 + 787: -17,27 + 788: -18,27 + 801: -21,-5 + 802: -20,-5 + 858: -56,9 + 859: -55,9 + 860: -54,9 + 861: -53,9 + 862: -52,9 + 891: 40,18 + 913: 36,12 + 914: 37,12 + 923: 43,-10 + 941: 14,-32 + 942: 15,-32 + 943: 16,-32 + 3076: 18,36 + 3618: 9,-21 + 3619: 8,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 264: -31,-40 296: -33,-36 - 682: 35,-4 - 683: 35,-8 - 694: 39,-6 - 771: -14,37 - 772: -14,36 - 773: -14,32 - 774: -10,32 - 775: -10,33 - 776: -10,34 - 793: -19,31 - 794: -19,30 - 795: -19,29 - 796: -19,28 - 802: -22,-4 - 852: -50,6 - 868: -55,11 - 894: 39,19 - 895: 39,20 - 896: 39,21 - 911: 35,13 - 912: 35,14 - 941: 19,-31 - 942: 13,-31 - 2834: 39,22 - 3069: 12,35 - 3070: 12,36 + 680: 35,-4 + 681: 35,-8 + 692: 39,-6 + 769: -14,37 + 770: -14,36 + 771: -14,32 + 772: -10,32 + 773: -10,33 + 774: -10,34 + 791: -19,31 + 792: -19,30 + 793: -19,29 + 794: -19,28 + 800: -22,-4 + 850: -50,6 + 866: -55,11 + 892: 39,19 + 893: 39,20 + 894: 39,21 + 909: 35,13 + 910: 35,14 + 939: 19,-31 + 940: 13,-31 + 2832: 39,22 + 3067: 12,35 + 3068: 12,36 + 3620: 7,-20 - type: GridAtmosphere version: 2 data: @@ -6313,7 +6370,8 @@ entities: 1,6: 0: 65295 1,7: - 0: 65295 + 0: 62223 + 2: 3072 1,8: 0: 65535 2,5: @@ -6646,7 +6704,7 @@ entities: 0: 16383 1,-13: 0: 57104 - 2: 8 + 3: 8 2,-12: 0: 65308 2,-11: @@ -6655,7 +6713,7 @@ entities: 0: 28671 2,-13: 0: 7936 - 2: 8 + 3: 8 3,-12: 0: 62349 3,-11: @@ -6664,7 +6722,7 @@ entities: 0: 61182 3,-13: 0: 55040 - 2: 4 + 3: 4 3,-9: 0: 3822 4,-12: @@ -6792,7 +6850,7 @@ entities: 10,-10: 0: 62207 10,-13: - 2: 9902 + 3: 9902 11,-12: 0: 4913 11,-11: @@ -6801,7 +6859,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 2: 127 + 3: 127 12,-10: 0: 65488 12,-9: @@ -6907,14 +6965,14 @@ entities: 12,6: 0: 64271 12,7: - 2: 16368 + 3: 16368 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 3: 17 + 4: 17 -12,-11: 0: 60931 -13,-11: @@ -7012,70 +7070,70 @@ entities: -13,1: 0: 57296 -12,1: - 2: 36352 + 3: 36352 -12,3: - 2: 34956 + 3: 34956 -11,1: 0: 127 - 2: 30464 + 3: 30464 -12,2: - 2: 34952 + 3: 34952 -11,2: - 2: 255 - 4: 57344 + 3: 255 + 5: 57344 -12,4: - 2: 53192 + 3: 53192 -11,3: - 2: 61440 - 5: 224 + 3: 61440 + 6: 224 -10,1: 0: 40847 -10,2: - 2: 8755 + 3: 8755 0: 34952 -10,3: - 2: 12834 + 3: 12834 0: 34952 -10,4: - 2: 8738 + 3: 8738 0: 34952 -13,4: - 2: 32630 + 3: 32630 -12,7: - 2: 52476 + 3: 52476 -13,7: - 2: 26615 + 3: 26615 -12,6: - 2: 51336 + 3: 51336 -12,5: - 2: 34952 + 3: 34952 -11,6: - 2: 61440 - 3: 224 + 3: 61440 + 4: 224 -12,8: - 2: 34952 + 3: 34952 -11,4: - 6: 224 - 3: 57344 + 7: 224 + 4: 57344 -11,5: - 3: 57568 + 4: 57568 -11,7: - 3: 57568 + 4: 57568 -10,6: - 2: 12834 + 3: 12834 0: 34952 -10,5: - 2: 8738 + 3: 8738 0: 34952 -10,7: - 2: 8738 + 3: 8738 0: 34952 -10,8: - 2: 62258 + 3: 62258 0: 136 -9,8: 0: 52479 - 2: 4096 + 3: 4096 0,-16: 0: 65528 -1,-16: @@ -7096,23 +7154,23 @@ entities: 0: 257 1,-14: 0: 4369 - 2: 34956 + 3: 34956 1,-17: 0: 4371 2,-14: - 2: 63631 + 3: 63631 2,-15: - 2: 39315 + 3: 39315 2,-16: - 2: 27776 + 3: 27776 3,-16: - 2: 57375 + 3: 57375 3,-15: - 2: 12443 + 3: 12443 3,-14: - 2: 61488 + 3: 61488 4,-16: - 2: 4883 + 3: 4883 -4,-15: 0: 65088 -4,-14: @@ -7136,7 +7194,7 @@ entities: -2,-14: 0: 65520 -9,-15: - 3: 2048 + 4: 2048 -8,-14: 0: 4080 -9,-14: @@ -7146,69 +7204,69 @@ entities: -9,-13: 0: 4095 -7,-15: - 3: 61184 + 4: 61184 -7,-14: 0: 32752 -6,-15: - 3: 256 + 4: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 2: 4880 + 3: 4880 -13,-16: - 2: 65520 + 3: 65520 -12,-15: - 3: 53128 + 4: 53128 -12,-14: 0: 30483 - 3: 4 + 4: 4 -13,-14: 0: 52232 - 2: 23 + 3: 23 -11,-16: - 3: 4352 + 4: 4352 -11,-15: - 3: 65425 + 4: 65425 -11,-14: 0: 65520 -11,-13: 0: 831 -10,-15: - 3: 14327 + 4: 14327 -10,-14: 0: 16304 -10,-13: 0: 2187 -10,-16: - 3: 8704 + 4: 8704 -10,-17: - 3: 49152 + 4: 49152 -16,-7: - 2: 52416 + 3: 52416 -16,-6: - 2: 3276 + 3: 3276 0: 32768 -16,-5: 0: 3080 -16,-4: - 2: 140 + 3: 140 -15,-7: - 2: 4368 + 3: 4368 0: 3276 -15,-6: - 2: 273 + 3: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 2: 4369 + 3: 4369 0: 52416 -15,-8: 0: 52416 -15,-9: 0: 34952 - 3: 256 + 4: 256 -14,-8: 0: 49080 -14,-7: @@ -7228,31 +7286,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 3: 32 + 4: 32 -16,-11: - 3: 32768 + 4: 32768 -16,-10: - 3: 8 + 4: 8 -15,-11: - 3: 13036 + 4: 13036 0: 32768 -15,-10: - 3: 307 + 4: 307 0: 34952 -15,-12: - 3: 51336 + 4: 51336 -14,-12: - 3: 4607 + 4: 4607 0: 49152 -14,-11: - 3: 17 + 4: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 3: 59392 + 4: 59392 -13,-13: - 3: 4352 + 4: 4352 0: 1604 8,9: 0: 65535 @@ -7281,28 +7339,28 @@ entities: 10,10: 0: 3549 10,11: - 3: 275 + 4: 275 10,12: 0: 305 - 2: 3276 + 3: 3276 11,9: 0: 4469 - 2: 49152 + 3: 49152 11,10: 0: 273 - 2: 52428 + 3: 52428 11,11: - 2: 61166 + 3: 61166 11,12: - 2: 53247 + 3: 53247 12,8: - 2: 13107 + 3: 13107 12,9: - 2: 13107 + 3: 13107 12,10: - 2: 63923 + 3: 63923 12,11: - 2: 61443 + 3: 61443 4,9: 0: 57599 3,9: @@ -7325,7 +7383,7 @@ entities: 0: 60928 5,12: 0: 238 - 2: 49152 + 3: 49152 6,9: 0: 65535 6,10: @@ -7394,26 +7452,26 @@ entities: 0: 16183 15,1: 0: 13119 - 2: 18432 + 3: 18432 15,2: 0: 13107 - 2: 32836 + 3: 32836 15,3: 0: 13107 - 2: 2184 + 3: 2184 15,-1: 0: 30527 15,4: 0: 13107 - 2: 32768 + 3: 32768 16,0: 0: 1793 - 2: 4 + 3: 4 16,1: 0: 7 - 2: 1024 + 3: 1024 16,3: - 2: 4368 + 3: 4368 13,-4: 0: 26215 13,-3: @@ -7432,22 +7490,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 2: 34952 + 3: 34952 15,-3: 0: 4369 - 2: 34952 + 3: 34952 15,-2: 0: 16177 - 2: 8 + 3: 8 15,-5: 0: 4353 - 2: 34952 + 3: 34952 16,-2: 0: 1792 - 2: 4 + 3: 4 16,-1: 0: 4359 - 2: 17408 + 3: 17408 13,-8: 0: 15 13,-6: @@ -7461,56 +7519,56 @@ entities: 14,-9: 0: 36623 15,-8: - 3: 16 + 4: 16 15,-6: - 3: 16 + 4: 16 0: 4096 - 2: 32768 + 3: 32768 15,-9: 0: 4353 16,-5: - 2: 304 + 3: 304 12,-11: - 3: 49156 + 4: 49156 12,-12: - 2: 12 + 3: 12 12,-13: - 2: 52303 + 3: 52303 13,-12: - 2: 15 - 3: 16384 + 3: 15 + 4: 16384 13,-11: - 3: 65228 + 4: 65228 13,-10: 0: 65520 13,-13: - 2: 65295 + 3: 65295 14,-12: - 2: 15 + 3: 15 14,-11: - 3: 65521 + 4: 65521 14,-10: 0: 65392 14,-13: - 2: 65295 + 3: 65295 15,-12: - 2: 1 + 3: 1 15,-11: - 3: 4112 + 4: 4112 15,-10: - 3: 52451 + 4: 52451 0: 4096 15,-13: - 2: 4511 + 3: 4511 16,-10: - 3: 19 + 4: 19 -4,9: 0: 7421 -5,9: 0: 62719 -4,10: 0: 65533 - 7: 2 + 8: 2 -5,10: 0: 65535 -4,11: @@ -7519,13 +7577,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 3: 13072 + 4: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 3: 61408 + 4: 61408 -2,9: 0: 4095 -2,10: @@ -7538,23 +7596,23 @@ entities: 0: 61678 -9,9: 0: 52428 - 2: 4369 + 3: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 2: 43808 + 3: 43808 -9,11: - 2: 20224 + 3: 20224 -8,12: - 2: 43690 + 3: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 2: 768 + 3: 768 0: 34952 -6,9: 0: 61661 @@ -7562,44 +7620,44 @@ entities: 0: 65535 -6,11: 0: 64255 - 8: 256 - 7: 1024 + 9: 256 + 8: 1024 -7,12: 0: 34952 - 2: 12322 + 3: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 3: 34816 + 4: 34816 -12,9: - 2: 65433 + 3: 65433 -13,9: - 2: 8 + 3: 8 -12,10: - 2: 52428 + 3: 52428 -11,8: - 2: 65520 + 3: 65520 -11,9: - 2: 4607 - 3: 49152 + 3: 4607 + 4: 49152 -11,10: - 2: 33041 - 3: 204 + 3: 33041 + 4: 204 -12,11: - 2: 136 + 3: 136 -11,11: - 2: 248 + 3: 248 -10,9: - 2: 52479 - 3: 4096 + 3: 52479 + 4: 4096 -10,10: - 3: 17 - 2: 34952 + 4: 17 + 3: 34952 -10,11: - 2: 2296 + 3: 2296 -9,12: - 2: 17476 + 3: 17476 8,-15: 0: 65535 7,-15: @@ -7613,50 +7671,50 @@ entities: 9,-14: 0: 4403 10,-16: - 2: 3584 + 3: 3584 11,-16: - 2: 7936 + 3: 7936 10,-14: - 2: 34816 + 3: 34816 11,-14: - 2: 29489 + 3: 29489 11,-15: - 2: 4369 + 3: 4369 12,-16: - 2: 3840 + 3: 3840 4,-17: - 2: 4096 + 3: 4096 4,-14: - 2: 2048 + 3: 2048 5,-14: - 2: 1024 + 3: 1024 6,-14: - 2: 512 + 3: 512 -8,13: - 2: 29666 + 3: 29666 -9,13: - 2: 3140 + 3: 3140 -8,14: - 2: 15 + 3: 15 -7,13: - 2: 32816 + 3: 32816 0: 1032 -7,14: - 2: 15 + 3: 15 -6,13: 0: 255 -6,14: - 2: 49 + 3: 49 -5,13: 0: 51 - 3: 51208 + 4: 51208 -5,14: - 3: 264 + 4: 264 -4,13: - 3: 29443 + 4: 29443 0: 136 -4,14: - 3: 3 + 4: 3 -3,12: 0: 65520 -3,13: @@ -7675,166 +7733,166 @@ entities: 0: 8866 1,14: 0: 8710 - 2: 34952 + 3: 34952 1,15: 0: 8226 - 2: 34952 + 3: 34952 1,16: 0: 8738 - 2: 34952 + 3: 34952 2,13: 0: 184 2,14: - 2: 49023 + 3: 49023 2,15: - 2: 44974 + 3: 44974 2,16: - 2: 32702 + 3: 32702 3,13: 0: 255 3,14: - 2: 44847 + 3: 44847 3,15: - 2: 44975 + 3: 44975 3,16: - 2: 12207 + 3: 12207 4,14: - 2: 61439 + 3: 61439 4,15: - 2: 44971 + 3: 44971 4,13: 0: 224 4,16: - 2: 65515 + 3: 65515 5,15: - 2: 1279 + 3: 1279 0: 8192 5,13: 0: 8738 - 3: 136 + 4: 136 5,14: 0: 546 - 2: 16384 + 3: 16384 5,16: 0: 8738 6,15: - 2: 255 + 3: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 2: 255 + 3: 255 8,15: - 2: 255 + 3: 255 9,15: - 2: 255 + 3: 255 10,15: - 2: 55 + 3: 55 10,14: - 2: 65224 + 3: 65224 11,14: - 2: 311 + 3: 311 11,13: - 2: 65228 + 3: 65228 12,12: - 2: 65535 + 3: 65535 13,10: - 2: 17 + 3: 17 13,9: - 2: 13028 + 3: 13028 13,8: - 2: 19652 + 3: 19652 13,7: - 2: 20478 + 3: 20478 14,9: - 2: 248 + 3: 248 14,8: - 2: 52428 + 3: 52428 14,7: - 2: 51711 + 3: 51711 15,8: - 2: 56797 + 3: 56797 15,9: - 2: 248 + 3: 248 15,7: - 2: 55539 + 3: 55539 16,8: - 2: 56797 + 3: 56797 16,9: - 2: 248 + 3: 248 13,5: 0: 1911 13,6: 0: 4111 - 2: 60928 + 3: 60928 14,5: 0: 4369 14,6: 0: 1 - 2: 13056 + 3: 13056 15,6: - 2: 14024 + 3: 14024 16,4: - 2: 29233 + 3: 29233 16,6: - 2: 34947 + 3: 34947 16,7: - 2: 55544 + 3: 55544 13,12: - 2: 4095 + 3: 4095 14,12: - 2: 4095 + 3: 4095 15,12: - 2: 4095 + 3: 4095 16,12: - 2: 883 + 3: 883 0,18: - 2: 49160 + 3: 49160 0,17: - 2: 34816 + 3: 34816 1,17: - 2: 24856 + 3: 24856 0: 3106 1,18: - 2: 61987 + 3: 61987 2,17: - 2: 57359 + 3: 57359 0: 1792 2,18: - 2: 4238 + 3: 4238 3,17: - 2: 61455 + 3: 61455 0: 1792 3,18: - 2: 255 + 3: 255 4,17: - 2: 12303 + 3: 12303 0: 3840 4,18: - 2: 49155 + 3: 49155 5,17: 0: 290 - 2: 48192 + 3: 48192 5,18: - 2: 61998 + 3: 61998 6,17: - 2: 18244 + 3: 18244 6,18: - 2: 4164 + 3: 4164 6,16: - 2: 16384 + 3: 16384 -15,0: - 2: 1 + 3: 1 0: 52428 -15,1: - 2: 4401 + 3: 4401 0: 34944 -15,2: - 2: 4369 + 3: 4369 0: 2176 -15,3: - 2: 34959 + 3: 34959 -15,-1: 0: 52732 -14,0: @@ -7844,49 +7902,49 @@ entities: -14,2: 0: 61439 -14,3: - 2: 61440 + 3: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 2: 128 + 3: 128 -13,3: - 2: 12834 + 3: 12834 -13,5: - 2: 8742 + 3: 8742 -13,6: - 2: 25122 + 3: 25122 -13,8: - 2: 50722 + 3: 50722 -16,-16: - 2: 30583 + 3: 30583 -16,-17: - 2: 29187 + 3: 29187 -16,-15: - 2: 29426 + 3: 29426 -17,-15: - 2: 29426 + 3: 29426 -16,-14: - 2: 30583 + 3: 30583 -16,-13: - 2: 2 + 3: 2 -15,-15: - 2: 240 + 3: 240 -15,-16: - 2: 65520 + 3: 65520 -15,-13: - 3: 64 + 4: 64 -14,-16: - 2: 24404 + 3: 24404 -14,-15: - 2: 52980 + 3: 52980 -14,-17: - 2: 24404 + 3: 24404 -13,-15: - 2: 29456 + 3: 29456 -14,-14: - 2: 8 + 3: 8 0,-20: 0: 34952 0,-19: @@ -7920,140 +7978,140 @@ entities: -2,-18: 0: 4096 -16,-2: - 2: 12 + 3: 12 0: 51200 -16,-1: 0: 2240 -16,-3: - 2: 32768 + 3: 32768 -15,-3: - 2: 4369 + 3: 4369 0: 52428 -15,-2: - 2: 1 + 3: 1 0: 64972 -14,-3: 0: 65535 -14,-2: 0: 65535 16,5: - 2: 62242 + 3: 62242 17,5: - 2: 61440 + 3: 61440 17,6: - 2: 65520 + 3: 65520 17,7: - 2: 55536 + 3: 55536 17,8: - 2: 56797 + 3: 56797 18,5: - 2: 61440 + 3: 61440 18,6: - 2: 65520 + 3: 65520 18,7: - 2: 55536 + 3: 55536 18,8: - 2: 56797 + 3: 56797 19,5: - 2: 61440 + 3: 61440 19,6: - 2: 48056 + 3: 48056 19,7: - 2: 39162 + 3: 39162 19,8: - 2: 39321 + 3: 39321 20,7: - 2: 16 + 3: 16 -12,-19: - 2: 61440 + 3: 61440 -13,-19: - 2: 61440 + 3: 61440 -12,-18: - 2: 4880 + 3: 4880 -13,-18: - 2: 65520 + 3: 65520 -12,-17: - 2: 4880 + 3: 4880 -13,-17: - 2: 65520 + 3: 65520 -11,-19: - 2: 61440 + 3: 61440 -10,-19: - 2: 4096 + 3: 4096 -10,-18: 0: 4 -18,-12: - 2: 68 + 3: 68 -18,-13: - 2: 17476 + 3: 17476 -18,-15: - 2: 17636 + 3: 17636 -18,-16: - 2: 17476 + 3: 17476 -18,-17: - 2: 17484 + 3: 17484 -18,-14: - 2: 17476 + 3: 17476 -17,-16: - 2: 30583 + 3: 30583 -17,-17: - 2: 29199 + 3: 29199 -17,-14: - 2: 30583 + 3: 30583 -17,-13: - 2: 2 + 3: 2 16,-12: - 2: 546 + 3: 546 16,-13: - 2: 8743 + 3: 8743 -16,-19: - 2: 57344 + 3: 57344 -16,-18: - 2: 10786 + 3: 10786 -15,-19: - 2: 61440 + 3: 61440 -15,-18: - 2: 65520 + 3: 65520 -15,-17: - 2: 65520 + 3: 65520 -14,-19: - 2: 62464 + 3: 62464 -14,-18: - 2: 24404 + 3: 24404 12,-15: - 2: 30496 + 3: 30496 12,-14: - 2: 10103 + 3: 10103 13,-16: - 2: 3840 + 3: 3840 13,-15: - 2: 30496 + 3: 30496 13,-14: - 2: 10103 + 3: 10103 14,-16: - 2: 3840 + 3: 3840 14,-15: - 2: 30496 + 3: 30496 14,-14: - 2: 10103 + 3: 10103 15,-16: - 2: 3840 + 3: 3840 15,-15: - 2: 30496 + 3: 30496 15,-14: - 2: 10103 + 3: 10103 16,-16: - 2: 8960 + 3: 8960 16,-15: - 2: 8738 + 3: 8738 16,-14: - 2: 8738 + 3: 8738 17,9: - 2: 248 + 3: 248 18,9: - 2: 248 + 3: 248 19,9: - 2: 248 + 3: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8085,6 +8143,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 immutable: True moles: @@ -9836,6 +9909,16 @@ entities: container: 8991 - proto: AirAlarm entities: + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 16149 + - 16148 - uid: 5583 components: - type: Transform @@ -9919,6 +10002,17 @@ entities: - 5218 - 16531 - 16532 + - uid: 14996 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 + - 16179 + - 16180 - uid: 15512 components: - type: Transform @@ -10525,26 +10619,6 @@ entities: - 18457 - 14690 - 14689 - - uid: 18469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 18471 - - 18472 - - 18473 - - 18474 - - 18475 - - 18476 - - 18468 - - 18467 - - 18459 - - 14721 - - 18461 - - 14720 - uid: 18478 components: - type: Transform @@ -10620,7 +10694,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - 18485 - 13281 @@ -10710,15 +10784,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18560 - - 18559 - - 18571 - 18572 - - 18568 - - 18569 - - 18574 - - 16794 + - 18571 + - 18559 + - 18560 - 13584 + - 16794 - 18573 - uid: 18570 components: @@ -10740,7 +10811,6 @@ entities: - 18577 - 13560 - 13559 - - 18574 - uid: 18582 components: - type: Transform @@ -11399,6 +11469,26 @@ entities: - 3136 - 9112 - 28612 + - uid: 28879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18459 + - 14721 + - 18461 + - 14720 + - 18474 + - 18473 + - 18475 + - 18476 + - 18467 + - 18468 + - 18471 + - 18472 - proto: AirCanister entities: - uid: 4223 @@ -11770,21 +11860,43 @@ entities: - type: Transform pos: -32.5,34.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputB - uid: 8505 components: - type: Transform pos: -33.5,34.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputA - uid: 8506 components: - type: Transform pos: -32.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputB - uid: 8507 components: - type: Transform pos: -33.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputA - proto: AirlockAtmosphericsLocked entities: - uid: 8143 @@ -12432,6 +12544,22 @@ entities: linkedPorts: 8424: - DoorStatus: DoorBolt + - uid: 28436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 5 + - type: DeviceLinkSource + linkedPorts: + 8507: + - DoorStatus: DoorBolt + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 826 @@ -12439,6 +12567,12 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28494: + - DoorStatus: DoorBolt - uid: 11331 components: - type: Transform @@ -12454,6 +12588,12 @@ entities: - type: Transform pos: -58.5,-19.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 826: + - DoorStatus: DoorBolt - uid: 28495 components: - type: Transform @@ -12839,10 +12979,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,54.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6863: - - DoorStatus: DoorBolt - uid: 6991 components: - type: Transform @@ -13083,6 +13219,48 @@ entities: - type: Transform pos: 17.5,-17.5 parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,37.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 - uid: 3448 components: - type: Transform @@ -13107,29 +13285,191 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 2 - - uid: 6863 + - uid: 8247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,51.5 + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 parent: 2 - - uid: 6864 + - uid: 8252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,51.5 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 7850 + - uid: 8254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,38.5 + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 parent: 2 - - uid: 7851 + - uid: 8256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,37.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 parent: 2 - uid: 12229 components: @@ -13163,6 +13503,12 @@ entities: - type: Transform pos: 4.5,-63.5 parent: 2 + - uid: 28603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 - proto: AirlockHatch entities: - uid: 10942 @@ -13729,21 +14075,18 @@ entities: - type: Transform pos: -22.5,-39.5 parent: 2 - - uid: 1372 + - uid: 877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-36.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 2 - - uid: 1373 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -3.5,-36.5 parent: 2 - - type: Door - secondsUntilStateChange: -583970.1 - state: Opening - uid: 1496 components: - type: Transform @@ -13899,6 +14242,12 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 - uid: 9731 components: - type: Transform @@ -13931,11 +14280,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - uid: 10272 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - uid: 10308 components: - type: Transform @@ -14119,23 +14463,47 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4821.3525 + state: Opening - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4823.986 + state: Opening - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.836 + state: Opening - uid: 6936 components: - type: Transform pos: 62.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.0522 + state: Opening - proto: AirlockTheatreLocked entities: - uid: 2191 @@ -14479,7 +14847,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18460 components: - type: Transform @@ -14494,7 +14862,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18462 components: - type: Transform @@ -14650,16 +15018,6 @@ entities: - type: DeviceNetwork deviceLists: - 18567 - - uid: 18574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18567 - - 18570 - uid: 18576 components: - type: Transform @@ -15515,6 +15873,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 - uid: 2023 components: - type: MetaData @@ -15528,12 +15892,6 @@ entities: - type: Transform pos: 12.5,-40.5 parent: 2 - - uid: 12830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,17.5 - parent: 2 - proto: APCSuperCapacity entities: - uid: 733 @@ -15548,8 +15906,36 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 +- proto: Ash + entities: + - uid: 28873 + components: + - type: Transform + pos: 35.773716,-16.714659 + parent: 2 - proto: Ashtray entities: + - uid: 10272 + components: + - type: Transform + pos: 34.393116,-15.167919 + parent: 2 + - type: Storage + storedItems: + 11535: + position: 0,0 + _rotation: South + 11867: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11535 + - 11867 - uid: 23244 components: - type: Transform @@ -34704,36 +35090,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 9293 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9299 components: - type: Transform @@ -35889,10 +36245,10 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 6716 + - uid: 6864 components: - type: Transform - pos: 8.5,31.5 + pos: 7.5,30.5 parent: 2 - uid: 9959 components: @@ -37250,6 +37606,12 @@ entities: rot: 3.141592653589793 rad pos: -53.658516,9.595246 parent: 2 + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.492344,-15.954241 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -37581,11 +37943,6 @@ entities: - type: Transform pos: 7.3088074,9.718449 parent: 21002 - - uid: 23354 - components: - - type: Transform - pos: 38.630417,16.50916 - parent: 2 - proto: ButtonFrameGrey entities: - uid: 4519 @@ -37678,11 +38035,26 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 - uid: 1330 components: - type: Transform pos: -11.5,-80.5 parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 - uid: 1434 components: - type: Transform @@ -38493,6 +38865,11 @@ entities: - type: Transform pos: -9.5,-82.5 parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -49138,6 +49515,11 @@ entities: - type: Transform pos: -40.5,40.5 parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 - uid: 14189 components: - type: Transform @@ -51858,46 +52240,6 @@ entities: - type: Transform pos: -37.5,33.5 parent: 2 - - uid: 23308 - components: - - type: Transform - pos: -38.5,31.5 - parent: 2 - - uid: 23309 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 23310 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 23311 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 23312 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 23313 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 23314 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - - uid: 23315 - components: - - type: Transform - pos: -38.5,29.5 - parent: 2 - uid: 23316 components: - type: Transform @@ -54923,6 +55265,76 @@ entities: - type: Transform pos: -31.5,9.5 parent: 2 + - uid: 28908 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -68331,26 +68743,6 @@ entities: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 857 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - uid: 874 components: - type: Transform @@ -68361,36 +68753,6 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 876 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 877 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 878 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 880 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 884 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 885 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - uid: 886 components: - type: Transform @@ -68401,21 +68763,6 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 888 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 2 - - uid: 889 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - uid: 891 components: - type: Transform @@ -68568,11 +68915,53 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 2 + - uid: 2604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 2 - uid: 5738 components: - type: Transform pos: 13.5,29.5 parent: 2 + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 2 - uid: 6376 components: - type: Transform @@ -68608,6 +68997,24 @@ entities: - type: Transform pos: 16.5,28.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 - uid: 12160 components: - type: Transform @@ -68628,6 +69035,42 @@ entities: - type: Transform pos: -38.5,-23.5 parent: 2 + - uid: 28886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 28888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 - proto: CarpetBlue entities: - uid: 2676 @@ -70638,6 +71081,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,36.5 parent: 2 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-31.5 + parent: 2 - uid: 9384 components: - type: Transform @@ -73527,6 +73976,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,23.5 parent: 2 + - uid: 28604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-31.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -73724,12 +74179,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 - - uid: 18707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 2 - uid: 18708 components: - type: Transform @@ -74569,6 +75018,19 @@ entities: rot: 3.141592653589793 rad pos: -9.4977665,-59.404213 parent: 2 +- proto: ChurchBell + entities: + - uid: 28892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 - proto: ChurchOrganInstrument entities: - uid: 45 @@ -74608,6 +75070,26 @@ entities: - type: Transform pos: -54.0773,9.794919 parent: 2 +- proto: Cigarette + entities: + - uid: 28871 + components: + - type: Transform + pos: 34.674366,-15.053335 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: 34.580616,-15.188752 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 11535 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False - proto: CigarGold entities: - uid: 2705 @@ -74640,6 +75122,21 @@ entities: rot: 1.5707963267948966 rad pos: -46.538147,-11.384542 parent: 2 +- proto: CigarSpent + entities: + - uid: 11867 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False +- proto: CigPackRed + entities: + - uid: 28869 + components: + - type: Transform + pos: 34.622284,-14.886669 + parent: 2 - proto: CircuitImprinter entities: - uid: 9961 @@ -76703,6 +77200,12 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - uid: 28595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 - proto: ComputerAlert entities: - uid: 9322 @@ -77607,10 +78110,10 @@ entities: parent: 2 - proto: CrateElectrical entities: - - uid: 6259 + - uid: 9603 components: - type: Transform - pos: 7.5,30.5 + pos: 8.5,31.5 parent: 2 - uid: 19667 components: @@ -77703,10 +78206,10 @@ entities: parent: 2 - proto: CrateEngineeringElectricalSupplies entities: - - uid: 6258 + - uid: 1276 components: - type: Transform - pos: 6.5,30.5 + pos: 8.5,30.5 parent: 2 - proto: CrateEngineeringMiniJetpack entities: @@ -78341,7 +78844,7 @@ entities: - uid: 28353 components: - type: Transform - pos: -20.5,-4.5 + pos: -24.5,-20.5 parent: 2 - type: EntityStorage open: True @@ -87605,7 +88108,7 @@ entities: - uid: 23355 components: - type: Transform - pos: 38.60958,16.707075 + pos: 38.62831,16.89455 parent: 2 - uid: 23370 components: @@ -87718,6 +88221,11 @@ entities: - type: Transform pos: 19.668665,37.711403 parent: 2 + - uid: 23353 + components: + - type: Transform + pos: 34.69026,-16.54799 + parent: 2 - uid: 23571 components: - type: Transform @@ -87772,12 +88280,12 @@ entities: - type: Transform pos: -48.22078,-11.387981 parent: 2 -- proto: DrinkIceJug +- proto: DrinkIceBucket entities: - - uid: 23353 + - uid: 7849 components: - type: Transform - pos: 38.8075,16.75916 + pos: 38.63873,16.467466 parent: 2 - proto: DrinkJar entities: @@ -88136,6 +88644,11 @@ entities: - type: Transform pos: 36.738503,-2.8382018 parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 34.48193,-16.51674 + parent: 2 - uid: 23618 components: - type: Transform @@ -89153,6 +89666,13 @@ entities: - type: Transform pos: -59.512844,-33.467316 parent: 2 +- proto: EvidenceMarkerOne + entities: + - uid: 28866 + components: + - type: Transform + pos: 34.392616,-14.27478 + parent: 2 - proto: ExosuitFabricator entities: - uid: 10470 @@ -89247,12 +89767,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 - - uid: 23799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - uid: 23800 components: - type: Transform @@ -89270,6 +89784,12 @@ entities: - type: Transform pos: -29.5,34.5 parent: 2 + - uid: 28905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 1043 @@ -89405,6 +89925,14 @@ entities: - type: Transform pos: 32.5,20.5 parent: 2 +- proto: FenceWoodSmallGate + entities: + - uid: 28615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-36.5 + parent: 2 - proto: FigureSpawner entities: - uid: 23863 @@ -89688,6 +90216,16 @@ entities: - 17899 - 16671 - 12062 + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 - uid: 18231 components: - type: Transform @@ -90302,7 +90840,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - uid: 18531 components: @@ -90934,6 +91472,15 @@ entities: - 26798 - 26787 - 26792 + - uid: 28901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 18546 - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -92346,6 +92893,18 @@ entities: - 18288 - 18282 - 18271 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 15810 + - 14996 - uid: 2200 components: - type: Transform @@ -93488,7 +94047,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18468 components: - type: Transform @@ -93500,7 +94059,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18471 components: - type: Transform @@ -93510,7 +94069,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18472 @@ -93522,7 +94081,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18473 @@ -93534,7 +94093,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18474 @@ -93546,7 +94105,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18475 @@ -93558,7 +94117,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18476 @@ -93570,7 +94129,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18488 @@ -93685,15 +94244,6 @@ entities: deviceLists: - 18498 - 18499 - - uid: 18502 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18500 - - 18501 - uid: 18504 components: - type: Transform @@ -93703,6 +94253,8 @@ entities: deviceLists: - 18500 - 18501 + - 15810 + - 14996 - uid: 18522 components: - type: Transform @@ -93830,6 +94382,7 @@ entities: - 18551 - 18553 - 9410 + - 28901 - uid: 18547 components: - type: Transform @@ -93903,7 +94456,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18569 @@ -93915,7 +94467,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18571 @@ -95382,16 +95933,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8580 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9778 components: - type: Transform @@ -95468,18 +96009,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,31.5 - parent: 2 - - uid: 8524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,29.5 - parent: 2 - uid: 8527 components: - type: Transform @@ -95662,17 +96191,6 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 - - uid: 28594 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 28595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,31.5 - parent: 2 - proto: GasPipeBend entities: - uid: 51 @@ -95864,18 +96382,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 - - uid: 8588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,30.5 - parent: 2 - uid: 8652 components: - type: Transform @@ -96036,30 +96542,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 2 - - uid: 9204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,27.5 - parent: 2 - - uid: 9212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 2 - - uid: 9234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,27.5 - parent: 2 - uid: 9390 components: - type: Transform @@ -98016,46 +98498,6 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,33.5 - parent: 2 - - uid: 28600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 2 - - uid: 28613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - uid: 28614 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 28615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 2 - - uid: 28616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 2 - uid: 28634 components: - type: Transform @@ -98902,6 +99344,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8534 components: - type: Transform @@ -98944,18 +99394,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,25.5 parent: 2 - - uid: 8541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,29.5 - parent: 2 - - uid: 8542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 2 - uid: 8543 components: - type: Transform @@ -99286,42 +99724,14 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,28.5 parent: 2 - - uid: 8622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,30.5 - parent: 2 - uid: 8626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 + rot: -1.5707963267948966 rad + pos: -33.5,35.5 parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8628 components: - type: Transform @@ -99963,13 +100373,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8775 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#3AB334FF' - uid: 8776 components: - type: Transform @@ -99998,13 +100401,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8780 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - uid: 8781 components: - type: Transform @@ -100050,17 +100446,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 2 - - uid: 8821 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - uid: 8822 components: - type: Transform @@ -100302,16 +100687,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9199 - components: - - type: Transform - pos: -44.5,29.5 - parent: 2 - - uid: 9200 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - uid: 9386 components: - type: Transform @@ -100408,12 +100783,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - uid: 9611 components: - type: Transform @@ -105924,18 +106293,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14128 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14129 components: - type: Transform @@ -106071,17 +106428,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14151 - components: - - type: Transform - anchored: False - pos: 32.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14155 components: - type: Transform @@ -117403,16 +117749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 16792 - components: - - type: Transform - pos: -44.5,33.5 - parent: 2 - - uid: 16793 - components: - - type: Transform - pos: -44.5,31.5 - parent: 2 - uid: 16796 components: - type: Transform @@ -118944,6 +119280,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 23478 components: - type: Transform @@ -119299,11 +119643,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 24118 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - uid: 25219 components: - type: Transform @@ -119846,28 +120185,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 28597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 28598 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 28620 components: - type: Transform @@ -120197,6 +120514,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8683 components: - type: Transform @@ -122911,30 +123244,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 2 - - uid: 28604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 2 - - uid: 28617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,34.5 - parent: 2 - - uid: 28618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 2 - uid: 28624 components: - type: Transform @@ -123269,22 +123578,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,29.5 parent: 2 - - uid: 9202 - components: - - type: Transform - pos: -42.5,35.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,35.5 - parent: 2 - - uid: 9603 - components: - - type: Transform - pos: -40.5,35.5 - parent: 2 - uid: 9752 components: - type: Transform @@ -123319,12 +123612,6 @@ entities: targetPressure: 501.325 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - proto: GasThermoMachineFreezer entities: - uid: 9281 @@ -123384,6 +123671,16 @@ entities: bodyType: Dynamic - proto: GasValve entities: + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 8100 components: - type: Transform @@ -123434,6 +123731,48 @@ entities: open: False - type: AtmosPipeColor color: '#B3A234FF' + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 8329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - type: GasValve + open: False + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - type: GasValve + open: False + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - type: GasValve + open: False + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,29.5 + parent: 2 + - type: GasValve + open: False - uid: 8689 components: - type: Transform @@ -123499,14 +123838,6 @@ entities: parent: 2 - type: GasValve open: False - - uid: 9211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 2 - - type: GasValve - open: False - uid: 9759 components: - type: Transform @@ -123554,14 +123885,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 2 - - type: GasValve - open: False - uid: 28605 components: - type: Transform @@ -124248,7 +124571,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14741 @@ -124954,6 +125277,9 @@ entities: rot: 3.141592653589793 rad pos: -17.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16179 @@ -124962,6 +125288,9 @@ entities: rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16188 @@ -126065,7 +126394,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14740 @@ -126608,18 +126937,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15810 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 15814 components: - type: Transform @@ -126776,6 +127093,9 @@ entities: rot: 3.141592653589793 rad pos: -16.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16180 @@ -126784,6 +127104,9 @@ entities: rot: 3.141592653589793 rad pos: -8.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16189 @@ -129202,12 +129525,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,54.5 parent: 2 - - uid: 6857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,54.5 - parent: 2 - uid: 6858 components: - type: Transform @@ -130189,12 +130506,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 - - uid: 8393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8394 components: - type: Transform @@ -130243,16 +130554,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,2.5 parent: 2 - - uid: 8514 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8516 components: - type: Transform @@ -131070,6 +131371,12 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-15.5 parent: 2 + - uid: 11983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 12307 components: - type: Transform @@ -135868,7 +136175,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -16897.393 + secondsUntilStateChange: -32977.18 state: Opening - uid: 5211 components: @@ -136775,6 +137082,14 @@ entities: - type: Transform pos: 27.345627,0.6012745 parent: 21002 +- proto: Lighter + entities: + - uid: 28870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.559784,-14.813752 + parent: 2 - proto: LightReplacer entities: - uid: 9677 @@ -137567,6 +137882,41 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGate + entities: + - uid: 28922 + components: + - type: Transform + pos: -32.477474,37.47289 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputA + - uid: 28923 + components: + - type: Transform + pos: -32.49831,35.52497 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputB + - uid: 28924 + components: + - type: Transform + pos: -33.46706,36.483307 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28436: + - Output: DoorBolt - proto: MachineAnomalyGenerator entities: - uid: 3797 @@ -137849,6 +138199,11 @@ entities: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 - uid: 23232 components: - type: Transform @@ -137874,6 +138229,21 @@ entities: - type: Transform pos: -11.5,26.5 parent: 2 + - uid: 28594 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 - proto: MaintenanceToolSpawner entities: - uid: 255 @@ -138004,11 +138374,6 @@ entities: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 8712 - components: - - type: Transform - pos: -57.5,-14.5 - parent: 2 - proto: MatterBinStockPart entities: - uid: 23592 @@ -138592,11 +138957,6 @@ entities: - type: Transform pos: 40.5,50.5 parent: 2 - - uid: 11868 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - uid: 15320 components: - type: Transform @@ -138757,10 +139117,10 @@ entities: parent: 2 - proto: OreProcessor entities: - - uid: 11983 + - uid: 9204 components: - type: Transform - pos: -56.5,-16.5 + pos: -57.5,-15.5 parent: 2 - proto: OxygenCanister entities: @@ -138799,6 +139159,11 @@ entities: - type: Transform pos: -42.5,13.5 parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 - uid: 9468 components: - type: Transform @@ -138809,11 +139174,6 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 11867 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 2 - uid: 18928 components: - type: Transform @@ -139604,6 +139964,12 @@ entities: - type: Transform pos: -16.680094,39.619514 parent: 2 + - uid: 28865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.554844,-15.797991 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -139656,6 +140022,13 @@ entities: - type: Transform pos: -4.5151863,-48.460827 parent: 2 +- proto: PetCarrier + entities: + - uid: 16800 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 - proto: PhoneInstrument entities: - uid: 2675 @@ -140255,15 +140628,24 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 28331 + - uid: 28332 components: - type: Transform - pos: 3.5,30.5 + pos: -32.5,7.5 parent: 2 - - uid: 28332 + - uid: 28881 components: - type: Transform - pos: -32.5,7.5 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 parent: 2 - proto: PosterLegitCarpMount entities: @@ -140348,6 +140730,22 @@ entities: - type: Transform pos: -5.5,53.5 parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-37.5 + parent: 2 - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -141638,11 +142036,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,22.5 parent: 2 - - uid: 5571 - components: - - type: Transform - pos: -4.5,38.5 - parent: 2 - uid: 5641 components: - type: Transform @@ -141826,18 +142219,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,52.5 parent: 2 - - uid: 7938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 2 - uid: 7940 components: - type: Transform @@ -141983,6 +142364,23 @@ entities: - type: Transform pos: -11.5,43.5 parent: 2 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 - uid: 9578 components: - type: Transform @@ -142888,6 +143286,12 @@ entities: powerLoad: 10 - proto: PoweredLightPostSmall entities: + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,37.5 + parent: 2 - uid: 2259 components: - type: Transform @@ -142898,6 +143302,12 @@ entities: - type: Transform pos: 46.5,-50.5 parent: 2 + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,31.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -142950,11 +143360,6 @@ entities: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 14996 - components: - - type: Transform - pos: -38.5,34.5 - parent: 2 - uid: 20783 components: - type: Transform @@ -143123,12 +143528,6 @@ entities: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 4011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 2 - uid: 4239 components: - type: Transform @@ -143199,16 +143598,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 9161 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9162 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - uid: 9186 components: - type: Transform @@ -143233,6 +143622,12 @@ entities: rot: 3.141592653589793 rad pos: -12.5,46.5 parent: 2 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 - uid: 9852 components: - type: Transform @@ -143854,6 +144249,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,25.5 parent: 2 + - uid: 28877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 2 - proto: PresentRandomCash entities: - uid: 9641 @@ -143881,10 +144282,10 @@ entities: color: '#03FCD3FF' - proto: Protolathe entities: - - uid: 6715 + - uid: 7789 components: - type: Transform - pos: 8.5,30.5 + pos: 6.5,30.5 parent: 2 - uid: 9960 components: @@ -145603,6 +146004,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 21002 + - uid: 28894 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -146014,6 +146425,30 @@ entities: - type: Transform pos: 19.5,-25.5 parent: 21002 + - uid: 28896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -147322,21 +147757,11 @@ entities: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 8359 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - uid: 8360 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 8361 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8508 components: - type: Transform @@ -148760,11 +149185,6 @@ entities: - type: Transform pos: 31.5,54.5 parent: 2 - - uid: 6849 - components: - - type: Transform - pos: 28.5,54.5 - parent: 2 - uid: 6850 components: - type: Transform @@ -149034,12 +149454,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,14.5 parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8330 components: - type: Transform @@ -149244,6 +149658,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-30.5 parent: 2 + - uid: 9200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 9256 components: - type: Transform @@ -150906,6 +151326,29 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - uid: 23309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 - uid: 23440 components: - type: Transform @@ -150988,6 +151431,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 - uid: 28364 components: - type: Transform @@ -151302,18 +151755,6 @@ entities: parent: 21002 - proto: ShuttersNormal entities: - - uid: 2604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 2 - - uid: 2605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - uid: 7762 components: - type: Transform @@ -151337,6 +151778,18 @@ entities: - type: Transform pos: 20.5,-1.5 parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 - uid: 16922 components: - type: Transform @@ -151953,10 +152406,18 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 23184 + - uid: 23308 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad + pos: 57.5,18.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 - proto: SignalButtonDirectional @@ -152102,18 +152563,6 @@ entities: - Pressed: Toggle 5742: - Pressed: Toggle - - uid: 2730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2604: - - Pressed: Toggle - 2605: - - Pressed: Toggle - uid: 2735 components: - type: MetaData @@ -152314,22 +152763,6 @@ entities: - Pressed: Toggle 7860: - Pressed: Toggle - - uid: 7984 - components: - - type: MetaData - name: light switch - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5571: - - Pressed: Toggle - 7939: - - Pressed: Toggle - 7938: - - Pressed: Toggle - uid: 8946 components: - type: Transform @@ -152553,6 +152986,17 @@ entities: linkedPorts: 23781: - Pressed: Toggle + - uid: 18469 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12261: + - Pressed: Toggle + 12830: + - Pressed: Toggle - uid: 18694 components: - type: MetaData @@ -152874,14 +153318,78 @@ entities: linkedPorts: 12131: - Pressed: DoorBolt + - uid: 28868 + components: + - type: MetaData + name: light + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9298: + - Pressed: Toggle + - uid: 28874 + components: + - type: MetaData + name: light + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3764: + - Pressed: Toggle + - uid: 28878 + components: + - type: MetaData + name: door bolt + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23642: + - Pressed: DoorBolt + - uid: 28900 + components: + - type: MetaData + name: lights + - type: Transform + pos: -4.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9296: + - Pressed: Toggle + 9294: + - Pressed: Toggle + 9295: + - Pressed: Toggle - proto: SignAnomaly entities: + - uid: 16793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 +- proto: SignArcade + entities: + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 - proto: SignArmory entities: - uid: 23185 @@ -152914,6 +153422,14 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 +- proto: SignCans + entities: + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 - proto: SignCargo entities: - uid: 23190 @@ -152938,7 +153454,7 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 8921 components: @@ -152962,16 +153478,27 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 -- proto: SignCourt +- proto: SignCryo entities: - - uid: 8922 + - uid: 23799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 + pos: -45.5,-28.5 parent: 2 - proto: SignDangerMed entities: + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-52.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 - uid: 28305 components: - type: Transform @@ -152994,6 +153521,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 - uid: 3461 components: - type: Transform @@ -153056,11 +153589,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 - - uid: 20992 - components: - - type: Transform - pos: -2.4500175,39.76776 - parent: 2 - uid: 20995 components: - type: Transform @@ -153073,8 +153601,18 @@ entities: rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - uid: 28601 + components: + - type: Transform + pos: -0.50126964,39.711143 + parent: 2 - proto: SignDirectionalFood entities: + - uid: 14128 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 - uid: 20980 components: - type: Transform @@ -153093,11 +153631,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 - - uid: 20993 - components: - - type: Transform - pos: -2.4500175,39.54901 - parent: 2 - uid: 20994 components: - type: Transform @@ -153407,6 +153940,12 @@ entities: parent: 2 - proto: SignEngineering entities: + - uid: 9293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 - uid: 23196 components: - type: Transform @@ -153429,6 +153968,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - uid: 23198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 - proto: SignFire entities: - uid: 28553 @@ -153436,7 +153981,65 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 -- proto: SignHydro2 +- proto: SignGravity + entities: + - uid: 9201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 +- proto: SignHead + entities: + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 23313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 +- proto: SignHydro1 entities: - uid: 23182 components: @@ -153446,11 +154049,11 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8927 + - uid: 23315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 parent: 2 - proto: SignJanitor entities: @@ -153462,6 +154065,12 @@ entities: parent: 2 - proto: SignLawyer entities: + - uid: 8922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 - uid: 8925 components: - type: Transform @@ -153566,13 +154175,21 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 28902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 - proto: SignScience entities: - - uid: 23198 + - uid: 28906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-36.5 + pos: 4.5,-40.5 parent: 2 - proto: SignSecurity entities: @@ -153594,6 +154211,22 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 +- proto: SignServer + entities: + - uid: 28903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 - proto: SignShock entities: - uid: 5411 @@ -153657,11 +154290,35 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 7789 + - uid: 880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-18.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-51.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-20.5 parent: 2 - uid: 8936 components: @@ -153669,6 +154326,24 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - uid: 9162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 + parent: 2 - uid: 28314 components: - type: Transform @@ -153689,6 +154364,18 @@ entities: - type: Transform pos: 47.5,-45.5 parent: 21002 + - uid: 28437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-54.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-81.5 + parent: 2 - proto: SignSurgery entities: - uid: 8937 @@ -153704,6 +154391,14 @@ entities: - type: Transform pos: -30.5,-2.5 parent: 2 +- proto: SignTheater + entities: + - uid: 28904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-48.5 + parent: 2 - proto: SignToolStorage entities: - uid: 5794 @@ -153712,6 +154407,22 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 +- proto: SignVirology + entities: + - uid: 28907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 7850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 7089 @@ -154006,11 +154717,6 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 9399 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - proto: SodaDispenserMachineCircuitboard entities: - uid: 5812 @@ -157422,6 +158128,18 @@ entities: parent: 2 - proto: StairStageDark entities: + - uid: 4011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -157455,6 +158173,17 @@ entities: parent: 2 - proto: StationMap entities: + - uid: 18502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 - uid: 23439 components: - type: Transform @@ -157494,11 +158223,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 23463 - components: - - type: Transform - pos: -43.5,-28.5 - parent: 2 - uid: 23493 components: - type: Transform @@ -157828,16 +158552,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8890 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8891 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9743 components: - type: Transform @@ -159009,14 +159723,19 @@ entities: pos: -20.5,-2.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment id: Exhibit A - uid: 532 components: - type: Transform + anchored: False pos: -21.5,-2.5 parent: 2 - type: SurveillanceCamera id: Exhibit B + - type: Physics + bodyType: Dynamic - uid: 3481 components: - type: Transform @@ -160050,6 +160769,12 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - uid: 9202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 - uid: 13006 components: - type: Transform @@ -160080,6 +160805,18 @@ entities: - type: Transform pos: 58.5,14.5 parent: 2 + - uid: 16792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 - proto: TableCounterWood entities: - uid: 294 @@ -160146,24 +160883,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-36.5 - parent: 2 - uid: 12260 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-36.5 parent: 2 - - uid: 12261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -160206,6 +160931,16 @@ entities: rot: 3.141592653589793 rad pos: 12.5,34.5 parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -161105,11 +161840,6 @@ entities: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 1042 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - uid: 1572 components: - type: Transform @@ -161729,6 +162459,11 @@ entities: - type: Transform pos: 16.5,1.5 parent: 21002 + - uid: 23184 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 - uid: 23374 components: - type: Transform @@ -169819,96 +170554,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,34.5 parent: 2 - - uid: 8247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,32.5 - parent: 2 - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 8249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 2 - - uid: 8250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,32.5 - parent: 2 - - uid: 8251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,31.5 - parent: 2 - - uid: 8252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,30.5 - parent: 2 - - uid: 8254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 8256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 - parent: 2 - - uid: 8257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,28.5 - parent: 2 - - uid: 8263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,29.5 - parent: 2 - uid: 8264 components: - type: Transform @@ -170428,6 +171073,11 @@ entities: - type: Transform pos: -29.5,24.5 parent: 2 + - uid: 9199 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 - uid: 9383 components: - type: Transform @@ -172831,6 +173481,11 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 - uid: 11962 components: - type: Transform @@ -173535,12 +174190,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 - - uid: 16800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 2 - uid: 18052 components: - type: Transform @@ -176079,18 +176728,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 - - uid: 28436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 28437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,30.5 - parent: 2 - uid: 28521 components: - type: Transform @@ -176665,12 +177302,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 1276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 2 - uid: 1277 components: - type: Transform @@ -176683,54 +177314,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 2 - - uid: 1279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-4.5 parent: 2 - - uid: 1282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 2 - uid: 1327 components: - type: Transform @@ -178589,11 +179178,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 - - uid: 7849 + - uid: 7851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,36.5 + rot: 3.141592653589793 rad + pos: -2.5,38.5 parent: 2 - uid: 7852 components: @@ -179710,11 +180299,6 @@ entities: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 11535 - components: - - type: Transform - pos: -57.5,-15.5 - parent: 2 - uid: 11536 components: - type: Transform @@ -180482,6 +181066,54 @@ entities: - type: Transform pos: -22.5,27.5 parent: 2 + - uid: 28597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -181248,18 +181880,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 - - uid: 8918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - uid: 8938 components: - type: Transform @@ -181703,11 +182323,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-37.5 parent: 2 - - uid: 12285 - components: - - type: Transform - pos: -55.5,-36.5 - parent: 2 - proto: WindoorHydroponicsLocked entities: - uid: 3318 @@ -181892,6 +182507,14 @@ entities: - type: Transform pos: -5.5,-34.5 parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 9918 @@ -182767,6 +183390,44 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-26.5 parent: 2 + - uid: 28616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 28617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 352 @@ -182925,12 +183586,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 1865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 2 - uid: 2329 components: - type: Transform @@ -182967,18 +183622,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,4.5 parent: 2 - - uid: 3220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-27.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-29.5 - parent: 2 - uid: 3424 components: - type: Transform @@ -183261,11 +183904,6 @@ entities: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 1051 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 2 - uid: 1596 components: - type: Transform @@ -183312,8 +183950,13 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -362102 + secondsUntilStateChange: -378181.78 state: Opening + - uid: 28863 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 - proto: WoodenBench entities: - uid: 21 diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index 6b929468a2c8..8bcbf97b865c 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -5469,21 +5469,21 @@ entities: id: Train - proto: AccordionInstrument entities: - - uid: 12393 + - uid: 3 components: - type: Transform pos: -5.3016195,-317.37082 parent: 2 - proto: AcousticGuitarInstrument entities: - - uid: 10093 + - uid: 4 components: - type: Transform pos: -7.466254,-281.50427 parent: 2 - proto: AirAlarm entities: - - uid: 2277 + - uid: 5 components: - type: Transform rot: 1.5707963267948966 rad @@ -5491,27 +5491,27 @@ entities: parent: 2 - type: DeviceList devices: - - 13310 - - 13323 - - 12367 - - 12297 - - 13324 - - uid: 5925 + - 7463 + - 442 + - 9613 + - 9801 + - 7470 + - uid: 6 components: - type: Transform pos: -1.5,-334.5 parent: 2 - type: DeviceList devices: - - 12798 - - 10658 - - 13392 - - 13387 - - 13386 - - 13396 - - 13395 - - 12306 - - uid: 8201 + - 9818 + - 9597 + - 453 + - 7496 + - 7495 + - 7499 + - 7498 + - 7430 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -5519,41 +5519,45 @@ entities: parent: 2 - type: DeviceList devices: - - 5346 - - 13214 - - 5277 - - 5260 - - 13200 - - 13201 - - 13202 - - uid: 8432 + - 9775 + - 423 + - 9784 + - 9643 + - 7450 + - 7345 + - 7346 + - uid: 8 components: - type: Transform pos: -5.5,-306.5 parent: 2 - type: DeviceList devices: - - 3027 - - 12470 - - 8430 - - 13377 - - 13372 - - 7798 - - 7799 - - 7800 - - 13344 - - 13343 - - 13342 - - 13345 - - 13346 - - 13347 - - uid: 10964 + - 9702 + - 9616 + - 388 + - 7493 + - 7491 + - 7414 + - 7415 + - 7416 + - 7478 + - 7477 + - 7476 + - 7479 + - 7480 + - 7481 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-345.5 parent: 2 - - uid: 11906 + - type: DeviceList + devices: + - 9468 + - 9813 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad @@ -5561,18 +5565,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 12897 - - 12798 - - 13392 - - 13395 - - 13396 - - uid: 12935 + - 452 + - 7497 + - 7495 + - 7496 + - 9818 + - 453 + - 7498 + - 7499 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad @@ -5580,12 +5581,12 @@ entities: parent: 2 - type: DeviceList devices: - - 884 - - 1825 - - 13073 - - 393 - - 391 - - uid: 13080 + - 9630 + - 9789 + - 392 + - 7363 + - 7361 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad @@ -5593,14 +5594,14 @@ entities: parent: 2 - type: DeviceList devices: - - 13072 - - 857 - - 747 - 391 - - 390 - - 387 - - 146 - - uid: 13105 + - 9473 + - 9816 + - 7361 + - 7360 + - 7358 + - 7357 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -5608,12 +5609,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13083 - - 611 - - 6915 - - 146 - - 396 - - uid: 13109 + - 393 + - 9672 + - 9661 + - 7357 + - 7364 + - 9586 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad @@ -5621,28 +5623,26 @@ entities: parent: 2 - type: DeviceList devices: - - 1155 - - 977 - - 637 - - 638 - - 13106 - - 6036 - - 1191 - - uid: 13110 + - 9494 + - 9703 + - 7316 + - 7317 + - 394 + - 9820 + - 9607 + - uid: 15 components: - type: Transform pos: 3.5,-36.5 parent: 2 - type: DeviceList devices: - - 1239 - - 954 - - 13107 - - 610 - - 639 - - 6036 - - 1191 - - uid: 13115 + - 9690 + - 9477 + - 395 + - 7315 + - 7318 + - uid: 16 components: - type: Transform rot: 3.141592653589793 rad @@ -5650,17 +5650,20 @@ entities: parent: 2 - type: DeviceList devices: - - 1427 - - 13119 - - 1372 - - 13111 - - 13112 - - 13113 - - 13114 - - 10757 - - 13120 - - 1408 - - uid: 13116 + - 7370 + - 397 + - 7368 + - 7332 + - 7333 + - 7334 + - 7335 + - 7429 + - 398 + - 7369 + - 9579 + - 9501 + - 9476 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad @@ -5668,11 +5671,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13118 - - 4056 - - 2076 - - 10757 - - uid: 13117 + - 396 + - 9745 + - 9495 + - 7429 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad @@ -5680,16 +5683,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13121 - - 1429 - - 13113 - - 13114 - - 13112 - - 13111 - - 1326 - - 1238 - - 1431 - - uid: 13124 + - 399 + - 7371 + - 7334 + - 7335 + - 7333 + - 7332 + - 9695 + - 9485 + - 7372 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -5697,11 +5700,11 @@ entities: parent: 2 - type: DeviceList devices: - - 1409 - - 13122 - - 1415 - - 1372 - - uid: 13146 + - 9699 + - 400 + - 9492 + - 7368 + - uid: 20 components: - type: Transform rot: -1.5707963267948966 rad @@ -5709,34 +5712,36 @@ entities: parent: 2 - type: DeviceList devices: - - 13145 - - 13137 - - 4508 - - 13127 - - 13128 - - 13129 - - 13133 - - 13132 - - 12954 - - 13134 - - 13135 - - 13136 - - uid: 13147 + - 9646 + - 405 + - 7336 + - 7337 + - 7338 + - 7434 + - 7433 + - 7431 + - 7435 + - 7436 + - 7437 + - uid: 21 components: - type: Transform pos: 2.5,-80.5 parent: 2 - type: DeviceList devices: - - 13133 - - 13132 - - 12954 - - 3310 - - 3351 - - 13125 - - 1701 - - 1702 - - uid: 13148 + - 7434 + - 7433 + - 7431 + - 9710 + - 9821 + - 401 + - 7375 + - 7376 + - 9594 + - 9593 + - 9502 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad @@ -5744,30 +5749,32 @@ entities: parent: 2 - type: DeviceList devices: - - 1544 - - 3314 - - 3392 - - 13126 - - 13136 - - 13135 - - 13134 - - uid: 13150 + - 7374 + - 9711 + - 9508 + - 402 + - 7437 + - 7436 + - 7435 + - 9596 + - 9666 + - uid: 23 components: - type: Transform pos: 2.5,-84.5 parent: 2 - type: DeviceList devices: - - 1701 - - 13127 - - 13128 - - 13129 - - 13130 - - 4509 - - 4360 - - 1725 - - 1715 - - uid: 13151 + - 7375 + - 7336 + - 7337 + - 7338 + - 403 + - 9749 + - 9537 + - 7319 + - 7378 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad @@ -5775,13 +5782,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13131 - - 3262 - - 3261 - - 3371 - - 1723 - - 1726 - - uid: 13152 + - 404 + - 9705 + - 9704 + - 9503 + - 7379 + - 7320 + - uid: 25 components: - type: Transform rot: 1.5707963267948966 rad @@ -5789,10 +5796,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13153 - - 3284 - - 3372 - - uid: 13161 + - 407 + - 9708 + - 9504 + - uid: 26 components: - type: Transform rot: 3.141592653589793 rad @@ -5800,38 +5807,41 @@ entities: parent: 2 - type: DeviceList devices: - - 13158 - - 13159 - - 2407 - - 2408 - - 2409 - - 13157 - - 13156 - - 13155 - - 3630 - - 3436 - - 13154 - - 13160 - - 3474 - - 3550 - - 3475 - - 3551 - - 3437 - - 3549 - - 13149 - - uid: 13165 + - 7438 + - 7439 + - 7383 + - 7384 + - 7385 + - 7341 + - 7340 + - 7339 + - 9727 + - 9510 + - 408 + - 7440 + - 9516 + - 9716 + - 9517 + - 9717 + - 9511 + - 9715 + - 406 + - 9518 + - 9519 + - 9520 + - uid: 27 components: - type: Transform pos: -0.5,-118.5 parent: 2 - type: DeviceList devices: - - 13164 - - 3483 - - 3600 - - 13163 - - 2410 - - uid: 13166 + - 409 + - 9524 + - 9722 + - 7441 + - 7386 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad @@ -5839,8 +5849,8 @@ entities: parent: 2 - type: DeviceList devices: - - 3626 - - uid: 13168 + - 9525 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad @@ -5848,24 +5858,23 @@ entities: parent: 2 - type: DeviceList devices: - - 13167 - - 3480 - - 3603 - - 13163 - - 13158 - - 13159 - - 2406 - - 2405 - - 2256 - - 3478 - - 3553 - - 3477 - - 3513 - - 3476 - - 3552 - - 3608 - - 2410 - - uid: 13171 + - 410 + - 9522 + - 9723 + - 7441 + - 7438 + - 7439 + - 7382 + - 7381 + - 7380 + - 9719 + - 9714 + - 9718 + - 9724 + - 7386 + - 9598 + - 9667 + - uid: 30 components: - type: Transform rot: -1.5707963267948966 rad @@ -5873,12 +5882,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2411 - - 13170 - - 2412 - - 3457 - - 3599 - - uid: 13176 + - 7387 + - 411 + - 7388 + - 9515 + - 9721 + - uid: 31 components: - type: Transform rot: -1.5707963267948966 rad @@ -5886,15 +5895,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2834 - - 2835 - - 2836 - - 13173 - - 13172 - - 3647 - - 4016 - - 2833 - - uid: 13178 + - 7397 + - 7398 + - 7399 + - 7443 + - 7442 + - 9731 + - 7396 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad @@ -5902,15 +5910,15 @@ entities: parent: 2 - type: DeviceList devices: - - 2830 - - 2829 - - 2828 - - 13174 - - 2827 - - 2826 - - 13173 - - 13172 - - uid: 13180 + - 7393 + - 7392 + - 7391 + - 7444 + - 7390 + - 7389 + - 7443 + - 7442 + - uid: 33 components: - type: Transform rot: -1.5707963267948966 rad @@ -5918,26 +5926,25 @@ entities: parent: 2 - type: DeviceList devices: - - 4568 - - 13179 - - 3980 - - 2830 - - 2829 - - 2828 - - 2831 - - uid: 13182 + - 9542 + - 414 + - 9737 + - 7393 + - 7392 + - 7391 + - 7394 + - uid: 34 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: DeviceList devices: - - 2831 - - 2832 - - 3954 - - 3650 - - 13181 - - uid: 13185 + - 7394 + - 7395 + - 9736 + - 415 + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad @@ -5945,15 +5952,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13184 - - 13183 - - 3993 - - 4033 - - 2836 - - 2835 - - 2834 - - 2837 - - uid: 13187 + - 417 + - 416 + - 9739 + - 9529 + - 7399 + - 7398 + - 7397 + - 7400 + - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad @@ -5961,11 +5968,11 @@ entities: parent: 2 - type: DeviceList devices: - - 4031 - - 4037 - - 13186 - - 2837 - - uid: 13189 + - 9528 + - 9742 + - 418 + - 7400 + - uid: 37 components: - type: Transform rot: 1.5707963267948966 rad @@ -5973,11 +5980,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13188 - - 4556 - - 4559 - - 2826 - - uid: 13209 + - 419 + - 9751 + - 9540 + - 7389 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad @@ -5985,15 +5992,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13207 - - 13206 - - 13204 - - 13205 - - 13192 - - 13193 - - 13194 - - 1498 - - uid: 13211 + - 9656 + - 420 + - 7452 + - 7453 + - 7342 + - 7343 + - 7344 + - 7373 + - 9583 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad @@ -6001,13 +6009,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5252 - - 5251 - - 13210 - - 13199 - - 13191 - - 13190 - - uid: 13213 + - 9521 + - 9752 + - 421 + - 7449 + - 7446 + - 7445 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad @@ -6015,35 +6023,33 @@ entities: parent: 2 - type: DeviceList devices: - - 13212 - - 5261 - - 5275 - - 13197 - - 13196 - - uid: 13218 + - 422 + - 7448 + - 7447 + - uid: 41 components: - type: Transform pos: 4.5,-164.5 parent: 2 - type: DeviceList devices: - - 5301 - - 5302 - - 13217 - - 13192 - - 13193 - - 13194 - - 13202 - - 13201 - - 13200 - - 13203 - - uid: 13220 + - 9773 + - 9569 + - 424 + - 7342 + - 7343 + - 7344 + - 7346 + - 7345 + - 7450 + - 7451 + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-171.5 parent: 2 - - uid: 13239 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad @@ -6051,46 +6057,49 @@ entities: parent: 2 - type: DeviceList devices: - - 13238 - - 13223 - - 13224 - - 13237 - - 13236 - - 5129 - - 5128 - - 13225 - - 13226 - - uid: 13241 + - 428 + - 7454 + - 7455 + - 9647 + - 9834 + - 7403 + - 7402 + - 7456 + - 7457 + - uid: 44 components: - type: Transform pos: 2.5,-188.5 parent: 2 - type: DeviceList devices: - - 13224 - - 13223 - - 5073 - - 5082 - - 5134 - - 13221 - - 9827 - - 8852 - - 15086 - - uid: 13244 + - 7455 + - 7454 + - 9782 + - 9538 + - 7407 + - 425 + - 7427 + - 7426 + - 7510 + - 9589 + - 9628 + - 9591 + - uid: 45 components: - type: Transform pos: -0.5,-204.5 parent: 2 - type: DeviceList devices: - - 5070 - - 4967 - - 13227 - - 13226 - - 13225 - - 13242 - - 15087 - - uid: 13247 + - 9762 + - 9545 + - 427 + - 7457 + - 7456 + - 7458 + - 7511 + - uid: 46 components: - type: Transform rot: 1.5707963267948966 rad @@ -6098,13 +6107,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5127 - - 13246 - - 5129 - - 5128 - - 5135 - - 5130 - - uid: 13249 + - 9557 + - 429 + - 7403 + - 7402 + - 7408 + - 7404 + - uid: 47 components: - type: Transform rot: 1.5707963267948966 rad @@ -6112,12 +6121,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13248 - - 5072 - - 5083 - - 5135 - - 5134 - - uid: 13251 + - 430 + - 7408 + - 7407 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad @@ -6125,12 +6132,12 @@ entities: parent: 2 - type: DeviceList devices: - - 5108 - - 13250 - - 5107 - - 5130 - - 5131 - - uid: 13252 + - 9553 + - 431 + - 9765 + - 7404 + - 7405 + - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad @@ -6138,50 +6145,48 @@ entities: parent: 2 - type: DeviceList devices: - - 13253 - - 4981 - - 13254 - - 4670 - - 5110 - - 4905 - - 5068 - - 13255 - - 5121 - - 5131 - - 13242 - - uid: 13317 + - 432 + - 9758 + - 433 + - 9754 + - 9554 + - 9543 + - 9760 + - 434 + - 9555 + - 7405 + - 7458 + - uid: 50 components: - type: Transform pos: -0.5,-272.5 parent: 2 - type: DeviceList devices: - - 13314 - - 13315 - - 13316 - - 12341 - - 12340 - - 13313 - - 13312 - - 13311 - - 13310 - - uid: 13322 + - 7465 + - 7466 + - 440 + - 7464 + - 7348 + - 7347 + - 7463 + - uid: 51 components: - type: Transform pos: 4.5,-269.5 parent: 2 - type: DeviceList devices: - - 13321 - - 13320 - - 13319 - - 13313 - - 13312 - - 13311 - - 13318 - - 12322 - - 12333 - - uid: 13333 + - 7469 + - 7468 + - 7467 + - 7464 + - 7348 + - 7347 + - 441 + - 9644 + - 9688 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad @@ -6189,15 +6194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13325 - - 12356 - - 12355 - - 13326 - - 13328 - - 13314 - - 13315 - - 13332 - - uid: 13335 + - 443 + - 444 + - 7471 + - 7465 + - 7466 + - 7472 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad @@ -6205,11 +6208,11 @@ entities: parent: 2 - type: DeviceList devices: - - 12362 - - 13334 - - 12298 - - 13332 - - uid: 13341 + - 9612 + - 445 + - 9802 + - 7472 + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad @@ -6217,17 +6220,17 @@ entities: parent: 2 - type: DeviceList devices: - - 12224 - - 13336 - - 12305 - - 13337 - - 13319 - - 13320 - - 13338 - - 10538 - - 13340 - - 13339 - - uid: 13358 + - 9797 + - 446 + - 9605 + - 447 + - 7467 + - 7468 + - 7473 + - 7428 + - 7475 + - 7474 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad @@ -6235,36 +6238,38 @@ entities: parent: 2 - type: DeviceList devices: - - 3400 - - 12704 - - 12705 - - 13347 - - 13346 - - 13345 - - 13354 - - 13353 - - 13355 - - 13356 - - 13357 - - uid: 13365 + - 386 + - 9769 + - 9484 + - 7481 + - 7480 + - 7479 + - 7483 + - 7482 + - 7349 + - 7350 + - 7351 + - 9620 + - 9478 + - uid: 56 components: - type: Transform pos: 10.5,-305.5 parent: 2 - type: DeviceList devices: - - 13361 - - 13360 - - 13342 - - 13343 - - 13344 - - 13359 - - 12501 - - 12502 - - 13362 - - 13363 - - 13364 - - uid: 13370 + - 7485 + - 7484 + - 7476 + - 7477 + - 7478 + - 448 + - 9618 + - 9808 + - 7486 + - 7487 + - 7488 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad @@ -6272,12 +6277,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13368 - - 13367 - - 13366 - - 12430 - - 12530 - - uid: 13374 + - 7489 + - 9807 + - 9771 + - 9564 + - 9632 + - 9621 + - 7415 + - 7416 + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad @@ -6285,28 +6293,26 @@ entities: parent: 2 - type: DeviceList devices: - - 13371 - - 12428 - - 12433 - - 13367 - - 13372 - - 13373 - - uid: 13382 + - 450 + - 7489 + - 7491 + - 7492 + - uid: 59 components: - type: Transform pos: -6.5,-298.5 parent: 2 - type: DeviceList devices: - - 12581 - - 12580 - - 13380 - - 13377 - - 13381 - - 13357 - - 13356 - - 13355 - - uid: 13383 + - 9811 + - 9625 + - 451 + - 7493 + - 7494 + - 7351 + - 7350 + - 7349 + - uid: 60 components: - type: Transform rot: -1.5707963267948966 rad @@ -6314,27 +6320,29 @@ entities: parent: 2 - type: DeviceList devices: - - 12508 - - 12564 - - 4689 - - 13360 - - uid: 13391 + - 9619 + - 9810 + - 387 + - 7484 + - uid: 61 components: - type: Transform pos: -0.5,-328.5 parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 9425 - - 10870 - - 9426 - - uid: 13402 + - 452 + - 9566 + - 9772 + - 7497 + - 7495 + - 7496 + - 7328 + - 7330 + - 7329 + - 9621 + - 9632 + - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad @@ -6342,64 +6350,63 @@ entities: parent: 2 - type: DeviceList devices: - - 13401 - - 12813 - - 12920 - - 13396 - - uid: 13421 + - 454 + - 9763 + - 9651 + - 7499 + - uid: 63 components: - type: Transform pos: -3.5,-359.5 parent: 2 - type: DeviceList devices: - - 1278 - - 13420 - - 13417 - - 12984 - - 13041 - - 13067 - - 12985 - - 13416 - - 13419 - - 13418 - - 13068 - - 12988 - - 13040 - - 12989 - - 13039 - - 13423 - - 13424 - - 13082 - - 13415 - - 13414 - - 13412 - - 13413 - - 12754 - - 12932 - - 12933 - - 13081 - - 12944 - - 12943 - - 16682 - - 11912 - - 16679 - - uid: 13426 + - 9486 + - 7508 + - 7505 + - 9635 + - 9573 + - 9572 + - 9636 + - 7504 + - 7507 + - 7506 + - 9682 + - 9639 + - 9681 + - 9640 + - 9827 + - 456 + - 457 + - 9776 + - 7503 + - 7502 + - 7500 + - 7501 + - 9633 + - 9824 + - 9777 + - 9825 + - 9634 + - 7355 + - 9830 + - 9669 + - uid: 64 components: - type: Transform pos: -4.5,-369.5 parent: 2 - type: DeviceList devices: - - 13422 - - 13094 - - 12987 - - 13425 - - 13088 - - 12986 - - 13419 - - 13418 - - uid: 13429 + - 455 + - 9832 + - 9638 + - 458 + - 9831 + - 9637 + - 7507 + - 7506 + - uid: 65 components: - type: Transform rot: 1.5707963267948966 rad @@ -6407,10 +6414,12 @@ entities: parent: 2 - type: DeviceList devices: - - 13427 - - 13053 - - 12994 - - uid: 14727 + - 459 + - 9780 + - 9641 + - 9642 + - 9466 + - uid: 66 components: - type: Transform rot: 3.141592653589793 rad @@ -6418,13 +6427,12 @@ entities: parent: 2 - type: DeviceList devices: - - 14726 - - 1378 - - 1375 - - 9827 - - 8852 - - 14728 - - uid: 15278 + - 460 + - 9697 + - 7427 + - 7426 + - 7509 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad @@ -6432,31 +6440,33 @@ entities: parent: 2 - type: DeviceList devices: - - 8213 - - 7879 - - 8483 - - 8009 - - 15275 - - 13108 - - 8012 - - 12324 - - 9085 - - 17000 - - uid: 15279 + - 7424 + - 7419 + - 7425 + - 7421 + - 462 + - 7432 + - 7422 + - 7331 + - 7327 + - 7314 + - 9610 + - 9631 + - uid: 68 components: - type: Transform pos: 4.5,-241.5 parent: 2 - type: DeviceList devices: - - 15274 - - 8091 - - 8071 - - 8213 - - 7879 - - 8483 - - 7885 - - uid: 15280 + - 461 + - 9790 + - 9585 + - 7424 + - 7419 + - 7425 + - 7420 + - uid: 69 components: - type: Transform rot: -1.5707963267948966 rad @@ -6464,17 +6474,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8089 - - 15277 - - 8314 - - 6858 - - 7885 - - 9085 - - 12324 - - 8037 - - 6857 - - 15281 - - uid: 15282 + - 464 + - 7413 + - 7420 + - 7327 + - 7331 + - 7423 + - 7412 + - 7512 + - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad @@ -6482,18 +6490,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15284 - - 15283 - - 15276 - - 6726 - - 8037 - - 13108 - - 8012 - - 15285 - - 15286 - - 15287 - - 7820 - - uid: 15292 + - 9552 + - 9548 + - 463 + - 7409 + - 7423 + - 7432 + - 7422 + - 7352 + - 7353 + - 7354 + - 7417 + - 9757 + - 9544 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad @@ -6501,18 +6511,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15289 - - 7476 - - 4202 - - 7776 - - 4950 - - 15288 - - 6855 - - 7821 - - 6856 - - 15290 - - 15291 - - uid: 16971 + - 466 + - 9546 + - 9826 + - 9828 + - 9581 + - 465 + - 7410 + - 7418 + - 7411 + - 7513 + - 7514 + - 9550 + - 9759 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad @@ -6520,120 +6532,114 @@ entities: parent: 2 - type: DeviceList devices: - - 16996 - - 17001 - - 16990 + - 7516 + - 9838 + - 9670 - proto: AirCanister entities: - - uid: 4848 + - uid: 73 components: - type: Transform pos: -21.5,-260.5 parent: 2 + - uid: 74 + components: + - type: Transform + pos: -0.5,-327.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -0.5,-354.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 - proto: Airlock entities: - - uid: 2078 + - uid: 76 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 2079 + - uid: 77 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 2096 - - uid: 2080 + - uid: 78 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - type: DeviceLinkSink - links: - - 2095 - - uid: 2081 + - uid: 79 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - type: DeviceLinkSink - links: - - 2094 - - uid: 2640 + - uid: 80 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 2645 + - uid: 81 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - type: DeviceLinkSink - links: - - 11933 - - uid: 4109 + - uid: 82 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - type: DeviceLinkSink - links: - - 11983 - proto: AirlockArmoryLocked entities: - - uid: 2846 + - uid: 83 components: - type: Transform pos: 0.5,-361.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 5042 + - uid: 84 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 7746 + - uid: 85 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16880 + - uid: 86 components: - type: Transform pos: -6.5,-260.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 1227 + - uid: 87 components: - type: Transform pos: 2.5,-62.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 10636 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 10746 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 12983 + - uid: 90 components: - type: Transform rot: 3.141592653589793 rad @@ -6641,54 +6647,54 @@ entities: parent: 2 - proto: AirlockBrigLocked entities: - - uid: 323 + - uid: 91 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 326 + - uid: 92 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 405 + - uid: 93 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 614 + - uid: 94 components: - type: Transform pos: 0.5,-355.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 155 + - uid: 95 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 293 + - uid: 96 components: - type: Transform pos: -2.5,-12.5 parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 8466 + - uid: 97 components: - type: Transform pos: 2.5,-274.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 8495 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-275.5 parent: 2 - - uid: 8498 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -6696,14 +6702,14 @@ entities: parent: 2 - proto: AirlockChapelLocked entities: - - uid: 2678 + - uid: 100 components: - type: Transform pos: 4.5,-140.5 parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 14309 + - uid: 101 components: - type: Transform rot: 3.141592653589793 rad @@ -6711,12 +6717,12 @@ entities: parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 330 + - uid: 102 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 8019 + - uid: 103 components: - type: Transform rot: 1.5707963267948966 rad @@ -6724,24 +6730,24 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 8675 + - uid: 104 components: - type: Transform pos: 2.5,-200.5 parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 26 + - uid: 105 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 31 + - uid: 106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 13385 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad @@ -6749,202 +6755,198 @@ entities: parent: 2 - proto: AirlockCommandLocked entities: - - uid: 131 + - uid: 108 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 181 + - uid: 109 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 394 + - uid: 110 components: - type: Transform pos: 5.5,-0.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 1368 + - uid: 111 components: - type: Transform pos: -4.5,-69.5 parent: 2 - proto: AirlockEngineeringGlass entities: - - uid: 17038 + - uid: 112 components: - type: Transform pos: -3.5,-248.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 311 + - uid: 113 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 14648 + - uid: 114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-246.5 parent: 2 - - uid: 16873 + - uid: 115 components: - type: Transform pos: -8.5,-248.5 parent: 2 - - uid: 16879 + - uid: 116 components: - type: Transform pos: -6.5,-243.5 parent: 2 - - uid: 16945 + - uid: 117 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 16991 + - uid: 118 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 190 + - uid: 119 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1433 + - uid: 120 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 2040 + - uid: 121 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 2189 + - uid: 122 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 2817 + - uid: 123 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 4715 + - uid: 124 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4723 + - uid: 125 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7534 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - - uid: 7804 + - uid: 127 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 8001 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - - uid: 8022 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - - uid: 8023 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - - uid: 9019 + - uid: 131 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 10149 + - uid: 132 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 12572 + - uid: 133 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 12906 + - uid: 134 components: - type: Transform pos: 5.5,-360.5 parent: 2 - proto: AirlockExternal entities: - - uid: 1758 + - uid: 135 components: - type: Transform pos: -6.5,-96.5 parent: 2 - - uid: 12099 + - uid: 136 components: - type: Transform pos: 5.5,-381.5 parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 1921 + - uid: 137 components: - type: Transform pos: -14.5,-235.5 parent: 2 - - uid: 2424 + - uid: 138 components: - type: Transform pos: -15.5,-237.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3536 - type: DeviceLinkSource linkedPorts: - 3536: + 139: - DoorStatus: DoorBolt - DoorStatus: Close - - uid: 3536 + - uid: 139 components: - type: Transform pos: -14.5,-239.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 2424 - type: DeviceLinkSource linkedPorts: - 2424: + 138: - DoorStatus: Close - DoorStatus: DoorBolt - - uid: 8003 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad @@ -6952,19 +6954,19 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 728 + - uid: 141 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 15794 + - uid: 142 components: - type: Transform pos: -7.5,-36.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 13348 + - uid: 143 components: - type: Transform rot: -1.5707963267948966 rad @@ -6972,13 +6974,11 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 14345 - type: DeviceLinkSource linkedPorts: - 14345: + 144: - DoorStatus: DoorBolt - - uid: 14345 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad @@ -6986,119 +6986,99 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13348 - type: DeviceLinkSource linkedPorts: - 13348: + 143: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 8762 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 9004 + - uid: 146 components: - type: Transform pos: 9.5,-280.5 parent: 2 - - uid: 9005 + - uid: 147 components: - type: Transform pos: 9.5,-278.5 parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 1808 + - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4512 - type: DeviceLinkSource linkedPorts: - 4512: + 152: - DoorStatus: DoorBolt - - uid: 3017 + - uid: 149 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4513 - type: DeviceLinkSource linkedPorts: - 4513: + 153: - DoorStatus: DoorBolt - - uid: 4494 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 4510 - type: DeviceLinkSource linkedPorts: - 4510: + 151: - DoorStatus: DoorBolt - - uid: 4510 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 4494 - type: DeviceLinkSource linkedPorts: - 4494: + 150: - DoorStatus: DoorBolt - - uid: 4512 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 1808 - type: DeviceLinkSource linkedPorts: - 1808: + 148: - DoorStatus: DoorBolt - - uid: 4513 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 3017 - type: DeviceLinkSource linkedPorts: - 3017: + 149: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 574 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 - - uid: 575 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad @@ -7106,13 +7086,13 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 441 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-31.5 parent: 2 - - uid: 573 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad @@ -7120,18 +7100,18 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 541 + - uid: 158 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 11311 + - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-295.5 parent: 2 - - uid: 11451 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -7139,37 +7119,37 @@ entities: parent: 2 - proto: AirlockExternalLocked entities: - - uid: 879 + - uid: 161 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 1007 + - uid: 162 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 1013 + - uid: 163 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 1691 + - uid: 164 components: - type: Transform pos: -4.5,-242.5 parent: 2 - - uid: 1763 + - uid: 165 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 1924 + - uid: 166 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 3355 + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad @@ -7177,50 +7157,50 @@ entities: parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 1576 + - uid: 168 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 1662 + - uid: 169 components: - type: Transform pos: -0.5,-91.5 parent: 2 - - uid: 1677 + - uid: 170 components: - type: Transform pos: -3.5,-94.5 parent: 2 - proto: AirlockGlass entities: - - uid: 2662 + - uid: 171 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 2663 + - uid: 172 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 2664 + - uid: 173 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 2714 + - uid: 174 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 2717 + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 2718 + - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad @@ -7228,37 +7208,37 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 8830 + - uid: 177 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8831 + - uid: 178 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8834 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 8835 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 10680 + - uid: 181 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10744 + - uid: 182 components: - type: Transform rot: 1.5707963267948966 rad @@ -7266,24 +7246,24 @@ entities: parent: 2 - proto: AirlockHatch entities: - - uid: 1616 + - uid: 183 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 8239 + - uid: 184 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-302.5 parent: 2 - - uid: 8240 + - uid: 185 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-307.5 parent: 2 - - uid: 8424 + - uid: 186 components: - type: Transform rot: 1.5707963267948966 rad @@ -7291,170 +7271,139 @@ entities: parent: 2 - proto: AirlockHatchMaintenance entities: - - uid: 12 + - uid: 187 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: Close - 9343: + 16533: - DoorStatus: Close - - uid: 20 + - uid: 188 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 269 + - uid: 189 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 270 + - uid: 190 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: Close - 3544: + 16522: - DoorStatus: Close - - uid: 274 + - uid: 191 components: - type: Transform pos: 0.5,-72.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 276 + - uid: 192 components: - type: Transform pos: 0.5,-80.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 277 + - uid: 193 components: - type: Transform pos: 0.5,-99.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: Close - 9374: + 16536: - DoorStatus: Close - - uid: 279 + - uid: 194 components: - type: Transform pos: 0.5,-107.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 9374: + 16536: - DoorStatus: Close - 8135: + 16530: - DoorStatus: Close - - uid: 281 + - uid: 195 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 283 - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - - uid: 283 + - uid: 196 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - 281: + 195: - DoorStatus: Close - - uid: 616 + - uid: 197 components: - type: Transform rot: 3.141592653589793 rad @@ -7462,383 +7411,314 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 625 + - uid: 198 components: - type: Transform pos: 0.5,-153.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: Close - 9433: + 16538: - DoorStatus: Close - - uid: 656 + - uid: 199 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 657 + - uid: 200 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 658 + - uid: 201 components: - type: Transform pos: 0.5,-105.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 662 + - uid: 202 components: - type: Transform pos: 0.5,-186.5 parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 3546 - - 280 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: DoorBolt - 280: + 16511: - DoorStatus: DoorBolt - - uid: 666 + - uid: 203 components: - type: Transform pos: 0.5,-161.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 9433: + 16538: - DoorStatus: Close - 8136: + 16531: - DoorStatus: Close - - uid: 667 + - uid: 204 components: - type: Transform pos: 0.5,-188.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 670 + - uid: 205 components: - type: Transform pos: 0.5,-180.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 671 + - uid: 206 components: - type: Transform pos: 0.5,-215.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 991 + - uid: 207 components: - type: Transform pos: 0.5,-207.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 1211 + - uid: 208 components: - type: Transform pos: 0.5,-242.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 1247 + - uid: 209 components: - type: Transform pos: 0.5,-234.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 4692 + - uid: 210 components: - type: Transform pos: 0.5,-74.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4693 + - uid: 211 components: - type: Transform pos: 0.5,-78.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4694 + - uid: 212 components: - type: Transform pos: 0.5,-182.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 280: + 16511: - DoorStatus: DoorBolt - 3546: + 16524: - DoorStatus: DoorBolt - - uid: 4695 + - uid: 213 components: - type: Transform pos: 0.5,-159.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 5216 + - uid: 214 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: DoorBolt - 9459: + 16541: - DoorStatus: DoorBolt - - uid: 5259 + - uid: 215 components: - type: Transform pos: 0.5,-240.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 5467 + - uid: 216 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 7287 + - uid: 217 components: - type: Transform pos: 12.5,-162.5 parent: 2 - - uid: 7293 + - uid: 218 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 7359 + - uid: 219 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8169 + - uid: 220 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 8178 + - uid: 221 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: DoorBolt - 3544: + 16522: - DoorStatus: DoorBolt - - uid: 8195 + - uid: 222 components: - type: Transform pos: 0.5,-213.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 8639 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -7846,16 +7726,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 8674 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad @@ -7863,192 +7740,156 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: Close - 5463: + 16527: - DoorStatus: Close - - uid: 8678 + - uid: 225 components: - type: Transform pos: 0.5,-290.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: DoorBolt - 5463: + 16527: - DoorStatus: DoorBolt - - uid: 9375 + - uid: 226 components: - type: Transform pos: 0.5,-296.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: Close - 5262: + 16526: - DoorStatus: Close - - uid: 9551 + - uid: 227 components: - type: Transform pos: 0.5,-155.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 9552 + - uid: 228 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 9553 + - uid: 229 components: - type: Transform pos: 0.5,-101.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 9554 + - uid: 230 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: DoorBolt - 9343: + 16533: - DoorStatus: DoorBolt - - uid: 9555 + - uid: 231 components: - type: Transform pos: 0.5,-209.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 9556 + - uid: 232 components: - type: Transform pos: 0.5,-236.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 9557 + - uid: 233 components: - type: Transform pos: 0.5,-267.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9455 - - 9459 - type: DeviceLinkSource linkedPorts: - 9459: + 16541: - DoorStatus: DoorBolt - 9455: + 16540: - DoorStatus: DoorBolt - - uid: 9558 + - uid: 234 components: - type: Transform pos: 0.5,-294.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5463 - - 5262 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: DoorBolt - 5262: + 16526: - DoorStatus: DoorBolt - - uid: 9685 + - uid: 235 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 10132 + - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad @@ -8056,16 +7897,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5466 - - 708 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: Close - 708: + 16516: - DoorStatus: Close - - uid: 10646 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad @@ -8073,16 +7911,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 708: + 16516: - DoorStatus: Close - 5466: + 16528: - DoorStatus: Close - - uid: 11821 + - uid: 238 components: - type: Transform rot: -1.5707963267948966 rad @@ -8090,15 +7925,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11820: + 16542: - DoorStatus: Close - - uid: 11822 + - uid: 239 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-382.5 parent: 2 - - uid: 12945 + - uid: 240 components: - type: Transform rot: -1.5707963267948966 rad @@ -8106,19 +7941,19 @@ entities: parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 2229 + - uid: 241 components: - type: Transform pos: 3.5,-120.5 parent: 2 - - uid: 2230 + - uid: 242 components: - type: Transform pos: 0.5,-118.5 parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 10794 + - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad @@ -8126,7 +7961,7 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 1717 + - uid: 244 components: - type: Transform rot: -1.5707963267948966 rad @@ -8134,7 +7969,7 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 14801 + - uid: 245 components: - type: Transform rot: -1.5707963267948966 rad @@ -8142,54 +7977,54 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 570 + - uid: 246 components: - type: Transform pos: 3.5,-330.5 parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 961 + - uid: 247 components: - type: Transform pos: 5.5,-63.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 8546 + - uid: 248 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 10846 + - uid: 249 components: - type: Transform pos: 5.5,-269.5 parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 2715 + - uid: 250 components: - type: Transform pos: 7.5,-138.5 parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 3089 + - uid: 251 components: - type: Transform pos: 6.5,-164.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 423 + - uid: 252 components: - type: Transform pos: -2.5,1.5 parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 5092 + - uid: 253 components: - type: Transform rot: -1.5707963267948966 rad @@ -8197,37 +8032,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - proto: AirlockMaintEngiLocked entities: - - uid: 7533 + - uid: 254 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-260.5 parent: 2 - - uid: 7548 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-243.5 parent: 2 - - uid: 8122 + - uid: 256 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-260.5 parent: 2 - - uid: 8206 + - uid: 257 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-243.5 parent: 2 - - uid: 8522 + - uid: 258 components: - type: Transform rot: 1.5707963267948966 rad @@ -8235,12 +8070,12 @@ entities: parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 2245 + - uid: 259 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 13027 + - uid: 260 components: - type: Transform rot: 3.141592653589793 rad @@ -8248,14 +8083,14 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 2225 + - uid: 261 components: - type: Transform pos: 2.5,-116.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 45 + - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad @@ -8263,16 +8098,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 46 + - uid: 263 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 397 + - uid: 264 components: - type: Transform rot: 3.141592653589793 rad @@ -8280,16 +8115,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 601 + - uid: 265 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 622 + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad @@ -8297,32 +8132,32 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 640 + - uid: 267 components: - type: Transform pos: -4.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - - uid: 706 + - uid: 268 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 758 + - uid: 269 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 811 + - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad @@ -8330,11 +8165,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 1068 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad @@ -8342,53 +8177,53 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 1081 + - uid: 272 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 1478 + - uid: 273 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 1760 + - uid: 274 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 1762 + - uid: 275 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 1933 + - uid: 276 components: - type: Transform pos: 5.5,-161.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1937 + - uid: 277 components: - type: Transform pos: 5.5,-154.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1938 + - uid: 278 components: - type: Transform rot: -1.5707963267948966 rad @@ -8396,11 +8231,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 3508: + 16521: - DoorStatus: DoorBolt - 15040: + 16557: - DoorStatus: DoorBolt - - uid: 2100 + - uid: 279 components: - type: Transform rot: 3.141592653589793 rad @@ -8408,16 +8243,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 2202 + - uid: 280 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 2244 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -8425,33 +8260,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 2413 + - uid: 282 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2414 + - uid: 283 components: - type: Transform pos: 5.5,-295.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2492 + - uid: 284 components: - type: Transform rot: 1.5707963267948966 rad @@ -8459,21 +8294,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14768: + 16546: - DoorStatus: DoorBolt - 1335: + 16517: - DoorStatus: DoorBolt - - uid: 2562 + - uid: 285 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 2688 + - uid: 286 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 2690 + - uid: 287 components: - type: Transform rot: 1.5707963267948966 rad @@ -8481,26 +8316,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 3207 + - uid: 288 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 3213 + - uid: 289 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 3214 + - uid: 290 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 3782 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad @@ -8508,117 +8343,117 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 5018 + - uid: 292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - - uid: 6286 + - uid: 293 components: - type: Transform pos: 5.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 6736 + - uid: 294 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-162.5 parent: 2 - - uid: 6778 + - uid: 295 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - - uid: 6822 + - uid: 296 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-252.5 parent: 2 - - uid: 6963 + - uid: 297 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 7939 + - uid: 298 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-167.5 parent: 2 - - uid: 8428 + - uid: 299 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - - uid: 8701 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-285.5 parent: 2 - - uid: 8796 + - uid: 301 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-254.5 parent: 2 - - uid: 9028 + - uid: 302 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-118.5 parent: 2 - - uid: 9522 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-328.5 parent: 2 - - uid: 9818 + - uid: 304 components: - type: Transform pos: 1.5,-113.5 parent: 2 - - uid: 10062 + - uid: 305 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10063 + - uid: 306 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10067 + - uid: 307 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10068 + - uid: 308 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10069 + - uid: 309 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10531 + - uid: 310 components: - type: Transform rot: -1.5707963267948966 rad @@ -8626,58 +8461,58 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 12871 + - uid: 311 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - uid: 13169 + - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-190.5 parent: 2 - - uid: 13443 + - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-205.5 parent: 2 - - uid: 13453 + - uid: 314 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - - uid: 13454 + - uid: 315 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-126.5 parent: 2 - - uid: 14554 + - uid: 316 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14565 + - uid: 317 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-70.5 parent: 2 - - uid: 14749 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-52.5 parent: 2 - - uid: 14753 + - uid: 319 components: - type: Transform rot: -1.5707963267948966 rad @@ -8685,11 +8520,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 14796 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad @@ -8697,11 +8532,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 14946 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad @@ -8709,11 +8544,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 15186 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -8721,140 +8556,140 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 164: + 16508: - DoorStatus: DoorBolt - 15152: + 16560: - DoorStatus: DoorBolt - - uid: 16476 + - uid: 323 components: - type: Transform pos: -7.5,-162.5 parent: 2 - - uid: 16818 + - uid: 324 components: - type: Transform pos: 5.5,-133.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 16903 + - uid: 325 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15040: + 16557: - DoorStatus: DoorBolt - 3508: + 16521: - DoorStatus: DoorBolt - proto: AirlockMaintMedLocked entities: - - uid: 8348 + - uid: 326 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-170.5 parent: 2 - - uid: 8422 + - uid: 327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-164.5 parent: 2 - - uid: 8448 + - uid: 328 components: - type: Transform pos: -5.5,-173.5 parent: 2 - proto: AirlockMaintServiceLocked entities: - - uid: 1720 + - uid: 329 components: - type: Transform pos: -3.5,-85.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 308 + - uid: 330 components: - type: Transform pos: 2.5,-178.5 parent: 2 - - uid: 3756 + - uid: 331 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 3761 + - uid: 332 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-191.5 parent: 2 - - uid: 3762 + - uid: 333 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-195.5 parent: 2 - - uid: 7193 + - uid: 334 components: - type: Transform pos: 4.5,-177.5 parent: 2 - - uid: 7797 + - uid: 335 components: - type: Transform pos: 2.5,-179.5 parent: 2 - - uid: 11907 + - uid: 336 components: - type: Transform pos: -0.5,-169.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 319 + - uid: 337 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-198.5 parent: 2 - - uid: 320 + - uid: 338 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-197.5 parent: 2 - - uid: 3168 + - uid: 339 components: - type: Transform pos: -0.5,-174.5 parent: 2 - - uid: 3181 + - uid: 340 components: - type: Transform pos: -0.5,-175.5 parent: 2 - - uid: 7478 + - uid: 341 components: - type: Transform pos: -0.5,-165.5 parent: 2 - proto: AirlockMining entities: - - uid: 14336 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-70.5 parent: 2 - - uid: 14339 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -8862,19 +8697,19 @@ entities: parent: 2 - proto: AirlockMiningGlass entities: - - uid: 14333 + - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-66.5 parent: 2 - - uid: 14335 + - uid: 345 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-64.5 parent: 2 - - uid: 14462 + - uid: 346 components: - type: Transform rot: 3.141592653589793 rad @@ -8882,38 +8717,38 @@ entities: parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 9165 + - uid: 347 components: - type: Transform pos: 6.5,-283.5 parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 8373 + - uid: 348 components: - type: Transform pos: -8.5,-301.5 parent: 2 - - uid: 9832 + - uid: 349 components: - type: Transform pos: -7.5,-303.5 parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 2048 + - uid: 350 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - - uid: 2049 + - uid: 351 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - - uid: 2132 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad @@ -8921,101 +8756,89 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 9823 + - uid: 353 components: - type: Transform pos: -6.5,-314.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 9855 + - uid: 354 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 9856 + - uid: 355 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 9951 + - uid: 356 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - - uid: 9952 + - uid: 357 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - - uid: 10083 + - uid: 358 components: - type: Transform pos: -4.5,-320.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1791: + 16518: - DoorStatus: DoorBolt - 1812: + 16519: - DoorStatus: DoorBolt - - uid: 10127 + - uid: 359 components: - type: Transform pos: -1.5,-317.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2473 + - uid: 360 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11258 + - uid: 361 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11496 - - uid: 11259 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11332 - - uid: 11260 + - uid: 363 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11331 - - uid: 11261 + - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11330 - - uid: 12089 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 12703 + - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad @@ -9023,37 +8846,37 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 11194 + - uid: 367 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - - uid: 11195 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - - uid: 11380 + - uid: 369 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - - uid: 11381 + - uid: 370 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - - uid: 11382 + - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-367.5 parent: 2 - - uid: 11407 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad @@ -9061,13 +8884,13 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 1704 + - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - - uid: 1722 + - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad @@ -9075,65 +8898,65 @@ entities: parent: 2 - proto: AirlockServiceLocked entities: - - uid: 2719 + - uid: 375 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 11931 + - uid: 376 components: - type: Transform pos: -5.5,-385.5 parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 619 + - uid: 377 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-126.5 parent: 2 - - uid: 2016 + - uid: 378 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 2017 + - uid: 379 components: - type: Transform pos: -5.5,-122.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 1358 + - uid: 380 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 3768 + - uid: 381 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-198.5 parent: 2 - - uid: 3867 + - uid: 382 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - - uid: 3869 + - uid: 383 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-201.5 parent: 2 - - uid: 8806 + - uid: 384 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12114 + - uid: 385 components: - type: Transform rot: -1.5707963267948966 rad @@ -9141,23 +8964,23 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 3400 + - uid: 386 components: - type: Transform pos: 0.5,-300.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 4689 + - 55 + - uid: 387 components: - type: Transform pos: 4.5,-301.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 - - uid: 8430 + - 60 + - uid: 388 components: - type: Transform rot: -1.5707963267948966 rad @@ -9165,20 +8988,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 10651 + - 8 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-342.5 parent: 2 - - uid: 10759 + - uid: 390 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-337.5 parent: 2 - - uid: 13072 + - uid: 391 components: - type: Transform rot: 3.141592653589793 rad @@ -9186,8 +9009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 13073 + - 12 + - uid: 392 components: - type: Transform rot: 3.141592653589793 rad @@ -9195,8 +9018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 13083 + - 11 + - uid: 393 components: - type: Transform rot: 3.141592653589793 rad @@ -9204,8 +9027,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 13106 + - 13 + - uid: 394 components: - type: Transform rot: 3.141592653589793 rad @@ -9213,8 +9036,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 13107 + - 14 + - uid: 395 components: - type: Transform rot: 3.141592653589793 rad @@ -9222,8 +9045,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 13118 + - 15 + - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad @@ -9231,8 +9054,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - uid: 13119 + - 17 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad @@ -9240,8 +9063,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13120 + - 16 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad @@ -9249,8 +9072,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13121 + - 16 + - uid: 399 components: - type: Transform rot: -1.5707963267948966 rad @@ -9258,8 +9081,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 13122 + - 18 + - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad @@ -9267,8 +9090,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 - - uid: 13125 + - 19 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad @@ -9276,8 +9099,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 13126 + - 21 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad @@ -9285,8 +9108,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 13130 + - 22 + - uid: 403 components: - type: Transform rot: 1.5707963267948966 rad @@ -9294,8 +9117,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 13131 + - 23 + - uid: 404 components: - type: Transform rot: 1.5707963267948966 rad @@ -9303,8 +9126,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 13137 + - 24 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad @@ -9312,8 +9135,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - uid: 13149 + - 20 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -9321,8 +9144,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13153 + - 26 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad @@ -9330,8 +9153,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 - - uid: 13154 + - 25 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad @@ -9339,8 +9162,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13164 + - 26 + - uid: 409 components: - type: Transform rot: 3.141592653589793 rad @@ -9348,36 +9171,36 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - uid: 13167 + - 27 + - uid: 410 components: - type: Transform pos: -0.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 13170 + - 29 + - uid: 411 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 13175 + - 30 + - uid: 412 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-141.5 parent: 2 - - uid: 13177 + - uid: 413 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - - uid: 13179 + - uid: 414 components: - type: Transform rot: 1.5707963267948966 rad @@ -9385,8 +9208,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - uid: 13181 + - 33 + - uid: 415 components: - type: Transform rot: -1.5707963267948966 rad @@ -9394,24 +9217,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 13183 + - 34 + - uid: 416 components: - type: Transform pos: -4.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13184 + - 35 + - uid: 417 components: - type: Transform pos: -2.5,-146.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13186 + - 35 + - uid: 418 components: - type: Transform rot: 1.5707963267948966 rad @@ -9419,8 +9242,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 - - uid: 13188 + - 36 + - uid: 419 components: - type: Transform rot: 1.5707963267948966 rad @@ -9428,16 +9251,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 - - uid: 13206 + - 37 + - uid: 420 components: - type: Transform pos: 0.5,-166.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13210 + - 38 + - uid: 421 components: - type: Transform rot: 1.5707963267948966 rad @@ -9445,8 +9268,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13212 + - 39 + - uid: 422 components: - type: Transform rot: 1.5707963267948966 rad @@ -9454,8 +9277,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13214 + - 40 + - uid: 423 components: - type: Transform rot: 1.5707963267948966 rad @@ -9463,8 +9286,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - uid: 13217 + - 7 + - uid: 424 components: - type: Transform rot: 3.141592653589793 rad @@ -9472,8 +9295,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13221 + - 41 + - uid: 425 components: - type: Transform rot: 3.141592653589793 rad @@ -9481,14 +9304,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 13222 + - 44 + - uid: 426 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-197.5 parent: 2 - - uid: 13227 + - uid: 427 components: - type: Transform rot: 3.141592653589793 rad @@ -9496,8 +9319,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 13238 + - 45 + - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad @@ -9505,8 +9328,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - uid: 13246 + - 43 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad @@ -9514,8 +9337,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - uid: 13248 + - 46 + - uid: 430 components: - type: Transform rot: 1.5707963267948966 rad @@ -9523,8 +9346,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13249 - - uid: 13250 + - 47 + - uid: 431 components: - type: Transform rot: 1.5707963267948966 rad @@ -9532,8 +9355,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - uid: 13253 + - 48 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad @@ -9541,8 +9364,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13254 + - 49 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad @@ -9550,8 +9373,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13255 + - 49 + - uid: 434 components: - type: Transform rot: -1.5707963267948966 rad @@ -9559,44 +9382,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13256 + - 49 + - uid: 435 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-219.5 parent: 2 - - uid: 13257 + - uid: 436 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-219.5 parent: 2 - - uid: 13258 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-230.5 parent: 2 - - uid: 13259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-230.5 - parent: 2 - - uid: 13268 + - uid: 438 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-218.5 parent: 2 - - uid: 13270 + - uid: 439 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-231.5 parent: 2 - - uid: 13316 + - uid: 440 components: - type: Transform rot: -1.5707963267948966 rad @@ -9604,24 +9421,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - uid: 13318 + - 50 + - uid: 441 components: - type: Transform pos: 4.5,-271.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13323 + - 51 + - uid: 442 components: - type: Transform pos: -6.5,-272.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13325 + - 5 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad @@ -9629,8 +9446,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13326 + - 52 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad @@ -9638,8 +9455,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13334 + - 52 + - uid: 445 components: - type: Transform rot: 1.5707963267948966 rad @@ -9647,8 +9464,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13335 - - uid: 13336 + - 53 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad @@ -9656,8 +9473,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13337 + - 54 + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad @@ -9665,8 +9482,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13359 + - 54 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad @@ -9674,16 +9491,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13366 + - 56 + - uid: 449 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13371 + - uid: 450 components: - type: Transform rot: 1.5707963267948966 rad @@ -9691,8 +9505,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13380 + - 58 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad @@ -9700,8 +9514,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13384 + - 59 + - uid: 452 components: - type: Transform rot: -1.5707963267948966 rad @@ -9709,18 +9523,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13392 + - 61 + - 10 + - uid: 453 components: - type: Transform pos: -0.5,-337.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13401 + - 10 + - 6 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad @@ -9728,54 +9542,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13402 - - uid: 13407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-345.5 - parent: 2 - - uid: 13422 + - 62 + - uid: 455 components: - type: Transform pos: -4.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13423 + - 64 + - uid: 456 components: - type: Transform pos: 3.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13424 + - 63 + - uid: 457 components: - type: Transform pos: -2.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13425 + - 63 + - uid: 458 components: - type: Transform pos: 5.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13427 + - 64 + - uid: 459 components: - type: Transform pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 - - uid: 14726 + - 65 + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad @@ -9783,40 +9591,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15274 + - 66 + - uid: 461 components: - type: Transform pos: 6.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - uid: 15275 + - 68 + - uid: 462 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 15276 + - 67 + - uid: 463 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15277 + - 70 + - uid: 464 components: - type: Transform pos: 4.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15288 + - 69 + - uid: 465 components: - type: Transform rot: -1.5707963267948966 rad @@ -9824,8 +9632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15289 + - 71 + - uid: 466 components: - type: Transform rot: -1.5707963267948966 rad @@ -9833,325 +9641,316 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 71 - proto: AltarSpawner entities: - - uid: 2584 + - uid: 467 components: - type: Transform pos: 4.5,-143.5 parent: 2 - proto: AmeJar entities: - - uid: 3746 + - uid: 468 components: - type: Transform pos: 20.506,-253.4022 parent: 2 - proto: AmePartFlatpack entities: - - uid: 8631 + - uid: 470 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8633 + - uid: 471 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8634 + - uid: 472 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AnomalyFloraBulb entities: - - uid: 6675 + - uid: 473 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 6914 + - uid: 474 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 12929 + - uid: 475 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-373.5 parent: 2 - - uid: 15093 + - uid: 476 components: - type: Transform pos: 11.5,-196.5 parent: 2 - proto: AnomalyLocatorWide entities: - - uid: 10022 + - uid: 477 components: - type: Transform pos: 3.3139195,-303.7327 parent: 2 - proto: AnomalyScanner entities: - - uid: 10016 + - uid: 478 components: - type: Transform pos: 4.6213827,-304.56445 parent: 2 - - uid: 10017 + - uid: 479 components: - type: Transform pos: 4.3572483,-304.30038 parent: 2 - proto: APCBasic entities: - - uid: 906 + - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-220.5 parent: 2 - - uid: 1028 + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 2002 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 2 - - uid: 2005 + - uid: 483 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - - uid: 2236 + - uid: 484 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - uid: 3200 + - uid: 485 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 4047 + - uid: 486 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-302.5 parent: 2 - - uid: 4294 + - uid: 487 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 4348 + - uid: 488 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 5001 + - uid: 489 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 5695 + - uid: 490 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-6.5 parent: 2 - - uid: 5743 + - uid: 491 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 - - uid: 5818 + - uid: 492 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-42.5 parent: 2 - - uid: 5820 + - uid: 493 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-30.5 parent: 2 - - uid: 5969 + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - - uid: 5971 + - uid: 495 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - - uid: 6161 + - uid: 496 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6162 + - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-97.5 parent: 2 - - uid: 6444 + - uid: 498 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6445 + - uid: 499 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6918 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-164.5 parent: 2 - - uid: 6919 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-176.5 parent: 2 - - uid: 7062 + - uid: 502 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7063 + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-203.5 parent: 2 - - uid: 7591 + - uid: 504 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7722 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-248.5 parent: 2 - - uid: 7929 + - uid: 506 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-249.5 parent: 2 - - uid: 8259 + - uid: 507 components: - type: Transform pos: 13.5,-158.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 8315 + - uid: 508 components: - type: Transform pos: 17.5,-137.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 9074 + - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-264.5 parent: 2 - - uid: 9166 + - uid: 510 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9174 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 9187 + - uid: 512 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-272.5 parent: 2 - - uid: 10277 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 10333 + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-301.5 parent: 2 - - uid: 10338 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 10957 + - uid: 516 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 11998 + - uid: 517 components: - type: Transform pos: 0.5,-387.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 14464 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 16641 + - uid: 519 components: - type: Transform rot: 3.141592653589793 rad @@ -10159,19 +9958,19 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 10937 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-347.5 parent: 2 - - uid: 10938 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-347.5 parent: 2 - - uid: 15300 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad @@ -10179,18 +9978,18 @@ entities: parent: 2 - proto: APCHyperCapacity entities: - - uid: 888 + - uid: 523 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 9616 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 10860 + - uid: 525 components: - type: Transform rot: 3.141592653589793 rad @@ -10198,289 +9997,289 @@ entities: parent: 2 - proto: APCSuperCapacity entities: - - uid: 11557 + - uid: 526 components: - type: Transform pos: 1.5,-361.5 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 12014 + - uid: 527 components: - type: Transform pos: 2.5,-36.5 parent: 2 - proto: AsteroidRock entities: - - uid: 6689 + - uid: 528 components: - type: Transform pos: 29.5,-263.5 parent: 2 - - uid: 6864 + - uid: 529 components: - type: Transform pos: 28.5,-263.5 parent: 2 - - uid: 7496 + - uid: 530 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8530 + - uid: 531 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 8854 + - uid: 532 components: - type: Transform pos: 31.5,-261.5 parent: 2 - - uid: 8859 + - uid: 533 components: - type: Transform pos: 28.5,-259.5 parent: 2 - proto: AsteroidRockGold entities: - - uid: 4988 + - uid: 534 components: - type: Transform pos: 27.5,-259.5 parent: 2 - proto: AsteroidRockUranium entities: - - uid: 7371 + - uid: 535 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 7374 + - uid: 536 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 7375 + - uid: 537 components: - type: Transform pos: 15.5,-148.5 parent: 2 - proto: AsteroidRockUraniumCrab entities: - - uid: 7312 + - uid: 538 components: - type: Transform pos: 12.5,-150.5 parent: 2 - - uid: 7368 + - uid: 539 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 7369 + - uid: 540 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 7370 + - uid: 541 components: - type: Transform pos: 16.5,-143.5 parent: 2 - - uid: 7372 + - uid: 542 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 7373 + - uid: 543 components: - type: Transform pos: 15.5,-142.5 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 142 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-16.5 parent: 2 - - uid: 560 + - uid: 545 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 561 + - uid: 546 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 562 + - uid: 547 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 563 + - uid: 548 components: - type: Transform pos: -7.5,-36.5 parent: 2 - - uid: 564 + - uid: 549 components: - type: Transform pos: 8.5,-36.5 parent: 2 - - uid: 565 + - uid: 550 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 568 + - uid: 551 components: - type: Transform pos: -7.5,-31.5 parent: 2 - - uid: 569 + - uid: 552 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 1627 + - uid: 553 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 1707 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-96.5 parent: 2 - - uid: 1709 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-94.5 parent: 2 - - uid: 1710 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-89.5 parent: 2 - - uid: 1716 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - - uid: 3259 + - uid: 558 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3260 + - uid: 559 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-86.5 parent: 2 - - uid: 5006 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-223.5 parent: 2 - - uid: 5111 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-242.5 parent: 2 - - uid: 5119 + - uid: 562 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 8000 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-169.5 parent: 2 - - uid: 8159 + - uid: 564 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-256.5 parent: 2 - - uid: 8819 + - uid: 565 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8820 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8836 + - uid: 567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 8839 + - uid: 568 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 8841 + - uid: 569 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 10080 + - uid: 570 components: - type: Transform pos: -4.5,-295.5 parent: 2 - - uid: 10682 + - uid: 571 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10852 + - uid: 572 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-145.5 parent: 2 - - uid: 11507 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-178.5 parent: 2 - - uid: 11882 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-381.5 parent: 2 - - uid: 13243 + - uid: 575 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 14291 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad @@ -10488,208 +10287,208 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: - - uid: 4989 + - uid: 577 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 16536 + - uid: 578 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-261.5 parent: 2 - - uid: 16539 + - uid: 579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 16540 + - uid: 580 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-259.5 parent: 2 - - uid: 16541 + - uid: 581 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-259.5 parent: 2 - - uid: 16542 + - uid: 582 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-260.5 parent: 2 - - uid: 16543 + - uid: 583 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-261.5 parent: 2 - - uid: 16544 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-261.5 parent: 2 - - uid: 16545 + - uid: 585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 16546 + - uid: 586 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-259.5 parent: 2 - - uid: 16547 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 16548 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 16550 + - uid: 589 components: - type: Transform pos: -21.5,-257.5 parent: 2 - - uid: 16551 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 16552 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 16553 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 16554 + - uid: 593 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 16555 + - uid: 594 components: - type: Transform pos: -21.5,-253.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1626 + - uid: 595 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 1786 + - uid: 596 components: - type: Transform pos: -5.5,-91.5 parent: 2 - - uid: 1787 + - uid: 597 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1788 + - uid: 598 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 1789 + - uid: 599 components: - type: Transform pos: -4.5,-92.5 parent: 2 - - uid: 1790 + - uid: 600 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 1792 + - uid: 601 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 1793 + - uid: 602 components: - type: Transform pos: -2.5,-92.5 parent: 2 - - uid: 1794 + - uid: 603 components: - type: Transform pos: -1.5,-91.5 parent: 2 - - uid: 1795 + - uid: 604 components: - type: Transform pos: -1.5,-92.5 parent: 2 - - uid: 1796 + - uid: 605 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 1797 + - uid: 606 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 1798 + - uid: 607 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 1799 + - uid: 608 components: - type: Transform pos: -4.5,-90.5 parent: 2 - - uid: 1800 + - uid: 609 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 1801 + - uid: 610 components: - type: Transform pos: -2.5,-90.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 12605 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 13240 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 14223 + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad @@ -10697,213 +10496,213 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 4985 + - uid: 614 components: - type: Transform - pos: 17.5,-245.5 + pos: 6.5,-272.5 parent: 2 - - uid: 9073 + - uid: 615 components: - type: Transform - pos: 6.5,-273.5 + pos: 17.5,-245.5 parent: 2 - - uid: 14289 + - uid: 616 components: - type: Transform pos: -5.5,-299.5 parent: 2 - proto: BackgammonBoard entities: - - uid: 3707 + - uid: 617 components: - type: Transform pos: 6.5271845,-122.9964 parent: 2 - proto: BananaPhoneInstrument entities: - - uid: 2015 + - uid: 618 components: - type: Transform pos: -7.68055,-124.47525 parent: 2 - proto: BannerCargo entities: - - uid: 8378 + - uid: 619 components: - type: Transform pos: -0.5,-282.5 parent: 2 - - uid: 14027 + - uid: 620 components: - type: Transform pos: -0.5,-276.5 parent: 2 - proto: BannerEngineering entities: - - uid: 14010 + - uid: 621 components: - type: Transform pos: -2.5,-246.5 parent: 2 - proto: BarberScissors entities: - - uid: 14338 + - uid: 622 components: - type: Transform pos: 16.483294,-59.410294 parent: 2 - - uid: 14356 + - uid: 623 components: - type: Transform pos: 14.515497,-59.39709 parent: 2 - - uid: 14477 + - uid: 625 components: - type: Transform - parent: 14476 + parent: 624 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Barricade entities: - - uid: 2819 + - uid: 629 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 2820 + - uid: 630 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 3399 + - uid: 631 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3889 + - uid: 632 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-200.5 parent: 2 - - uid: 7358 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-156.5 parent: 2 - - uid: 7363 + - uid: 634 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-141.5 parent: 2 - - uid: 7365 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-141.5 parent: 2 - - uid: 7367 + - uid: 636 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-150.5 parent: 2 - - uid: 7401 + - uid: 637 components: - type: Transform pos: 8.5,-162.5 parent: 2 - - uid: 16525 + - uid: 638 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 16526 + - uid: 639 components: - type: Transform pos: -7.5,-162.5 parent: 2 - proto: BarricadeBlock entities: - - uid: 208 + - uid: 640 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 1689 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-71.5 parent: 2 - - uid: 2986 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-376.5 parent: 2 - - uid: 3886 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-201.5 parent: 2 - - uid: 3888 + - uid: 644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-205.5 parent: 2 - - uid: 3952 + - uid: 645 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 7366 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-155.5 parent: 2 - - uid: 8810 + - uid: 647 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12082 + - uid: 648 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 12946 + - uid: 649 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-380.5 parent: 2 - - uid: 16527 + - uid: 650 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 16528 + - uid: 651 components: - type: Transform pos: -10.5,-162.5 parent: 2 - proto: BarricadeDirectional entities: - - uid: 7364 + - uid: 652 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 7402 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad @@ -10911,14 +10710,14 @@ entities: parent: 2 - proto: BarSignRobustaCafe entities: - - uid: 711 + - uid: 654 components: - type: Transform pos: 1.5,-60.5 parent: 2 - proto: BaseComputer entities: - - uid: 9704 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad @@ -10926,254 +10725,254 @@ entities: parent: 2 - proto: BaseSecretDoorAssembly entities: - - uid: 1459 + - uid: 656 components: - type: Transform pos: 4.5,-71.5 parent: 2 - proto: Beaker entities: - - uid: 1403 + - uid: 657 components: - type: Transform pos: 5.582528,-167.40445 parent: 2 - - uid: 1589 + - uid: 658 components: - type: Transform pos: 5.707528,-167.3107 parent: 2 - - uid: 2296 + - uid: 659 components: - type: Transform pos: 1.3710482,-86.542175 parent: 2 - - uid: 2297 + - uid: 660 components: - type: Transform pos: 1.1890888,-86.33679 parent: 2 - - uid: 3906 + - uid: 661 components: - type: Transform pos: -6.721316,-194.7393 parent: 2 - - uid: 3908 + - uid: 662 components: - type: Transform pos: -6.686098,-195.08257 parent: 2 - - uid: 3916 + - uid: 663 components: - type: Transform pos: -4.0606456,-198.2437 parent: 2 - - uid: 3917 + - uid: 664 components: - type: Transform pos: -4.2543435,-198.42853 parent: 2 - - uid: 11686 + - uid: 665 components: - type: Transform pos: 2.6228993,-370.27484 parent: 2 - - uid: 26550 + - uid: 666 components: - type: Transform pos: 2.312565,-370.50742 parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -2.3821619,-168.06873 + parent: 2 - proto: Bed entities: - - uid: 1078 + - uid: 667 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 1406 + - uid: 668 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1686 + - uid: 669 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 1989 + - uid: 670 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 1991 + - uid: 671 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 1995 + - uid: 672 components: - type: Transform pos: -6.5,-121.5 parent: 2 - - uid: 1999 + - uid: 673 components: - type: Transform pos: -6.5,-124.5 parent: 2 - - uid: 2082 + - uid: 674 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2086 + - uid: 675 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2087 + - uid: 676 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2233 + - uid: 677 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2476 - components: - - type: Transform - pos: -2.5,-168.5 - parent: 2 - - uid: 2712 + - uid: 679 components: - type: Transform pos: 6.5,-139.5 parent: 2 - - uid: 2721 + - uid: 680 components: - type: Transform pos: -5.5,-135.5 parent: 2 - - uid: 5873 + - uid: 681 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 7210 + - uid: 682 components: - type: Transform pos: 1.5,-196.5 parent: 2 - - uid: 8345 + - uid: 683 components: - type: Transform pos: 10.5,-250.5 parent: 2 - - uid: 9014 + - uid: 684 components: - type: Transform pos: 4.5,-285.5 parent: 2 - - uid: 9744 + - uid: 685 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 10742 + - uid: 686 components: - type: Transform pos: -4.5,-206.5 parent: 2 - - uid: 11102 + - uid: 687 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11771 + - uid: 688 components: - type: Transform pos: 7.5,-364.5 parent: 2 - - uid: 11772 + - uid: 689 components: - type: Transform pos: 7.5,-367.5 parent: 2 - - uid: 11774 + - uid: 690 components: - type: Transform pos: -6.5,-367.5 parent: 2 - - uid: 11775 + - uid: 691 components: - type: Transform pos: -6.5,-364.5 parent: 2 - - uid: 11787 + - uid: 692 components: - type: Transform pos: -5.5,-372.5 parent: 2 - - uid: 11789 + - uid: 693 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 15748 + - uid: 694 components: - type: Transform pos: -4.5,-200.5 parent: 2 - proto: BedsheetBlack entities: - - uid: 964 + - uid: 695 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 2713 + - uid: 696 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: BedsheetBrown entities: - - uid: 3257 + - uid: 697 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: BedsheetCaptain entities: - - uid: 296 + - uid: 698 components: - type: Transform pos: -0.5,-14.5 parent: 2 - proto: BedsheetCE entities: - - uid: 8441 + - uid: 699 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: BedsheetClown entities: - - uid: 2046 + - uid: 700 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: BedsheetGreen entities: - - uid: 3880 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-200.5 parent: 2 - - uid: 3881 + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad @@ -11181,14 +10980,14 @@ entities: parent: 2 - proto: BedsheetHOP entities: - - uid: 2221 + - uid: 703 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: BedsheetHOS entities: - - uid: 11096 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad @@ -11196,76 +10995,76 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 2462 + - uid: 705 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3683 + - uid: 706 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3684 + - uid: 707 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3688 + - uid: 708 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3689 + - uid: 709 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 11438 + - uid: 710 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: BedsheetMime entities: - - uid: 2025 + - uid: 711 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: BedsheetOrange entities: - - uid: 11779 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11780 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11781 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11782 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11791 + - uid: 716 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-371.5 parent: 2 - - uid: 11792 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad @@ -11273,114 +11072,114 @@ entities: parent: 2 - proto: BedsheetQM entities: - - uid: 9013 + - uid: 718 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: BedsheetRD entities: - - uid: 9824 + - uid: 719 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: BedsheetSpawner entities: - - uid: 2088 + - uid: 720 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2089 + - uid: 721 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2090 + - uid: 722 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2091 + - uid: 723 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 2092 + - uid: 724 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 2093 + - uid: 725 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 2680 + - uid: 726 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: BenchBlueComfy entities: - - uid: 132 + - uid: 727 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 160 + - uid: 728 components: - type: Transform pos: 3.5,-5.5 parent: 2 - - uid: 162 + - uid: 729 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 - - uid: 170 + - uid: 730 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 171 + - uid: 731 components: - type: Transform pos: 4.5,-5.5 parent: 2 - - uid: 172 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 2 - - uid: 173 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 - - uid: 174 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-8.5 parent: 2 - - uid: 14746 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-309.5 parent: 2 - - uid: 14747 + - uid: 736 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-309.5 parent: 2 - - uid: 14748 + - uid: 737 components: - type: Transform rot: 3.141592653589793 rad @@ -11388,19 +11187,19 @@ entities: parent: 2 - proto: BenchColorfulComfy entities: - - uid: 4179 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - - uid: 11419 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-313.5 parent: 2 - - uid: 13351 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad @@ -11408,31 +11207,31 @@ entities: parent: 2 - proto: BenchComfy entities: - - uid: 10574 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-300.5 parent: 2 - - uid: 10575 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-301.5 parent: 2 - - uid: 10576 + - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-302.5 parent: 2 - - uid: 14736 + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-191.5 parent: 2 - - uid: 14737 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad @@ -11440,478 +11239,478 @@ entities: parent: 2 - proto: BenchRedComfy entities: - - uid: 597 + - uid: 746 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 687 + - uid: 747 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 688 + - uid: 748 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 689 + - uid: 749 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 690 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-29.5 parent: 2 - - uid: 691 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 2 - - uid: 692 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-29.5 parent: 2 - - uid: 695 + - uid: 753 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 697 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 - - uid: 699 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 791 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 792 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 805 + - uid: 758 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 825 + - uid: 759 components: - type: Transform pos: 2.5,-42.5 parent: 2 - - uid: 833 + - uid: 760 components: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 2363 + - uid: 761 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 3126 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 3134 + - uid: 763 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-250.5 parent: 2 - - uid: 3489 + - uid: 764 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 3840 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 4197 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-138.5 parent: 2 - - uid: 6845 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-147.5 parent: 2 - - uid: 7231 + - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-146.5 parent: 2 - - uid: 7232 + - uid: 769 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7234 + - uid: 770 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-144.5 parent: 2 - - uid: 7236 + - uid: 771 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7238 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-143.5 parent: 2 - - uid: 7251 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7311 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7314 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-153.5 parent: 2 - - uid: 7316 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7317 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7320 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-151.5 parent: 2 - - uid: 7321 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-151.5 parent: 2 - - uid: 7322 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7324 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-153.5 parent: 2 - - uid: 7325 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 7326 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-152.5 parent: 2 - - uid: 7327 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-151.5 parent: 2 - - uid: 7328 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-151.5 parent: 2 - - uid: 7329 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7331 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-140.5 parent: 2 - - uid: 7332 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-140.5 parent: 2 - - uid: 7333 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-140.5 parent: 2 - - uid: 7336 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-159.5 parent: 2 - - uid: 7337 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-159.5 parent: 2 - - uid: 7338 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-160.5 parent: 2 - - uid: 7339 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-160.5 parent: 2 - - uid: 7340 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-161.5 parent: 2 - - uid: 7341 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-161.5 parent: 2 - - uid: 7342 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-161.5 parent: 2 - - uid: 7343 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-161.5 parent: 2 - - uid: 7344 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-160.5 parent: 2 - - uid: 7345 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-160.5 parent: 2 - - uid: 7346 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 7347 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-159.5 parent: 2 - - uid: 7349 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-165.5 parent: 2 - - uid: 7521 + - uid: 803 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 7522 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-64.5 parent: 2 - - uid: 7921 + - uid: 805 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 7926 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 9431 + - uid: 807 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-68.5 parent: 2 - - uid: 10868 + - uid: 808 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 10932 + - uid: 809 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-332.5 parent: 2 - - uid: 10933 + - uid: 810 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - - uid: 10934 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-329.5 parent: 2 - - uid: 11893 + - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-247.5 parent: 2 - - uid: 14373 + - uid: 813 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 14420 + - uid: 814 components: - type: Transform pos: 14.5,-77.5 parent: 2 - - uid: 14421 + - uid: 815 components: - type: Transform pos: 16.5,-77.5 parent: 2 - - uid: 14422 + - uid: 816 components: - type: Transform pos: 17.5,-77.5 parent: 2 - - uid: 14435 + - uid: 817 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-79.5 parent: 2 - - uid: 14436 + - uid: 818 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-79.5 parent: 2 - - uid: 14438 + - uid: 819 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-83.5 parent: 2 - - uid: 14439 + - uid: 820 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 14440 + - uid: 821 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-84.5 parent: 2 - - uid: 14443 + - uid: 822 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 - - uid: 14446 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-82.5 parent: 2 - - uid: 14449 + - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-82.5 parent: 2 - - uid: 14456 + - uid: 825 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-80.5 parent: 2 - - uid: 14458 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-80.5 parent: 2 - - uid: 15809 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -11919,191 +11718,140 @@ entities: parent: 2 - proto: BlastDoor entities: - - uid: 1749 + - uid: 828 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 1750 + - uid: 829 components: - type: Transform pos: -3.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 2917 + - uid: 830 components: - type: Transform pos: -20.5,-236.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 2972 + - uid: 831 components: - type: Transform pos: -20.5,-237.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 3537 + - uid: 832 components: - type: Transform pos: -20.5,-238.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 9906 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-312.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9908 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9941 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 10001 + - uid: 836 components: - type: Transform pos: -10.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10003 + - uid: 837 components: - type: Transform pos: -10.5,-315.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10004 + - uid: 838 components: - type: Transform pos: -10.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 11201 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-357.5 parent: 2 - - type: DeviceLinkSink - links: - - 11710 - - uid: 11940 + - uid: 840 components: - type: Transform pos: -3.5,-385.5 parent: 2 - - uid: 11943 + - uid: 841 components: - type: Transform pos: -4.5,-385.5 parent: 2 - proto: BlastDoorOpen entities: - - uid: 2222 + - uid: 842 components: - type: Transform pos: -2.5,-114.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2223 + - uid: 843 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2224 + - uid: 844 components: - type: Transform pos: -2.5,-112.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 8236 + - uid: 845 components: - type: Transform pos: -1.5,-253.5 parent: 2 - - uid: 8238 + - uid: 846 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 8549 + - uid: 847 components: - type: Transform pos: -2.5,-331.5 parent: 2 - - uid: 8801 + - uid: 848 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9008 - - uid: 8803 + - uid: 849 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9009 - - uid: 10915 + - uid: 850 components: - type: Transform pos: -2.5,-329.5 parent: 2 - - uid: 13998 + - uid: 851 components: - type: Transform pos: -1.5,-255.5 parent: 2 - - uid: 14025 + - uid: 852 components: - type: Transform pos: -1.5,-254.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 1756 + - uid: 853 components: - type: Transform rot: 1.5707963267948966 rad @@ -12113,154 +11861,154 @@ entities: enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 15271 + - uid: 854 components: - type: Transform pos: 6.380858,-242.27087 parent: 2 - proto: BodyBagFolded entities: - - uid: 2706 + - uid: 855 components: - type: Transform pos: 3.4006777,-137.08098 parent: 2 - - uid: 2707 + - uid: 856 components: - type: Transform pos: 3.6031802,-137.20421 parent: 2 - - uid: 2708 + - uid: 857 components: - type: Transform pos: 3.4711132,-137.28342 parent: 2 - - uid: 2845 + - uid: 858 components: - type: Transform pos: -2.3260214,-174.77829 parent: 2 - - uid: 2930 + - uid: 859 components: - type: Transform pos: -2.5666766,-174.61398 parent: 2 - - uid: 3239 + - uid: 860 components: - type: Transform pos: -2.5608068,-174.98366 parent: 2 - - uid: 3240 + - uid: 861 components: - type: Transform pos: -2.34363,-175.13622 parent: 2 - proto: BookAtmosAirAlarms entities: - - uid: 17059 + - uid: 863 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosDistro entities: - - uid: 17060 + - uid: 864 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosVentsMore entities: - - uid: 17062 + - uid: 865 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosWaste entities: - - uid: 17057 + - uid: 866 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookshelfFilled entities: - - uid: 1759 + - uid: 869 components: - type: Transform pos: -5.5,-146.5 parent: 2 - - uid: 2604 + - uid: 870 components: - type: Transform pos: -5.5,-143.5 parent: 2 - - uid: 2614 + - uid: 871 components: - type: Transform pos: -3.5,-143.5 parent: 2 - - uid: 2615 + - uid: 872 components: - type: Transform pos: -2.5,-143.5 parent: 2 - - uid: 2628 + - uid: 873 components: - type: Transform pos: -2.5,-145.5 parent: 2 - - uid: 2629 + - uid: 874 components: - type: Transform pos: -4.5,-145.5 parent: 2 - - uid: 2630 + - uid: 875 components: - type: Transform pos: -5.5,-145.5 parent: 2 - - uid: 2631 + - uid: 876 components: - type: Transform pos: -2.5,-147.5 parent: 2 - - uid: 2632 + - uid: 877 components: - type: Transform pos: -3.5,-147.5 parent: 2 - - uid: 2633 + - uid: 878 components: - type: Transform pos: -5.5,-147.5 parent: 2 - - uid: 2742 + - uid: 879 components: - type: Transform pos: -5.5,-142.5 parent: 2 - - uid: 4786 + - uid: 880 components: - type: Transform pos: -5.5,-144.5 parent: 2 - - uid: 7551 + - uid: 881 components: - type: Transform pos: -5.5,-148.5 parent: 2 - proto: BoozeDispenser entities: - - uid: 1249 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -12268,55 +12016,55 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 8697 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-251.5 parent: 2 - - uid: 9975 + - uid: 884 components: - type: Transform pos: 7.5,-310.5 parent: 2 - proto: BorgChargerCircuitboard entities: - - uid: 14743 + - uid: 885 components: - type: Transform pos: -5.6778665,-307.2365 parent: 2 - proto: BoxBeaker entities: - - uid: 3141 + - uid: 886 components: - type: Transform pos: 6.935201,-165.38791 parent: 2 - proto: BoxBodyBag entities: - - uid: 3048 + - uid: 887 components: - type: Transform pos: -2.6240926,-174.26779 parent: 2 - proto: BoxCandle entities: - - uid: 14729 + - uid: 888 components: - type: Transform pos: -5.4542284,-189.36801 parent: 2 - proto: BoxDarts entities: - - uid: 13431 + - uid: 889 components: - type: Transform pos: -2.9653907,-32.45716 parent: 2 - proto: BoxFolderBase entities: - - uid: 2773 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad @@ -12324,197 +12072,197 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 2567 + - uid: 891 components: - type: Transform pos: 6.7308598,-6.9109907 parent: 2 - - uid: 11073 + - uid: 892 components: - type: Transform pos: 4.492667,-332.38788 parent: 2 - proto: BoxFolderBlue entities: - - uid: 2781 + - uid: 893 components: - type: Transform pos: 3.4805696,-6.920642 parent: 2 - proto: BoxFolderGreen entities: - - uid: 2744 + - uid: 894 components: - type: Transform pos: -5.3577433,-140.33952 parent: 2 - - uid: 2780 + - uid: 895 components: - type: Transform pos: 2.4827733,-42.50757 parent: 2 - proto: BoxFolderGrey entities: - - uid: 11076 + - uid: 896 components: - type: Transform pos: 5.4435487,-332.5595 parent: 2 - proto: BoxFolderRed entities: - - uid: 750 + - uid: 897 components: - type: Transform pos: -6.554108,-339.5885 parent: 2 - - uid: 2745 + - uid: 898 components: - type: Transform pos: -5.6042686,-140.69159 parent: 2 - - uid: 2777 + - uid: 899 components: - type: Transform pos: 1.1156995,-121.4541 parent: 2 - - uid: 2778 + - uid: 900 components: - type: Transform pos: 1.4750745,-67.40666 parent: 2 - - uid: 11074 + - uid: 901 components: - type: Transform pos: 4.703974,-332.5463 parent: 2 - - uid: 12731 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4252734,-358.4766 parent: 2 - - uid: 12998 + - uid: 903 components: - type: Transform pos: -6.6729684,-339.83936 parent: 2 - proto: BoxFolderWhite entities: - - uid: 11075 + - uid: 904 components: - type: Transform pos: 5.205828,-332.4011 parent: 2 - proto: BoxFolderYellow entities: - - uid: 1075 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4889371,-58.428474 parent: 2 - - uid: 2776 + - uid: 906 components: - type: Transform pos: 1.5844495,-121.53223 parent: 2 - - uid: 4978 + - uid: 907 components: - type: Transform pos: 1.5176499,-251.36285 parent: 2 - - uid: 6638 + - uid: 908 components: - type: Transform pos: 5.4400353,-254.3202 parent: 2 - - uid: 9083 + - uid: 909 components: - type: Transform pos: 4.3809915,-273.23694 parent: 2 - proto: BoxHandcuff entities: - - uid: 10681 + - uid: 910 components: - type: Transform pos: -6.2767687,-339.93176 parent: 2 - proto: BoxLightbulb entities: - - uid: 8905 + - uid: 911 components: - type: Transform pos: 8.347681,-249.4434 parent: 2 - - uid: 8906 + - uid: 912 components: - type: Transform pos: 8.628931,-249.4434 parent: 2 - proto: BoxLightMixed entities: - - uid: 8965 + - uid: 913 components: - type: Transform pos: -13.339703,-245.36317 parent: 2 - proto: BoxMouthSwab entities: - - uid: 10678 + - uid: 914 components: - type: Transform pos: -6.5179734,-193.50864 parent: 2 - proto: BoxSterileMask entities: - - uid: 10708 + - uid: 915 components: - type: Transform pos: -6.124293,-193.22752 parent: 2 - proto: BoxSyringe entities: - - uid: 2331 + - uid: 916 components: - type: Transform pos: -6.1348615,-84.71074 parent: 2 - - uid: 2909 + - uid: 917 components: - type: Transform pos: 1.3851851,-192.22426 parent: 2 - proto: BrbSign entities: - - uid: 2269 + - uid: 918 components: - type: Transform pos: -0.49859565,-122.45183 parent: 2 - proto: BriefcaseBrown entities: - - uid: 14481 + - uid: 919 components: - type: Transform pos: 17.608545,-82.66066 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 10798 + - uid: 920 components: - type: Transform pos: 4.4794602,-328.2291 parent: 2 - proto: BrigTimer entities: - - uid: 11154 + - uid: 921 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11330 + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad @@ -12522,9 +12270,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11261: + 364: - Timer: Open - - uid: 11331 + - uid: 923 components: - type: Transform rot: 1.5707963267948966 rad @@ -12532,9 +12280,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11260: + 363: - Timer: Open - - uid: 11332 + - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad @@ -12542,15 +12290,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11259: + 362: - Timer: Open - - uid: 11439 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11496 + - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad @@ -12558,18992 +12306,18992 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11258: + 361: - Timer: Open - proto: Brutepack entities: - - uid: 3699 + - uid: 927 components: - type: Transform pos: 8.449239,-173.24081 parent: 2 - - uid: 3700 + - uid: 928 components: - type: Transform pos: 8.72658,-177.42598 parent: 2 - proto: Bucket entities: - - uid: 1742 + - uid: 626 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 929 components: - type: Transform pos: -3.7102582,-53.682693 parent: 2 - - uid: 3244 + - uid: 930 components: - type: Transform pos: -1.1669447,-173.19298 parent: 2 - - uid: 12151 + - uid: 931 components: - type: Transform pos: -5.7254634,-38.660492 parent: 2 - - uid: 14479 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14762 + - uid: 933 components: - type: Transform - parent: 14755 + parent: 932 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 26547 + - uid: 936 components: - type: Transform pos: -4.342669,-374.57834 parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 5465 + - uid: 937 components: - type: Transform pos: 1.5,-334.5 parent: 2 - proto: CableApcExtension entities: - - uid: 61 + - uid: 938 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 74 + - uid: 939 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 80 + - uid: 940 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 168 + - uid: 941 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 250 + - uid: 942 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 267 + - uid: 943 components: - type: Transform pos: -4.5,-112.5 parent: 2 - - uid: 377 + - uid: 944 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 627 + - uid: 945 components: - type: Transform pos: -4.5,-109.5 parent: 2 - - uid: 634 + - uid: 946 components: - type: Transform pos: -4.5,-111.5 parent: 2 - - uid: 636 + - uid: 947 components: - type: Transform pos: -4.5,-110.5 parent: 2 - - uid: 652 + - uid: 948 components: - type: Transform pos: 5.5,-268.5 parent: 2 - - uid: 745 + - uid: 949 components: - type: Transform pos: -3.5,-109.5 parent: 2 - - uid: 753 + - uid: 950 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 790 + - uid: 951 components: - type: Transform pos: 7.5,-225.5 parent: 2 - - uid: 827 + - uid: 952 components: - type: Transform pos: 5.5,-220.5 parent: 2 - - uid: 843 + - uid: 953 components: - type: Transform pos: -3.5,-330.5 parent: 2 - - uid: 986 + - uid: 954 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 1006 + - uid: 955 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 1037 + - uid: 956 components: - type: Transform pos: -4.5,-27.5 parent: 2 - - uid: 1125 + - uid: 957 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 1130 + - uid: 958 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 1329 + - uid: 959 components: - type: Transform pos: -5.5,-59.5 parent: 2 - - uid: 1367 + - uid: 960 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 1380 + - uid: 961 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 1384 + - uid: 962 components: - type: Transform pos: -5.5,-60.5 parent: 2 - - uid: 1385 + - uid: 963 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 1401 + - uid: 964 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1468 + - uid: 965 components: - type: Transform pos: 16.5,-240.5 parent: 2 - - uid: 1494 + - uid: 966 components: - type: Transform pos: 18.5,-243.5 parent: 2 - - uid: 1802 + - uid: 967 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 1834 + - uid: 968 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 1837 + - uid: 969 components: - type: Transform pos: 5.5,-221.5 parent: 2 - - uid: 2004 + - uid: 970 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 2059 + - uid: 971 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2060 + - uid: 972 components: - type: Transform pos: 3.5,-62.5 parent: 2 - - uid: 2061 + - uid: 973 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 2063 + - uid: 974 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2065 + - uid: 975 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 2066 + - uid: 976 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 2194 + - uid: 977 components: - type: Transform pos: -9.5,-300.5 parent: 2 - - uid: 2293 + - uid: 978 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 2318 + - uid: 979 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 2323 + - uid: 980 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 2324 + - uid: 981 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 2328 + - uid: 982 components: - type: Transform pos: 1.5,-16.5 parent: 2 - - uid: 2402 + - uid: 983 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 2422 + - uid: 984 components: - type: Transform pos: 3.5,-9.5 parent: 2 - - uid: 2445 + - uid: 985 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 2446 + - uid: 986 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2479 + - uid: 987 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2485 + - uid: 988 components: - type: Transform pos: -19.5,-237.5 parent: 2 - - uid: 2487 + - uid: 989 components: - type: Transform pos: -11.5,-162.5 parent: 2 - - uid: 2505 + - uid: 990 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 2639 + - uid: 991 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 2642 + - uid: 992 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 2644 + - uid: 993 components: - type: Transform pos: -1.5,-125.5 parent: 2 - - uid: 2716 + - uid: 994 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 2727 + - uid: 995 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 2731 + - uid: 996 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 2739 + - uid: 997 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 2743 + - uid: 998 components: - type: Transform pos: 1.5,-121.5 parent: 2 - - uid: 2844 + - uid: 999 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 2858 + - uid: 1000 components: - type: Transform pos: 2.5,-121.5 parent: 2 - - uid: 2876 + - uid: 1001 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 2877 + - uid: 1002 components: - type: Transform pos: -1.5,-121.5 parent: 2 - - uid: 2914 + - uid: 1003 components: - type: Transform pos: -17.5,-237.5 parent: 2 - - uid: 2915 + - uid: 1004 components: - type: Transform pos: -14.5,-238.5 parent: 2 - - uid: 2918 + - uid: 1005 components: - type: Transform pos: -16.5,-237.5 parent: 2 - - uid: 2954 + - uid: 1006 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 2955 + - uid: 1007 components: - type: Transform pos: -14.5,-239.5 parent: 2 - - uid: 2987 + - uid: 1008 components: - type: Transform pos: -1.5,-330.5 parent: 2 - - uid: 3005 + - uid: 1009 components: - type: Transform pos: -0.5,-125.5 parent: 2 - - uid: 3053 + - uid: 1010 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 3077 + - uid: 1011 components: - type: Transform pos: -14.5,-241.5 parent: 2 - - uid: 3104 + - uid: 1012 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 3132 + - uid: 1013 components: - type: Transform pos: -14.5,-242.5 parent: 2 - - uid: 3152 + - uid: 1014 components: - type: Transform pos: -15.5,-237.5 parent: 2 - - uid: 3171 + - uid: 1015 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 3247 + - uid: 1016 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 3254 + - uid: 1017 components: - type: Transform pos: -18.5,-237.5 parent: 2 - - uid: 3396 + - uid: 1018 components: - type: Transform pos: -14.5,-237.5 parent: 2 - - uid: 3487 + - uid: 1019 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 3532 + - uid: 1020 components: - type: Transform pos: -14.5,-240.5 parent: 2 - - uid: 3640 + - uid: 1021 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 3641 + - uid: 1022 components: - type: Transform pos: -8.5,-132.5 parent: 2 - - uid: 3763 + - uid: 1023 components: - type: Transform pos: -21.5,-244.5 parent: 2 - - uid: 3765 + - uid: 1024 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 3904 + - uid: 1025 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 4043 + - uid: 1026 components: - type: Transform pos: -9.5,-301.5 parent: 2 - - uid: 4115 + - uid: 1027 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 4184 + - uid: 1028 components: - type: Transform pos: -4.5,-105.5 parent: 2 - - uid: 4207 + - uid: 1029 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 4208 + - uid: 1030 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 4213 + - uid: 1031 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 4340 + - uid: 1032 components: - type: Transform pos: 3.5,-222.5 parent: 2 - - uid: 4341 + - uid: 1033 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 4587 + - uid: 1034 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 4612 + - uid: 1035 components: - type: Transform pos: -21.5,-245.5 parent: 2 - - uid: 4638 + - uid: 1036 components: - type: Transform pos: 5.5,-143.5 parent: 2 - - uid: 4658 + - uid: 1037 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 4682 + - uid: 1038 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 4752 + - uid: 1039 components: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 4753 + - uid: 1040 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4754 + - uid: 1041 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 4873 + - uid: 1042 components: - type: Transform pos: 9.5,-243.5 parent: 2 - - uid: 4900 + - uid: 1043 components: - type: Transform pos: 5.5,-219.5 parent: 2 - - uid: 4901 + - uid: 1044 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4941 + - uid: 1045 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 4980 + - uid: 1046 components: - type: Transform pos: 5.5,-226.5 parent: 2 - - uid: 4994 + - uid: 1047 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 5043 + - uid: 1048 components: - type: Transform pos: 5.5,-106.5 parent: 2 - - uid: 5211 + - uid: 1049 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 1050 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 5294 + - uid: 1051 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 5295 + - uid: 1052 components: - type: Transform pos: 4.5,-222.5 parent: 2 - - uid: 5296 + - uid: 1053 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 5322 + - uid: 1054 components: - type: Transform pos: 5.5,-104.5 parent: 2 - - uid: 5327 + - uid: 1055 components: - type: Transform pos: 7.5,-224.5 parent: 2 - - uid: 5329 + - uid: 1056 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 5330 + - uid: 1057 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 5331 + - uid: 1058 components: - type: Transform pos: 3.5,-247.5 parent: 2 - - uid: 5400 + - uid: 1059 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5415 + - uid: 1060 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 5426 + - uid: 1061 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5427 + - uid: 1062 components: - type: Transform pos: 3.5,-220.5 parent: 2 - - uid: 5430 + - uid: 1063 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 5431 + - uid: 1064 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 5432 + - uid: 1065 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 5433 + - uid: 1066 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 5470 + - uid: 1067 components: - type: Transform pos: -20.5,-243.5 parent: 2 - - uid: 5474 + - uid: 1068 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 5477 + - uid: 1069 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 5478 + - uid: 1070 components: - type: Transform pos: -19.5,-243.5 parent: 2 - - uid: 5480 + - uid: 1071 components: - type: Transform pos: -17.5,-243.5 parent: 2 - - uid: 5484 + - uid: 1072 components: - type: Transform pos: -4.5,-113.5 parent: 2 - - uid: 5485 + - uid: 1073 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 5505 + - uid: 1074 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 5655 + - uid: 1075 components: - type: Transform pos: -8.5,-167.5 parent: 2 - - uid: 5696 + - uid: 1076 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5697 + - uid: 1077 components: - type: Transform pos: -2.5,-12.5 parent: 2 - - uid: 5698 + - uid: 1078 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5701 + - uid: 1079 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5702 + - uid: 1080 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5703 + - uid: 1081 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5704 + - uid: 1082 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5705 + - uid: 1083 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5706 + - uid: 1084 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5707 + - uid: 1085 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5708 + - uid: 1086 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5709 + - uid: 1087 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 5710 + - uid: 1088 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 5711 + - uid: 1089 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5712 + - uid: 1090 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5713 + - uid: 1091 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5714 + - uid: 1092 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5715 + - uid: 1093 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5716 + - uid: 1094 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5717 + - uid: 1095 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5718 + - uid: 1096 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5719 + - uid: 1097 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5720 + - uid: 1098 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 5721 + - uid: 1099 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 5722 + - uid: 1100 components: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 5723 + - uid: 1101 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 5724 + - uid: 1102 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 5725 + - uid: 1103 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5726 + - uid: 1104 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 5727 + - uid: 1105 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 5728 + - uid: 1106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 5729 + - uid: 1107 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 5730 + - uid: 1108 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 5731 + - uid: 1109 components: - type: Transform pos: 2.5,-16.5 parent: 2 - - uid: 5732 + - uid: 1110 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 5733 + - uid: 1111 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 5734 + - uid: 1112 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 5735 + - uid: 1113 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 5736 + - uid: 1114 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 5737 + - uid: 1115 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 5739 + - uid: 1116 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5740 + - uid: 1117 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5742 + - uid: 1118 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5744 + - uid: 1119 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 5745 + - uid: 1120 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 5746 + - uid: 1121 components: - type: Transform pos: -3.5,-14.5 parent: 2 - - uid: 5747 + - uid: 1122 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 5748 + - uid: 1123 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 5751 + - uid: 1124 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 5752 + - uid: 1125 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 5753 + - uid: 1126 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 5754 + - uid: 1127 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5755 + - uid: 1128 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5756 + - uid: 1129 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5757 + - uid: 1130 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5758 + - uid: 1131 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5759 + - uid: 1132 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5760 + - uid: 1133 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5762 + - uid: 1134 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5763 + - uid: 1135 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5764 + - uid: 1136 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5765 + - uid: 1137 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5766 + - uid: 1138 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5767 + - uid: 1139 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5769 + - uid: 1140 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 5770 + - uid: 1141 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 5771 + - uid: 1142 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 5772 + - uid: 1143 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5773 + - uid: 1144 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 5774 + - uid: 1145 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5775 + - uid: 1146 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 5776 + - uid: 1147 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5777 + - uid: 1148 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5778 + - uid: 1149 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5779 + - uid: 1150 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5780 + - uid: 1151 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5782 + - uid: 1152 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 5783 + - uid: 1153 components: - type: Transform pos: 3.5,-221.5 parent: 2 - - uid: 5821 + - uid: 1154 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5822 + - uid: 1155 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5823 + - uid: 1156 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5824 + - uid: 1157 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5825 + - uid: 1158 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5826 + - uid: 1159 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5827 + - uid: 1160 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5828 + - uid: 1161 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5829 + - uid: 1162 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 5830 + - uid: 1163 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 5831 + - uid: 1164 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 5832 + - uid: 1165 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 5833 + - uid: 1166 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 5834 + - uid: 1167 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 5835 + - uid: 1168 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 5836 + - uid: 1169 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 5837 + - uid: 1170 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 5838 + - uid: 1171 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 5840 + - uid: 1172 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 5841 + - uid: 1173 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 5843 + - uid: 1174 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 5845 + - uid: 1175 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 5846 + - uid: 1176 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 5847 + - uid: 1177 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 5848 + - uid: 1178 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 5849 + - uid: 1179 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 5850 + - uid: 1180 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 5853 + - uid: 1181 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5854 + - uid: 1182 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5855 + - uid: 1183 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5856 + - uid: 1184 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5857 + - uid: 1185 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5858 + - uid: 1186 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5859 + - uid: 1187 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5860 + - uid: 1188 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 5861 + - uid: 1189 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 5862 + - uid: 1190 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 5863 + - uid: 1191 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5865 + - uid: 1192 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 5866 + - uid: 1193 components: - type: Transform pos: 2.5,-43.5 parent: 2 - - uid: 5867 + - uid: 1194 components: - type: Transform pos: 3.5,-43.5 parent: 2 - - uid: 5868 + - uid: 1195 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 5869 + - uid: 1196 components: - type: Transform pos: 5.5,-43.5 parent: 2 - - uid: 5870 + - uid: 1197 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 5871 + - uid: 1198 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5874 + - uid: 1199 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 5875 + - uid: 1200 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 5876 + - uid: 1201 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 5877 + - uid: 1202 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 5878 + - uid: 1203 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 5879 + - uid: 1204 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 5880 + - uid: 1205 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 5882 + - uid: 1206 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 5883 + - uid: 1207 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 5885 + - uid: 1208 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 5886 + - uid: 1209 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5887 + - uid: 1210 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5888 + - uid: 1211 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 5889 + - uid: 1212 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 5890 + - uid: 1213 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5891 + - uid: 1214 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5892 + - uid: 1215 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5893 + - uid: 1216 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5895 + - uid: 1217 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5896 + - uid: 1218 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 5897 + - uid: 1219 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 5898 + - uid: 1220 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 5899 + - uid: 1221 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 5900 + - uid: 1222 components: - type: Transform pos: 4.5,-34.5 parent: 2 - - uid: 5901 + - uid: 1223 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 5902 + - uid: 1224 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 5903 + - uid: 1225 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 5904 + - uid: 1226 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 5905 + - uid: 1227 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 5906 + - uid: 1228 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 5907 + - uid: 1229 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 5908 + - uid: 1230 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5909 + - uid: 1231 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 5910 + - uid: 1232 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 5911 + - uid: 1233 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 5912 + - uid: 1234 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 5913 + - uid: 1235 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 5914 + - uid: 1236 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 5915 + - uid: 1237 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 5916 + - uid: 1238 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 5917 + - uid: 1239 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 5918 + - uid: 1240 components: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 5919 + - uid: 1241 components: - type: Transform pos: 5.5,-20.5 parent: 2 - - uid: 5920 + - uid: 1242 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 5921 + - uid: 1243 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 5922 + - uid: 1244 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 5923 + - uid: 1245 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 5924 + - uid: 1246 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 5927 + - uid: 1247 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 5928 + - uid: 1248 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 5929 + - uid: 1249 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 5930 + - uid: 1250 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 5931 + - uid: 1251 components: - type: Transform pos: -4.5,-32.5 parent: 2 - - uid: 5932 + - uid: 1252 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 5933 + - uid: 1253 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 5934 + - uid: 1254 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 5935 + - uid: 1255 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 5936 + - uid: 1256 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 5937 + - uid: 1257 components: - type: Transform pos: 3.5,-32.5 parent: 2 - - uid: 5938 + - uid: 1258 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 5939 + - uid: 1259 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5940 + - uid: 1260 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5941 + - uid: 1261 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5942 + - uid: 1262 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5943 + - uid: 1263 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5944 + - uid: 1264 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5945 + - uid: 1265 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5946 + - uid: 1266 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5947 + - uid: 1267 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5948 + - uid: 1268 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5949 + - uid: 1269 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5950 + - uid: 1270 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5951 + - uid: 1271 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5952 + - uid: 1272 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5953 + - uid: 1273 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5954 + - uid: 1274 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 5955 + - uid: 1275 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5956 + - uid: 1276 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5957 + - uid: 1277 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 5958 + - uid: 1278 components: - type: Transform pos: -6.5,-43.5 parent: 2 - - uid: 5964 + - uid: 1279 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 5966 + - uid: 1280 components: - type: Transform pos: 5.5,-44.5 parent: 2 - - uid: 5967 + - uid: 1281 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 5968 + - uid: 1282 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 6017 + - uid: 1283 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 6018 + - uid: 1284 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 6020 + - uid: 1285 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 6021 + - uid: 1286 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 6022 + - uid: 1287 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 6023 + - uid: 1288 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 6024 + - uid: 1289 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 6025 + - uid: 1290 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 6026 + - uid: 1291 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 6027 + - uid: 1292 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 6028 + - uid: 1293 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 6029 + - uid: 1294 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6030 + - uid: 1295 components: - type: Transform pos: -1.5,-58.5 parent: 2 - - uid: 6031 + - uid: 1296 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 6032 + - uid: 1297 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 6033 + - uid: 1298 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 6034 + - uid: 1299 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 6035 + - uid: 1300 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 6037 + - uid: 1301 components: - type: Transform pos: -1.5,-63.5 parent: 2 - - uid: 6039 + - uid: 1302 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 6040 + - uid: 1303 components: - type: Transform pos: -1.5,-61.5 parent: 2 - - uid: 6042 + - uid: 1304 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 6043 + - uid: 1305 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 6044 + - uid: 1306 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 6045 + - uid: 1307 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 6047 + - uid: 1308 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 6048 + - uid: 1309 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 6049 + - uid: 1310 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 6050 + - uid: 1311 components: - type: Transform pos: -5.5,-58.5 parent: 2 - - uid: 6051 + - uid: 1312 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 6053 + - uid: 1313 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 6054 + - uid: 1314 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 6055 + - uid: 1315 components: - type: Transform pos: -4.5,-54.5 parent: 2 - - uid: 6056 + - uid: 1316 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 6057 + - uid: 1317 components: - type: Transform pos: -2.5,-54.5 parent: 2 - - uid: 6058 + - uid: 1318 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 6059 + - uid: 1319 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 6060 + - uid: 1320 components: - type: Transform pos: -5.5,-65.5 parent: 2 - - uid: 6063 + - uid: 1321 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6064 + - uid: 1322 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 6065 + - uid: 1323 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6066 + - uid: 1324 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6067 + - uid: 1325 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6070 + - uid: 1326 components: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 6071 + - uid: 1327 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 6072 + - uid: 1328 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 6073 + - uid: 1329 components: - type: Transform pos: -5.5,-67.5 parent: 2 - - uid: 6074 + - uid: 1330 components: - type: Transform pos: -4.5,-67.5 parent: 2 - - uid: 6075 + - uid: 1331 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 6076 + - uid: 1332 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 6077 + - uid: 1333 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 6078 + - uid: 1334 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 6079 + - uid: 1335 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 6080 + - uid: 1336 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 6081 + - uid: 1337 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 6082 + - uid: 1338 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 6083 + - uid: 1339 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 6084 + - uid: 1340 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 6085 + - uid: 1341 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 6086 + - uid: 1342 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 6087 + - uid: 1343 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 6088 + - uid: 1344 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 6089 + - uid: 1345 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 6090 + - uid: 1346 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 6091 + - uid: 1347 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 6092 + - uid: 1348 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 6093 + - uid: 1349 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 6094 + - uid: 1350 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 6095 + - uid: 1351 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 6096 + - uid: 1352 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 6097 + - uid: 1353 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 6098 + - uid: 1354 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 6099 + - uid: 1355 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 6100 + - uid: 1356 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 6101 + - uid: 1357 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 6102 + - uid: 1358 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 6103 + - uid: 1359 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 6104 + - uid: 1360 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 6105 + - uid: 1361 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 6106 + - uid: 1362 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 6107 + - uid: 1363 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 6108 + - uid: 1364 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 6109 + - uid: 1365 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 6110 + - uid: 1366 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 6111 + - uid: 1367 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 6112 + - uid: 1368 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 6113 + - uid: 1369 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 6114 + - uid: 1370 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 6115 + - uid: 1371 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 6116 + - uid: 1372 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 6117 + - uid: 1373 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 6118 + - uid: 1374 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 6119 + - uid: 1375 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 6120 + - uid: 1376 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 6121 + - uid: 1377 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 6122 + - uid: 1378 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 6123 + - uid: 1379 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 6124 + - uid: 1380 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 6125 + - uid: 1381 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 6126 + - uid: 1382 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 6127 + - uid: 1383 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 6128 + - uid: 1384 components: - type: Transform pos: -2.5,-72.5 parent: 2 - - uid: 6163 + - uid: 1385 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6164 + - uid: 1386 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6165 + - uid: 1387 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6166 + - uid: 1388 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6167 + - uid: 1389 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6168 + - uid: 1390 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6169 + - uid: 1391 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6170 + - uid: 1392 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 6171 + - uid: 1393 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 6172 + - uid: 1394 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 6173 + - uid: 1395 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 6174 + - uid: 1396 components: - type: Transform pos: -8.5,-86.5 parent: 2 - - uid: 6175 + - uid: 1397 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 6176 + - uid: 1398 components: - type: Transform pos: -7.5,-84.5 parent: 2 - - uid: 6177 + - uid: 1399 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 6178 + - uid: 1400 components: - type: Transform pos: -7.5,-88.5 parent: 2 - - uid: 6179 + - uid: 1401 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 6180 + - uid: 1402 components: - type: Transform pos: -5.5,-88.5 parent: 2 - - uid: 6181 + - uid: 1403 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 6182 + - uid: 1404 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 6183 + - uid: 1405 components: - type: Transform pos: -9.5,-86.5 parent: 2 - - uid: 6184 + - uid: 1406 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 6185 + - uid: 1407 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 6187 + - uid: 1408 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 6189 + - uid: 1409 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6190 + - uid: 1410 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6191 + - uid: 1411 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6192 + - uid: 1412 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6193 + - uid: 1413 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6194 + - uid: 1414 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6196 + - uid: 1415 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 6197 + - uid: 1416 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 6199 + - uid: 1417 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 6200 + - uid: 1418 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 6201 + - uid: 1419 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6204 + - uid: 1420 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 6206 + - uid: 1421 components: - type: Transform pos: -1.5,-86.5 parent: 2 - - uid: 6207 + - uid: 1422 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 6208 + - uid: 1423 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 6209 + - uid: 1424 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 6210 + - uid: 1425 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 6211 + - uid: 1426 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 6212 + - uid: 1427 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 6213 + - uid: 1428 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 6214 + - uid: 1429 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 6215 + - uid: 1430 components: - type: Transform pos: 1.5,-91.5 parent: 2 - - uid: 6216 + - uid: 1431 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 6217 + - uid: 1432 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 6218 + - uid: 1433 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6219 + - uid: 1434 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6220 + - uid: 1435 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6221 + - uid: 1436 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6222 + - uid: 1437 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6223 + - uid: 1438 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6224 + - uid: 1439 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6225 + - uid: 1440 components: - type: Transform pos: -4.5,-97.5 parent: 2 - - uid: 6226 + - uid: 1441 components: - type: Transform pos: -5.5,-97.5 parent: 2 - - uid: 6227 + - uid: 1442 components: - type: Transform pos: -4.5,-96.5 parent: 2 - - uid: 6228 + - uid: 1443 components: - type: Transform pos: -2.5,-96.5 parent: 2 - - uid: 6229 + - uid: 1444 components: - type: Transform pos: -4.5,-99.5 parent: 2 - - uid: 6230 + - uid: 1445 components: - type: Transform pos: -4.5,-98.5 parent: 2 - - uid: 6232 + - uid: 1446 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6233 + - uid: 1447 components: - type: Transform pos: 0.5,-96.5 parent: 2 - - uid: 6234 + - uid: 1448 components: - type: Transform pos: 0.5,-95.5 parent: 2 - - uid: 6235 + - uid: 1449 components: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 6236 + - uid: 1450 components: - type: Transform pos: 2.5,-95.5 parent: 2 - - uid: 6237 + - uid: 1451 components: - type: Transform pos: 4.5,-96.5 parent: 2 - - uid: 6238 + - uid: 1452 components: - type: Transform pos: 4.5,-95.5 parent: 2 - - uid: 6240 + - uid: 1453 components: - type: Transform pos: 6.5,-96.5 parent: 2 - - uid: 6241 + - uid: 1454 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 6242 + - uid: 1455 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 6243 + - uid: 1456 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 6244 + - uid: 1457 components: - type: Transform pos: 6.5,-92.5 parent: 2 - - uid: 6245 + - uid: 1458 components: - type: Transform pos: 6.5,-91.5 parent: 2 - - uid: 6246 + - uid: 1459 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 6247 + - uid: 1460 components: - type: Transform pos: 6.5,-89.5 parent: 2 - - uid: 6248 + - uid: 1461 components: - type: Transform pos: 6.5,-88.5 parent: 2 - - uid: 6249 + - uid: 1462 components: - type: Transform pos: 6.5,-87.5 parent: 2 - - uid: 6250 + - uid: 1463 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 6251 + - uid: 1464 components: - type: Transform pos: 6.5,-85.5 parent: 2 - - uid: 6252 + - uid: 1465 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 6253 + - uid: 1466 components: - type: Transform pos: 6.5,-83.5 parent: 2 - - uid: 6254 + - uid: 1467 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 6256 + - uid: 1468 components: - type: Transform pos: 4.5,-94.5 parent: 2 - - uid: 6257 + - uid: 1469 components: - type: Transform pos: 4.5,-93.5 parent: 2 - - uid: 6258 + - uid: 1470 components: - type: Transform pos: 4.5,-92.5 parent: 2 - - uid: 6259 + - uid: 1471 components: - type: Transform pos: 4.5,-91.5 parent: 2 - - uid: 6260 + - uid: 1472 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 6261 + - uid: 1473 components: - type: Transform pos: 4.5,-89.5 parent: 2 - - uid: 6262 + - uid: 1474 components: - type: Transform pos: 4.5,-88.5 parent: 2 - - uid: 6263 + - uid: 1475 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 6264 - components: - - type: Transform - pos: 4.5,-86.5 - parent: 2 - - uid: 6265 + - uid: 1476 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 6266 + - uid: 1477 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 6267 + - uid: 1478 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 6268 + - uid: 1479 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 6269 + - uid: 1480 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 6270 + - uid: 1481 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 6271 + - uid: 1482 components: - type: Transform pos: 3.5,-81.5 parent: 2 - - uid: 6272 + - uid: 1483 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 6273 + - uid: 1484 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 6275 + - uid: 1485 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 6276 + - uid: 1486 components: - type: Transform pos: 1.5,-100.5 parent: 2 - - uid: 6277 + - uid: 1487 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 6278 + - uid: 1488 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 6279 + - uid: 1489 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 6280 + - uid: 1490 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 6281 + - uid: 1491 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 6282 + - uid: 1492 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 6303 + - uid: 1493 components: - type: Transform pos: 5.5,-161.5 parent: 2 - - uid: 6308 + - uid: 1494 components: - type: Transform pos: -4.5,-114.5 parent: 2 - - uid: 6309 + - uid: 1495 components: - type: Transform pos: -4.5,-115.5 parent: 2 - - uid: 6310 + - uid: 1496 components: - type: Transform pos: -4.5,-116.5 parent: 2 - - uid: 6311 + - uid: 1497 components: - type: Transform pos: -4.5,-117.5 parent: 2 - - uid: 6312 + - uid: 1498 components: - type: Transform pos: -4.5,-118.5 parent: 2 - - uid: 6313 + - uid: 1499 components: - type: Transform pos: -4.5,-119.5 parent: 2 - - uid: 6314 + - uid: 1500 components: - type: Transform pos: -4.5,-120.5 parent: 2 - - uid: 6315 + - uid: 1501 components: - type: Transform pos: -4.5,-121.5 parent: 2 - - uid: 6316 + - uid: 1502 components: - type: Transform pos: -4.5,-122.5 parent: 2 - - uid: 6317 + - uid: 1503 components: - type: Transform pos: -4.5,-123.5 parent: 2 - - uid: 6318 + - uid: 1504 components: - type: Transform pos: -4.5,-124.5 parent: 2 - - uid: 6319 + - uid: 1505 components: - type: Transform pos: -4.5,-125.5 parent: 2 - - uid: 6320 + - uid: 1506 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 6321 + - uid: 1507 components: - type: Transform pos: -6.5,-125.5 parent: 2 - - uid: 6322 + - uid: 1508 components: - type: Transform pos: -7.5,-125.5 parent: 2 - - uid: 6323 + - uid: 1509 components: - type: Transform pos: -8.5,-125.5 parent: 2 - - uid: 6324 + - uid: 1510 components: - type: Transform pos: -5.5,-122.5 parent: 2 - - uid: 6325 + - uid: 1511 components: - type: Transform pos: -6.5,-122.5 parent: 2 - - uid: 6326 + - uid: 1512 components: - type: Transform pos: -7.5,-122.5 parent: 2 - - uid: 6327 + - uid: 1513 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 6328 + - uid: 1514 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - uid: 6329 + - uid: 1515 components: - type: Transform pos: -6.5,-119.5 parent: 2 - - uid: 6330 + - uid: 1516 components: - type: Transform pos: -7.5,-119.5 parent: 2 - - uid: 6331 + - uid: 1517 components: - type: Transform pos: -8.5,-119.5 parent: 2 - - uid: 6332 + - uid: 1518 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - uid: 6333 + - uid: 1519 components: - type: Transform pos: -6.5,-116.5 parent: 2 - - uid: 6334 + - uid: 1520 components: - type: Transform pos: -7.5,-116.5 parent: 2 - - uid: 6335 + - uid: 1521 components: - type: Transform pos: -8.5,-116.5 parent: 2 - - uid: 6336 + - uid: 1522 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - uid: 6337 + - uid: 1523 components: - type: Transform pos: -6.5,-113.5 parent: 2 - - uid: 6338 + - uid: 1524 components: - type: Transform pos: -7.5,-113.5 parent: 2 - - uid: 6339 + - uid: 1525 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 6340 + - uid: 1526 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 6341 + - uid: 1527 components: - type: Transform pos: -6.5,-110.5 parent: 2 - - uid: 6342 + - uid: 1528 components: - type: Transform pos: -7.5,-110.5 parent: 2 - - uid: 6343 + - uid: 1529 components: - type: Transform pos: -7.5,-109.5 parent: 2 - - uid: 6344 + - uid: 1530 components: - type: Transform pos: -7.5,-108.5 parent: 2 - - uid: 6345 + - uid: 1531 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 6347 + - uid: 1532 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 6349 + - uid: 1533 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 6350 + - uid: 1534 components: - type: Transform pos: -4.5,-107.5 parent: 2 - - uid: 6351 + - uid: 1535 components: - type: Transform pos: -4.5,-106.5 parent: 2 - - uid: 6352 + - uid: 1536 components: - type: Transform pos: -8.5,-110.5 parent: 2 - - uid: 6353 + - uid: 1537 components: - type: Transform pos: -8.5,-107.5 parent: 2 - - uid: 6354 + - uid: 1538 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 6355 + - uid: 1539 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - uid: 6356 + - uid: 1540 components: - type: Transform pos: -1.5,-113.5 parent: 2 - - uid: 6357 + - uid: 1541 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 6358 + - uid: 1542 components: - type: Transform pos: -0.5,-114.5 parent: 2 - - uid: 6360 + - uid: 1543 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 6362 + - uid: 1544 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 6363 + - uid: 1545 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6364 + - uid: 1546 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6365 + - uid: 1547 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 6366 + - uid: 1548 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 6367 + - uid: 1549 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 6368 + - uid: 1550 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 6369 + - uid: 1551 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 6370 + - uid: 1552 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 6371 + - uid: 1553 components: - type: Transform pos: -0.5,-119.5 parent: 2 - - uid: 6372 + - uid: 1554 components: - type: Transform pos: 1.5,-119.5 parent: 2 - - uid: 6373 + - uid: 1555 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 6374 + - uid: 1556 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 6375 + - uid: 1557 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 6376 + - uid: 1558 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 6377 + - uid: 1559 components: - type: Transform pos: -2.5,-125.5 parent: 2 - - uid: 6378 + - uid: 1560 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 6379 + - uid: 1561 components: - type: Transform pos: 1.5,-125.5 parent: 2 - - uid: 6380 + - uid: 1562 components: - type: Transform pos: 2.5,-125.5 parent: 2 - - uid: 6381 + - uid: 1563 components: - type: Transform pos: 3.5,-125.5 parent: 2 - - uid: 6382 + - uid: 1564 components: - type: Transform pos: 4.5,-125.5 parent: 2 - - uid: 6383 + - uid: 1565 components: - type: Transform pos: 5.5,-125.5 parent: 2 - - uid: 6384 + - uid: 1566 components: - type: Transform pos: 6.5,-125.5 parent: 2 - - uid: 6385 + - uid: 1567 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 6386 + - uid: 1568 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 6387 + - uid: 1569 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6388 + - uid: 1570 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 6391 + - uid: 1571 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 6395 + - uid: 1572 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 6396 + - uid: 1573 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 6398 + - uid: 1574 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 6399 + - uid: 1575 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 6400 + - uid: 1576 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 6401 + - uid: 1577 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6402 + - uid: 1578 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6403 + - uid: 1579 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6404 + - uid: 1580 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6405 + - uid: 1581 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 6406 + - uid: 1582 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 6407 + - uid: 1583 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 6408 + - uid: 1584 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 6409 + - uid: 1585 components: - type: Transform pos: 5.5,-107.5 parent: 2 - - uid: 6410 + - uid: 1586 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6411 + - uid: 1587 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 6412 + - uid: 1588 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 6413 + - uid: 1589 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 6414 + - uid: 1590 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 6415 + - uid: 1591 components: - type: Transform pos: -0.5,-106.5 parent: 2 - - uid: 6416 + - uid: 1592 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 6417 + - uid: 1593 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 6418 + - uid: 1594 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 6419 + - uid: 1595 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 6420 + - uid: 1596 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 6421 + - uid: 1597 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 6422 + - uid: 1598 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 6423 + - uid: 1599 components: - type: Transform pos: 2.5,-124.5 parent: 2 - - uid: 6424 + - uid: 1600 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 6425 + - uid: 1601 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 6426 + - uid: 1602 components: - type: Transform pos: 5.5,-122.5 parent: 2 - - uid: 6427 + - uid: 1603 components: - type: Transform pos: 5.5,-121.5 parent: 2 - - uid: 6428 + - uid: 1604 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 6429 + - uid: 1605 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 6430 + - uid: 1606 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 6431 + - uid: 1607 components: - type: Transform pos: -0.5,-127.5 parent: 2 - - uid: 6432 + - uid: 1608 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 6433 + - uid: 1609 components: - type: Transform pos: 1.5,-127.5 parent: 2 - - uid: 6434 + - uid: 1610 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 6435 + - uid: 1611 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 6436 + - uid: 1612 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 6437 + - uid: 1613 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 6438 + - uid: 1614 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 6439 + - uid: 1615 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6440 + - uid: 1616 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 6441 + - uid: 1617 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 6442 + - uid: 1618 components: - type: Transform pos: -0.5,-133.5 parent: 2 - - uid: 6443 + - uid: 1619 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 6494 + - uid: 1620 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6495 + - uid: 1621 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6496 + - uid: 1622 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 6497 + - uid: 1623 components: - type: Transform pos: -5.5,-136.5 parent: 2 - - uid: 6498 + - uid: 1624 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 6499 + - uid: 1625 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 6500 + - uid: 1626 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6501 + - uid: 1627 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6502 + - uid: 1628 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6503 + - uid: 1629 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6504 + - uid: 1630 components: - type: Transform pos: -4.5,-141.5 parent: 2 - - uid: 6505 + - uid: 1631 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 6506 + - uid: 1632 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 6507 + - uid: 1633 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 6508 + - uid: 1634 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 6510 + - uid: 1635 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 6512 + - uid: 1636 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 6513 + - uid: 1637 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 6514 + - uid: 1638 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 6515 + - uid: 1639 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 6516 + - uid: 1640 components: - type: Transform pos: -5.5,-139.5 parent: 2 - - uid: 6517 + - uid: 1641 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 6519 + - uid: 1642 components: - type: Transform pos: -5.5,-141.5 parent: 2 - - uid: 6520 + - uid: 1643 components: - type: Transform pos: -6.5,-141.5 parent: 2 - - uid: 6521 + - uid: 1644 components: - type: Transform pos: -6.5,-139.5 parent: 2 - - uid: 6522 + - uid: 1645 components: - type: Transform pos: -3.5,-139.5 parent: 2 - - uid: 6523 + - uid: 1646 components: - type: Transform pos: -2.5,-139.5 parent: 2 - - uid: 6524 + - uid: 1647 components: - type: Transform pos: -3.5,-141.5 parent: 2 - - uid: 6525 + - uid: 1648 components: - type: Transform pos: -2.5,-141.5 parent: 2 - - uid: 6526 + - uid: 1649 components: - type: Transform pos: -1.5,-141.5 parent: 2 - - uid: 6527 + - uid: 1650 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 6528 + - uid: 1651 components: - type: Transform pos: -0.5,-139.5 parent: 2 - - uid: 6529 + - uid: 1652 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6530 + - uid: 1653 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6531 + - uid: 1654 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6532 + - uid: 1655 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6533 + - uid: 1656 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6534 + - uid: 1657 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6535 + - uid: 1658 components: - type: Transform pos: 5.5,-138.5 parent: 2 - - uid: 6536 + - uid: 1659 components: - type: Transform pos: 4.5,-138.5 parent: 2 - - uid: 6537 + - uid: 1660 components: - type: Transform pos: 3.5,-138.5 parent: 2 - - uid: 6538 + - uid: 1661 components: - type: Transform pos: 4.5,-139.5 parent: 2 - - uid: 6539 + - uid: 1662 components: - type: Transform pos: 4.5,-140.5 parent: 2 - - uid: 6540 + - uid: 1663 components: - type: Transform pos: 4.5,-141.5 parent: 2 - - uid: 6541 + - uid: 1664 components: - type: Transform pos: 4.5,-142.5 parent: 2 - - uid: 6542 + - uid: 1665 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 6543 + - uid: 1666 components: - type: Transform pos: 4.5,-144.5 parent: 2 - - uid: 6544 + - uid: 1667 components: - type: Transform pos: 4.5,-145.5 parent: 2 - - uid: 6545 + - uid: 1668 components: - type: Transform pos: 4.5,-146.5 parent: 2 - - uid: 6546 + - uid: 1669 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 6547 + - uid: 1670 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 6548 + - uid: 1671 components: - type: Transform pos: 3.5,-143.5 parent: 2 - - uid: 6550 + - uid: 1672 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 6554 + - uid: 1673 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6555 + - uid: 1674 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6556 + - uid: 1675 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6557 + - uid: 1676 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6558 + - uid: 1677 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6559 + - uid: 1678 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6560 + - uid: 1679 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6561 + - uid: 1680 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6562 + - uid: 1681 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6563 + - uid: 1682 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6564 + - uid: 1683 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6565 + - uid: 1684 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6566 + - uid: 1685 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6567 + - uid: 1686 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6568 + - uid: 1687 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6569 + - uid: 1688 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6571 + - uid: 1689 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 6572 + - uid: 1690 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 6574 + - uid: 1691 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 6575 + - uid: 1692 components: - type: Transform pos: 5.5,-153.5 parent: 2 - - uid: 6576 + - uid: 1693 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 6577 + - uid: 1694 components: - type: Transform pos: 5.5,-154.5 parent: 2 - - uid: 6578 + - uid: 1695 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 6579 + - uid: 1696 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 6580 + - uid: 1697 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 6581 + - uid: 1698 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 6582 + - uid: 1699 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 6583 + - uid: 1700 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 6584 + - uid: 1701 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 6585 + - uid: 1702 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 6586 + - uid: 1703 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 6587 + - uid: 1704 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 6588 + - uid: 1705 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 6590 + - uid: 1706 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 6591 + - uid: 1707 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 6592 + - uid: 1708 components: - type: Transform pos: -2.5,-151.5 parent: 2 - - uid: 6593 + - uid: 1709 components: - type: Transform pos: -3.5,-151.5 parent: 2 - - uid: 6594 + - uid: 1710 components: - type: Transform pos: -4.5,-151.5 parent: 2 - - uid: 6595 + - uid: 1711 components: - type: Transform pos: -4.5,-152.5 parent: 2 - - uid: 6596 + - uid: 1712 components: - type: Transform pos: -4.5,-153.5 parent: 2 - - uid: 6597 + - uid: 1713 components: - type: Transform pos: -4.5,-154.5 parent: 2 - - uid: 6598 + - uid: 1714 components: - type: Transform pos: -4.5,-150.5 parent: 2 - - uid: 6599 + - uid: 1715 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - uid: 6600 + - uid: 1716 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - uid: 6601 + - uid: 1717 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 6602 + - uid: 1718 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 6603 + - uid: 1719 components: - type: Transform pos: -0.5,-141.5 parent: 2 - - uid: 6604 + - uid: 1720 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 6605 + - uid: 1721 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 6606 + - uid: 1722 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 6607 + - uid: 1723 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 6608 + - uid: 1724 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 6609 + - uid: 1725 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 6610 + - uid: 1726 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 6611 + - uid: 1727 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 6617 + - uid: 1728 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 6633 + - uid: 1729 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 6634 + - uid: 1730 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 6635 + - uid: 1731 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 6648 + - uid: 1732 components: - type: Transform pos: 17.5,-242.5 parent: 2 - - uid: 6649 + - uid: 1733 components: - type: Transform pos: 17.5,-241.5 parent: 2 - - uid: 6655 + - uid: 1734 components: - type: Transform pos: 10.5,-243.5 parent: 2 - - uid: 6656 + - uid: 1735 components: - type: Transform pos: 11.5,-243.5 parent: 2 - - uid: 6658 + - uid: 1736 components: - type: Transform pos: 17.5,-248.5 parent: 2 - - uid: 6672 + - uid: 1737 components: - type: Transform pos: -11.5,-167.5 parent: 2 - - uid: 6711 + - uid: 1738 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 6713 + - uid: 1739 components: - type: Transform pos: -12.5,-162.5 parent: 2 - - uid: 6746 + - uid: 1740 components: - type: Transform pos: -9.5,-162.5 parent: 2 - - uid: 6747 + - uid: 1741 components: - type: Transform pos: -10.5,-162.5 parent: 2 - - uid: 6861 + - uid: 1742 components: - type: Transform pos: 5.5,-105.5 parent: 2 - - uid: 6874 + - uid: 1743 components: - type: Transform pos: -5.5,-308.5 parent: 2 - - uid: 6875 + - uid: 1744 components: - type: Transform pos: -6.5,-308.5 parent: 2 - - uid: 6909 + - uid: 1745 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 6943 + - uid: 1746 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6944 + - uid: 1747 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6945 + - uid: 1748 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6946 + - uid: 1749 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 6947 + - uid: 1750 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 6948 + - uid: 1751 components: - type: Transform pos: 3.5,-162.5 parent: 2 - - uid: 6949 + - uid: 1752 components: - type: Transform pos: 4.5,-162.5 parent: 2 - - uid: 6950 + - uid: 1753 components: - type: Transform pos: 5.5,-162.5 parent: 2 - - uid: 6951 + - uid: 1754 components: - type: Transform pos: 6.5,-162.5 parent: 2 - - uid: 6952 + - uid: 1755 components: - type: Transform pos: 6.5,-163.5 parent: 2 - - uid: 6954 + - uid: 1756 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6955 + - uid: 1757 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6956 + - uid: 1758 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6957 + - uid: 1759 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6958 + - uid: 1760 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 6959 + - uid: 1761 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 6965 + - uid: 1762 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 6966 + - uid: 1763 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 6967 + - uid: 1764 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 6968 + - uid: 1765 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6969 + - uid: 1766 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 6970 + - uid: 1767 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 6971 + - uid: 1768 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 6972 + - uid: 1769 components: - type: Transform pos: -1.5,-174.5 parent: 2 - - uid: 6973 + - uid: 1770 components: - type: Transform pos: -1.5,-173.5 parent: 2 - - uid: 6974 + - uid: 1771 components: - type: Transform pos: -2.5,-173.5 parent: 2 - - uid: 6975 + - uid: 1772 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 6976 + - uid: 1773 components: - type: Transform pos: -4.5,-173.5 parent: 2 - - uid: 6977 + - uid: 1774 components: - type: Transform pos: -1.5,-175.5 parent: 2 - - uid: 6978 + - uid: 1775 components: - type: Transform pos: -1.5,-176.5 parent: 2 - - uid: 6979 + - uid: 1776 components: - type: Transform pos: -2.5,-176.5 parent: 2 - - uid: 6980 + - uid: 1777 components: - type: Transform pos: -3.5,-176.5 parent: 2 - - uid: 6981 + - uid: 1778 components: - type: Transform pos: -4.5,-176.5 parent: 2 - - uid: 6982 + - uid: 1779 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 6983 + - uid: 1780 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6984 + - uid: 1781 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 6985 + - uid: 1782 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 6986 + - uid: 1783 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 6987 + - uid: 1784 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 6988 + - uid: 1785 components: - type: Transform pos: -4.5,-180.5 parent: 2 - - uid: 6989 + - uid: 1786 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 6990 + - uid: 1787 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 6991 + - uid: 1788 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 6992 + - uid: 1789 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 6993 + - uid: 1790 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 6994 + - uid: 1791 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 6995 + - uid: 1792 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 6996 + - uid: 1793 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 6997 + - uid: 1794 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6998 + - uid: 1795 components: - type: Transform pos: -0.5,-165.5 parent: 2 - - uid: 6999 + - uid: 1796 components: - type: Transform pos: -1.5,-165.5 parent: 2 - - uid: 7000 + - uid: 1797 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 7003 + - uid: 1798 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 7004 + - uid: 1799 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 7005 + - uid: 1800 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 7006 + - uid: 1801 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 7007 + - uid: 1802 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 7008 + - uid: 1803 components: - type: Transform pos: -0.5,-169.5 parent: 2 - - uid: 7009 + - uid: 1804 components: - type: Transform pos: -1.5,-169.5 parent: 2 - - uid: 7010 + - uid: 1805 components: - type: Transform pos: -2.5,-169.5 parent: 2 - - uid: 7011 + - uid: 1806 components: - type: Transform pos: -3.5,-169.5 parent: 2 - - uid: 7012 + - uid: 1807 components: - type: Transform pos: 2.5,-167.5 parent: 2 - - uid: 7013 + - uid: 1808 components: - type: Transform pos: 3.5,-167.5 parent: 2 - - uid: 7014 + - uid: 1809 components: - type: Transform pos: 3.5,-168.5 parent: 2 - - uid: 7015 + - uid: 1810 components: - type: Transform pos: 4.5,-168.5 parent: 2 - - uid: 7016 + - uid: 1811 components: - type: Transform pos: 5.5,-168.5 parent: 2 - - uid: 7017 + - uid: 1812 components: - type: Transform pos: 6.5,-168.5 parent: 2 - - uid: 7018 + - uid: 1813 components: - type: Transform pos: 6.5,-166.5 parent: 2 - - uid: 7019 + - uid: 1814 components: - type: Transform pos: 6.5,-167.5 parent: 2 - - uid: 7020 + - uid: 1815 components: - type: Transform pos: 5.5,-166.5 parent: 2 - - uid: 7021 + - uid: 1816 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 7022 + - uid: 1817 components: - type: Transform pos: 3.5,-166.5 parent: 2 - - uid: 7023 + - uid: 1818 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 7024 + - uid: 1819 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 7025 + - uid: 1820 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 7026 + - uid: 1821 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 7027 + - uid: 1822 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 7028 + - uid: 1823 components: - type: Transform pos: 3.5,-175.5 parent: 2 - - uid: 7029 + - uid: 1824 components: - type: Transform pos: 4.5,-175.5 parent: 2 - - uid: 7030 + - uid: 1825 components: - type: Transform pos: 5.5,-175.5 parent: 2 - - uid: 7031 + - uid: 1826 components: - type: Transform pos: 6.5,-175.5 parent: 2 - - uid: 7032 + - uid: 1827 components: - type: Transform pos: 7.5,-175.5 parent: 2 - - uid: 7033 + - uid: 1828 components: - type: Transform pos: 7.5,-174.5 parent: 2 - - uid: 7034 + - uid: 1829 components: - type: Transform pos: 7.5,-173.5 parent: 2 - - uid: 7035 + - uid: 1830 components: - type: Transform pos: 7.5,-172.5 parent: 2 - - uid: 7036 + - uid: 1831 components: - type: Transform pos: 6.5,-172.5 parent: 2 - - uid: 7037 + - uid: 1832 components: - type: Transform pos: 5.5,-172.5 parent: 2 - - uid: 7038 + - uid: 1833 components: - type: Transform pos: 4.5,-172.5 parent: 2 - - uid: 7039 + - uid: 1834 components: - type: Transform pos: 4.5,-173.5 parent: 2 - - uid: 7040 + - uid: 1835 components: - type: Transform pos: 4.5,-174.5 parent: 2 - - uid: 7041 + - uid: 1836 components: - type: Transform pos: 7.5,-176.5 parent: 2 - - uid: 7042 + - uid: 1837 components: - type: Transform pos: 7.5,-177.5 parent: 2 - - uid: 7043 + - uid: 1838 components: - type: Transform pos: 7.5,-178.5 parent: 2 - - uid: 7044 + - uid: 1839 components: - type: Transform pos: 5.5,-176.5 parent: 2 - - uid: 7045 + - uid: 1840 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 7046 + - uid: 1841 components: - type: Transform pos: 5.5,-178.5 parent: 2 - - uid: 7047 + - uid: 1842 components: - type: Transform pos: 5.5,-179.5 parent: 2 - - uid: 7048 + - uid: 1843 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 7049 + - uid: 1844 components: - type: Transform pos: -4.5,-162.5 parent: 2 - - uid: 7050 + - uid: 1845 components: - type: Transform pos: -4.5,-161.5 parent: 2 - - uid: 7051 + - uid: 1846 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 7052 + - uid: 1847 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 7053 + - uid: 1848 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 7054 + - uid: 1849 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 7055 + - uid: 1850 components: - type: Transform pos: -4.5,-181.5 parent: 2 - - uid: 7057 + - uid: 1851 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 7058 + - uid: 1852 components: - type: Transform pos: 6.5,-169.5 parent: 2 - - uid: 7059 + - uid: 1853 components: - type: Transform pos: 6.5,-165.5 parent: 2 - - uid: 7091 + - uid: 1854 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7092 + - uid: 1855 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 7093 + - uid: 1856 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 7094 + - uid: 1857 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 7095 + - uid: 1858 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 7096 + - uid: 1859 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 7097 + - uid: 1860 components: - type: Transform pos: -0.5,-189.5 parent: 2 - - uid: 7098 + - uid: 1861 components: - type: Transform pos: -1.5,-189.5 parent: 2 - - uid: 7099 + - uid: 1862 components: - type: Transform pos: -2.5,-189.5 parent: 2 - - uid: 7100 + - uid: 1863 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 7101 + - uid: 1864 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 7102 + - uid: 1865 components: - type: Transform pos: 3.5,-188.5 parent: 2 - - uid: 7103 + - uid: 1866 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 7104 + - uid: 1867 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7105 + - uid: 1868 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 7106 + - uid: 1869 components: - type: Transform pos: 6.5,-190.5 parent: 2 - - uid: 7107 + - uid: 1870 components: - type: Transform pos: 6.5,-191.5 parent: 2 - - uid: 7108 + - uid: 1871 components: - type: Transform pos: 6.5,-192.5 parent: 2 - - uid: 7109 + - uid: 1872 components: - type: Transform pos: 6.5,-193.5 parent: 2 - - uid: 7110 + - uid: 1873 components: - type: Transform pos: 6.5,-194.5 parent: 2 - - uid: 7111 + - uid: 1874 components: - type: Transform pos: 6.5,-195.5 parent: 2 - - uid: 7112 + - uid: 1875 components: - type: Transform pos: 6.5,-196.5 parent: 2 - - uid: 7113 + - uid: 1876 components: - type: Transform pos: 6.5,-197.5 parent: 2 - - uid: 7114 + - uid: 1877 components: - type: Transform pos: 6.5,-198.5 parent: 2 - - uid: 7115 + - uid: 1878 components: - type: Transform pos: 6.5,-199.5 parent: 2 - - uid: 7116 + - uid: 1879 components: - type: Transform pos: 6.5,-200.5 parent: 2 - - uid: 7117 + - uid: 1880 components: - type: Transform pos: 6.5,-201.5 parent: 2 - - uid: 7118 + - uid: 1881 components: - type: Transform pos: 6.5,-202.5 parent: 2 - - uid: 7119 + - uid: 1882 components: - type: Transform pos: 6.5,-203.5 parent: 2 - - uid: 7120 + - uid: 1883 components: - type: Transform pos: 6.5,-204.5 parent: 2 - - uid: 7121 + - uid: 1884 components: - type: Transform pos: 6.5,-205.5 parent: 2 - - uid: 7122 + - uid: 1885 components: - type: Transform pos: 6.5,-206.5 parent: 2 - - uid: 7123 + - uid: 1886 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 7124 + - uid: 1887 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 7125 + - uid: 1888 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 7126 + - uid: 1889 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 7127 + - uid: 1890 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 7128 + - uid: 1891 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 7129 + - uid: 1892 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 7130 + - uid: 1893 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 7131 + - uid: 1894 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 7132 + - uid: 1895 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7133 + - uid: 1896 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7134 + - uid: 1897 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7135 + - uid: 1898 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7136 + - uid: 1899 components: - type: Transform pos: 2.5,-197.5 parent: 2 - - uid: 7137 + - uid: 1900 components: - type: Transform pos: 2.5,-196.5 parent: 2 - - uid: 7138 + - uid: 1901 components: - type: Transform pos: 2.5,-195.5 parent: 2 - - uid: 7139 + - uid: 1902 components: - type: Transform pos: 2.5,-194.5 parent: 2 - - uid: 7140 + - uid: 1903 components: - type: Transform pos: 2.5,-193.5 parent: 2 - - uid: 7141 + - uid: 1904 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 7142 + - uid: 1905 components: - type: Transform pos: 0.5,-193.5 parent: 2 - - uid: 7143 + - uid: 1906 components: - type: Transform pos: 2.5,-199.5 parent: 2 - - uid: 7144 + - uid: 1907 components: - type: Transform pos: 2.5,-200.5 parent: 2 - - uid: 7145 + - uid: 1908 components: - type: Transform pos: 2.5,-201.5 parent: 2 - - uid: 7146 + - uid: 1909 components: - type: Transform pos: 2.5,-202.5 parent: 2 - - uid: 7147 + - uid: 1910 components: - type: Transform pos: 1.5,-202.5 parent: 2 - - uid: 7148 + - uid: 1911 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 7149 + - uid: 1912 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 7150 + - uid: 1913 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7151 + - uid: 1914 components: - type: Transform pos: 0.5,-199.5 parent: 2 - - uid: 7152 + - uid: 1915 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7153 + - uid: 1916 components: - type: Transform pos: 0.5,-197.5 parent: 2 - - uid: 7154 + - uid: 1917 components: - type: Transform pos: 1.5,-197.5 parent: 2 - - uid: 7155 + - uid: 1918 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7156 + - uid: 1919 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7157 + - uid: 1920 components: - type: Transform pos: -2.5,-204.5 parent: 2 - - uid: 7158 + - uid: 1921 components: - type: Transform pos: -2.5,-205.5 parent: 2 - - uid: 7159 + - uid: 1922 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 7160 + - uid: 1923 components: - type: Transform pos: -4.5,-205.5 parent: 2 - - uid: 7161 + - uid: 1924 components: - type: Transform pos: -5.5,-205.5 parent: 2 - - uid: 7162 + - uid: 1925 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7163 + - uid: 1926 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7164 + - uid: 1927 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 7165 + - uid: 1928 components: - type: Transform pos: -4.5,-201.5 parent: 2 - - uid: 7166 + - uid: 1929 components: - type: Transform pos: -5.5,-201.5 parent: 2 - - uid: 7167 + - uid: 1930 components: - type: Transform pos: -2.5,-206.5 parent: 2 - - uid: 7168 + - uid: 1931 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7169 + - uid: 1932 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7170 + - uid: 1933 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7171 + - uid: 1934 components: - type: Transform pos: -2.5,-197.5 parent: 2 - - uid: 7172 + - uid: 1935 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 7173 + - uid: 1936 components: - type: Transform pos: -2.5,-195.5 parent: 2 - - uid: 7174 + - uid: 1937 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 7175 + - uid: 1938 components: - type: Transform pos: -3.5,-194.5 parent: 2 - - uid: 7176 + - uid: 1939 components: - type: Transform pos: -4.5,-194.5 parent: 2 - - uid: 7177 + - uid: 1940 components: - type: Transform pos: -5.5,-194.5 parent: 2 - - uid: 7178 + - uid: 1941 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 7179 + - uid: 1942 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 7180 + - uid: 1943 components: - type: Transform pos: -6.5,-196.5 parent: 2 - - uid: 7181 + - uid: 1944 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 7182 + - uid: 1945 components: - type: Transform pos: -6.5,-198.5 parent: 2 - - uid: 7183 + - uid: 1946 components: - type: Transform pos: -5.5,-198.5 parent: 2 - - uid: 7184 + - uid: 1947 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 7185 + - uid: 1948 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 7186 + - uid: 1949 components: - type: Transform pos: -3.5,-193.5 parent: 2 - - uid: 7187 + - uid: 1950 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 7188 + - uid: 1951 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 7215 + - uid: 1952 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 7218 + - uid: 1953 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 7219 + - uid: 1954 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 7220 + - uid: 1955 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 7221 + - uid: 1956 components: - type: Transform pos: 1.5,-181.5 parent: 2 - - uid: 7222 + - uid: 1957 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 7223 + - uid: 1958 components: - type: Transform pos: -0.5,-181.5 parent: 2 - - uid: 7224 + - uid: 1959 components: - type: Transform pos: -0.5,-187.5 parent: 2 - - uid: 7225 + - uid: 1960 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 7226 + - uid: 1961 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 7227 + - uid: 1962 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 7228 + - uid: 1963 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 7229 + - uid: 1964 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 7230 + - uid: 1965 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 7423 + - uid: 1966 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 7438 + - uid: 1967 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 7443 + - uid: 1968 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 7444 + - uid: 1969 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7445 + - uid: 1970 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7457 + - uid: 1971 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 7458 + - uid: 1972 components: - type: Transform pos: 15.5,-248.5 parent: 2 - - uid: 7459 + - uid: 1973 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 7462 + - uid: 1974 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7463 + - uid: 1975 components: - type: Transform pos: 8.5,-243.5 parent: 2 - - uid: 7477 + - uid: 1976 components: - type: Transform pos: 5.5,-180.5 parent: 2 - - uid: 7509 + - uid: 1977 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 7557 + - uid: 1978 components: - type: Transform pos: 1.5,-208.5 parent: 2 - - uid: 7560 + - uid: 1979 components: - type: Transform pos: -0.5,-208.5 parent: 2 - - uid: 7562 + - uid: 1980 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 7592 + - uid: 1981 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7593 + - uid: 1982 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7594 + - uid: 1983 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7595 + - uid: 1984 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 7596 + - uid: 1985 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 7597 + - uid: 1986 components: - type: Transform pos: -3.5,-226.5 parent: 2 - - uid: 7598 + - uid: 1987 components: - type: Transform pos: -4.5,-226.5 parent: 2 - - uid: 7599 + - uid: 1988 components: - type: Transform pos: -5.5,-226.5 parent: 2 - - uid: 7600 + - uid: 1989 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 7601 + - uid: 1990 components: - type: Transform pos: -6.5,-227.5 parent: 2 - - uid: 7602 + - uid: 1991 components: - type: Transform pos: -6.5,-228.5 parent: 2 - - uid: 7603 + - uid: 1992 components: - type: Transform pos: -6.5,-229.5 parent: 2 - - uid: 7604 + - uid: 1993 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 7605 + - uid: 1994 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 7625 + - uid: 1995 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7626 + - uid: 1996 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7627 + - uid: 1997 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 7628 + - uid: 1998 components: - type: Transform pos: 1.5,-230.5 parent: 2 - - uid: 7629 + - uid: 1999 components: - type: Transform pos: 2.5,-230.5 parent: 2 - - uid: 7630 + - uid: 2000 components: - type: Transform pos: 3.5,-230.5 parent: 2 - - uid: 7631 + - uid: 2001 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 7632 + - uid: 2002 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 7633 + - uid: 2003 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 7634 + - uid: 2004 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 7635 + - uid: 2005 components: - type: Transform pos: 4.5,-226.5 parent: 2 - - uid: 7636 + - uid: 2006 components: - type: Transform pos: 6.5,-226.5 parent: 2 - - uid: 7637 + - uid: 2007 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 7639 + - uid: 2008 components: - type: Transform pos: 7.5,-227.5 parent: 2 - - uid: 7640 + - uid: 2009 components: - type: Transform pos: 7.5,-228.5 parent: 2 - - uid: 7641 + - uid: 2010 components: - type: Transform pos: 7.5,-229.5 parent: 2 - - uid: 7642 + - uid: 2011 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 7643 + - uid: 2012 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 7645 + - uid: 2013 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7646 + - uid: 2014 components: - type: Transform pos: -0.5,-219.5 parent: 2 - - uid: 7647 + - uid: 2015 components: - type: Transform pos: -1.5,-219.5 parent: 2 - - uid: 7648 + - uid: 2016 components: - type: Transform pos: -2.5,-219.5 parent: 2 - - uid: 7649 + - uid: 2017 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 7650 + - uid: 2018 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 7651 + - uid: 2019 components: - type: Transform pos: -3.5,-223.5 parent: 2 - - uid: 7652 + - uid: 2020 components: - type: Transform pos: -4.5,-223.5 parent: 2 - - uid: 7653 + - uid: 2021 components: - type: Transform pos: -5.5,-223.5 parent: 2 - - uid: 7654 + - uid: 2022 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 7655 + - uid: 2023 components: - type: Transform pos: -6.5,-222.5 parent: 2 - - uid: 7656 + - uid: 2024 components: - type: Transform pos: -6.5,-221.5 parent: 2 - - uid: 7657 + - uid: 2025 components: - type: Transform pos: -6.5,-220.5 parent: 2 - - uid: 7658 + - uid: 2026 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 7659 + - uid: 2027 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 7660 + - uid: 2028 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 7661 + - uid: 2029 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 7662 + - uid: 2030 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 7663 + - uid: 2031 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 7664 + - uid: 2032 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 7665 + - uid: 2033 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 7666 + - uid: 2034 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 7669 + - uid: 2035 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 7670 + - uid: 2036 components: - type: Transform pos: 7.5,-222.5 parent: 2 - - uid: 7671 + - uid: 2037 components: - type: Transform pos: 7.5,-221.5 parent: 2 - - uid: 7672 + - uid: 2038 components: - type: Transform pos: 7.5,-220.5 parent: 2 - - uid: 7673 + - uid: 2039 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 7674 + - uid: 2040 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 7675 + - uid: 2041 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 7676 + - uid: 2042 components: - type: Transform pos: -0.5,-214.5 parent: 2 - - uid: 7678 + - uid: 2043 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 7680 + - uid: 2044 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 7681 + - uid: 2045 components: - type: Transform pos: -0.5,-235.5 parent: 2 - - uid: 7682 + - uid: 2046 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 7683 + - uid: 2047 components: - type: Transform pos: 1.5,-235.5 parent: 2 - - uid: 7684 + - uid: 2048 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 7686 + - uid: 2049 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 7687 + - uid: 2050 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 7688 + - uid: 2051 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 7689 + - uid: 2052 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 7690 + - uid: 2053 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 7699 + - uid: 2054 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7700 + - uid: 2055 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7701 + - uid: 2056 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7702 + - uid: 2057 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7711 + - uid: 2058 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7712 + - uid: 2059 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7713 + - uid: 2060 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7714 + - uid: 2061 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7716 + - uid: 2062 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 7718 + - uid: 2063 components: - type: Transform pos: -2.5,-231.5 parent: 2 - - uid: 7775 + - uid: 2064 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 7778 + - uid: 2065 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 7814 + - uid: 2066 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 7842 + - uid: 2067 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 7919 + - uid: 2068 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 7920 + - uid: 2069 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 7925 + - uid: 2070 components: - type: Transform pos: 5.5,-289.5 parent: 2 - - uid: 7930 + - uid: 2071 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 7931 + - uid: 2072 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 7932 + - uid: 2073 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 7938 + - uid: 2074 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 7940 + - uid: 2075 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7974 + - uid: 2076 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 7983 + - uid: 2077 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 7985 + - uid: 2078 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 7986 + - uid: 2079 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 7987 + - uid: 2080 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 7988 + - uid: 2081 components: - type: Transform pos: -0.5,-241.5 parent: 2 - - uid: 7989 + - uid: 2082 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 7990 + - uid: 2083 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 7994 + - uid: 2084 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 8030 + - uid: 2085 components: - type: Transform pos: 6.5,-336.5 parent: 2 - - uid: 8045 + - uid: 2086 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 8057 + - uid: 2087 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 8072 + - uid: 2088 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 8073 + - uid: 2089 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 8074 + - uid: 2090 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8075 + - uid: 2091 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 8076 + - uid: 2092 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 8078 + - uid: 2093 components: - type: Transform pos: -0.5,-262.5 parent: 2 - - uid: 8080 + - uid: 2094 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 8083 + - uid: 2095 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 8095 + - uid: 2096 components: - type: Transform pos: 5.5,-288.5 parent: 2 - - uid: 8097 + - uid: 2097 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 8112 + - uid: 2098 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 8167 + - uid: 2099 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 8168 + - uid: 2100 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 8171 + - uid: 2101 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 8172 + - uid: 2102 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 8173 + - uid: 2103 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 8188 + - uid: 2104 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 8194 + - uid: 2105 components: - type: Transform pos: 5.5,-337.5 parent: 2 - - uid: 8216 + - uid: 2106 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 8227 + - uid: 2107 components: - type: Transform pos: 16.5,-254.5 parent: 2 - - uid: 8228 + - uid: 2108 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 8262 + - uid: 2109 components: - type: Transform pos: 13.5,-158.5 parent: 2 - - uid: 8263 + - uid: 2110 components: - type: Transform pos: 13.5,-159.5 parent: 2 - - uid: 8264 + - uid: 2111 components: - type: Transform pos: 13.5,-160.5 parent: 2 - - uid: 8265 + - uid: 2112 components: - type: Transform pos: 13.5,-161.5 parent: 2 - - uid: 8266 + - uid: 2113 components: - type: Transform pos: 13.5,-162.5 parent: 2 - - uid: 8268 + - uid: 2114 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8269 + - uid: 2115 components: - type: Transform pos: 16.5,-159.5 parent: 2 - - uid: 8270 + - uid: 2116 components: - type: Transform pos: 17.5,-159.5 parent: 2 - - uid: 8271 + - uid: 2117 components: - type: Transform pos: 5.5,-336.5 parent: 2 - - uid: 8272 + - uid: 2118 components: - type: Transform pos: 17.5,-160.5 parent: 2 - - uid: 8273 + - uid: 2119 components: - type: Transform pos: 17.5,-161.5 parent: 2 - - uid: 8274 + - uid: 2120 components: - type: Transform pos: 17.5,-162.5 parent: 2 - - uid: 8276 + - uid: 2121 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 8278 + - uid: 2122 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8279 + - uid: 2123 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8280 + - uid: 2124 components: - type: Transform pos: 17.5,-139.5 parent: 2 - - uid: 8281 + - uid: 2125 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 8282 + - uid: 2126 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 8283 + - uid: 2127 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 8284 + - uid: 2128 components: - type: Transform pos: 17.5,-143.5 parent: 2 - - uid: 8285 + - uid: 2129 components: - type: Transform pos: 17.5,-144.5 parent: 2 - - uid: 8286 + - uid: 2130 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 8287 + - uid: 2131 components: - type: Transform pos: 17.5,-146.5 parent: 2 - - uid: 8288 + - uid: 2132 components: - type: Transform pos: 17.5,-147.5 parent: 2 - - uid: 8289 + - uid: 2133 components: - type: Transform pos: 17.5,-148.5 parent: 2 - - uid: 8290 + - uid: 2134 components: - type: Transform pos: 17.5,-149.5 parent: 2 - - uid: 8291 + - uid: 2135 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 8292 + - uid: 2136 components: - type: Transform pos: 17.5,-151.5 parent: 2 - - uid: 8293 + - uid: 2137 components: - type: Transform pos: 17.5,-152.5 parent: 2 - - uid: 8294 + - uid: 2138 components: - type: Transform pos: 17.5,-153.5 parent: 2 - - uid: 8295 + - uid: 2139 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8296 + - uid: 2140 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8297 + - uid: 2141 components: - type: Transform pos: 14.5,-138.5 parent: 2 - - uid: 8298 + - uid: 2142 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 8299 + - uid: 2143 components: - type: Transform pos: 13.5,-139.5 parent: 2 - - uid: 8300 + - uid: 2144 components: - type: Transform pos: 13.5,-140.5 parent: 2 - - uid: 8301 + - uid: 2145 components: - type: Transform pos: 13.5,-141.5 parent: 2 - - uid: 8302 + - uid: 2146 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 8303 + - uid: 2147 components: - type: Transform pos: 13.5,-143.5 parent: 2 - - uid: 8304 + - uid: 2148 components: - type: Transform pos: 13.5,-144.5 parent: 2 - - uid: 8306 + - uid: 2149 components: - type: Transform pos: 13.5,-146.5 parent: 2 - - uid: 8307 + - uid: 2150 components: - type: Transform pos: 13.5,-147.5 parent: 2 - - uid: 8308 + - uid: 2151 components: - type: Transform pos: 13.5,-148.5 parent: 2 - - uid: 8309 + - uid: 2152 components: - type: Transform pos: 13.5,-149.5 parent: 2 - - uid: 8310 + - uid: 2153 components: - type: Transform pos: 13.5,-150.5 parent: 2 - - uid: 8311 + - uid: 2154 components: - type: Transform pos: 13.5,-151.5 parent: 2 - - uid: 8312 + - uid: 2155 components: - type: Transform pos: 13.5,-152.5 parent: 2 - - uid: 8313 + - uid: 2156 components: - type: Transform pos: 13.5,-153.5 parent: 2 - - uid: 8320 + - uid: 2157 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 8349 + - uid: 2158 components: - type: Transform pos: -13.5,-162.5 parent: 2 - - uid: 8351 + - uid: 2159 components: - type: Transform pos: 16.5,-255.5 parent: 2 - - uid: 8352 + - uid: 2160 components: - type: Transform pos: 17.5,-255.5 parent: 2 - - uid: 8356 + - uid: 2161 components: - type: Transform pos: 18.5,-255.5 parent: 2 - - uid: 8359 + - uid: 2162 components: - type: Transform pos: 12.5,-260.5 parent: 2 - - uid: 8360 + - uid: 2163 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 8361 + - uid: 2164 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 8362 + - uid: 2165 components: - type: Transform pos: 16.5,-243.5 parent: 2 - - uid: 8363 + - uid: 2166 components: - type: Transform pos: 18.5,-260.5 parent: 2 - - uid: 8364 + - uid: 2167 components: - type: Transform pos: 15.5,-243.5 parent: 2 - - uid: 8367 + - uid: 2168 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 8368 + - uid: 2169 components: - type: Transform pos: 18.5,-248.5 parent: 2 - - uid: 8369 + - uid: 2170 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8371 + - uid: 2171 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 8377 + - uid: 2172 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 8382 + - uid: 2173 components: - type: Transform pos: 17.5,-260.5 parent: 2 - - uid: 8383 + - uid: 2174 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 8386 + - uid: 2175 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 8389 + - uid: 2176 components: - type: Transform pos: 7.5,-257.5 parent: 2 - - uid: 8390 + - uid: 2177 components: - type: Transform pos: 7.5,-258.5 parent: 2 - - uid: 8392 + - uid: 2178 components: - type: Transform pos: -13.5,-167.5 parent: 2 - - uid: 8393 + - uid: 2179 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 8418 + - uid: 2180 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 8423 + - uid: 2181 components: - type: Transform pos: 7.5,-259.5 parent: 2 - - uid: 8427 + - uid: 2182 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 8434 + - uid: 2183 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8437 + - uid: 2184 components: - type: Transform pos: 6.5,-243.5 parent: 2 - - uid: 8445 + - uid: 2185 components: - type: Transform pos: -9.5,-299.5 parent: 2 - - uid: 8446 + - uid: 2186 components: - type: Transform pos: 8.5,-260.5 parent: 2 - - uid: 8447 + - uid: 2187 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 8451 + - uid: 2188 components: - type: Transform pos: 16.5,-264.5 parent: 2 - - uid: 8457 + - uid: 2189 components: - type: Transform pos: 5.5,-261.5 parent: 2 - - uid: 8462 + - uid: 2190 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 8464 + - uid: 2191 components: - type: Transform pos: 0.5,-362.5 parent: 2 - - uid: 8465 + - uid: 2192 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 8500 + - uid: 2193 components: - type: Transform pos: 17.5,-243.5 parent: 2 - - uid: 8505 + - uid: 2194 components: - type: Transform pos: 18.5,-247.5 parent: 2 - - uid: 8506 + - uid: 2195 components: - type: Transform pos: 18.5,-240.5 parent: 2 - - uid: 8517 + - uid: 2196 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 8555 + - uid: 2197 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8566 + - uid: 2198 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 8618 + - uid: 2199 components: - type: Transform pos: 3.5,-249.5 parent: 2 - - uid: 8645 + - uid: 2200 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 8646 + - uid: 2201 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 8647 + - uid: 2202 components: - type: Transform pos: 17.5,-240.5 parent: 2 - - uid: 8660 + - uid: 2203 components: - type: Transform pos: 14.5,-260.5 parent: 2 - - uid: 8668 + - uid: 2204 components: - type: Transform pos: 16.5,-250.5 parent: 2 - - uid: 8670 + - uid: 2205 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 8684 + - uid: 2206 components: - type: Transform pos: 15.5,-245.5 parent: 2 - - uid: 8696 + - uid: 2207 components: - type: Transform pos: 16.5,-260.5 parent: 2 - - uid: 8708 + - uid: 2208 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 8730 + - uid: 2209 components: - type: Transform pos: 13.5,-260.5 parent: 2 - - uid: 8731 + - uid: 2210 components: - type: Transform pos: 18.5,-256.5 parent: 2 - - uid: 8764 + - uid: 2211 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 8786 + - uid: 2212 components: - type: Transform pos: 16.5,-256.5 parent: 2 - - uid: 8787 + - uid: 2213 components: - type: Transform pos: 11.5,-260.5 parent: 2 - - uid: 8791 + - uid: 2214 components: - type: Transform pos: 18.5,-258.5 parent: 2 - - uid: 8792 + - uid: 2215 components: - type: Transform pos: 18.5,-246.5 parent: 2 - - uid: 8793 + - uid: 2216 components: - type: Transform pos: 16.5,-245.5 parent: 2 - - uid: 8799 + - uid: 2217 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8804 + - uid: 2218 components: - type: Transform pos: 18.5,-259.5 parent: 2 - - uid: 8805 + - uid: 2219 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 8829 + - uid: 2220 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8843 + - uid: 2221 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 8895 + - uid: 2222 components: - type: Transform pos: 18.5,-245.5 parent: 2 - - uid: 8897 + - uid: 2223 components: - type: Transform pos: 18.5,-264.5 parent: 2 - - uid: 8916 + - uid: 2224 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8929 + - uid: 2225 components: - type: Transform pos: 17.5,-264.5 parent: 2 - - uid: 8930 + - uid: 2226 components: - type: Transform pos: 3.5,-251.5 parent: 2 - - uid: 8973 + - uid: 2227 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 8976 + - uid: 2228 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8988 + - uid: 2229 components: - type: Transform pos: 7.5,-243.5 parent: 2 - - uid: 9010 + - uid: 2230 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9027 + - uid: 2231 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 9041 + - uid: 2232 components: - type: Transform pos: 4.5,-243.5 parent: 2 - - uid: 9043 + - uid: 2233 components: - type: Transform pos: 5.5,-243.5 parent: 2 - - uid: 9049 + - uid: 2234 components: - type: Transform pos: 3.5,-243.5 parent: 2 - - uid: 9061 + - uid: 2235 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 9170 + - uid: 2236 components: - type: Transform pos: 5.5,-284.5 parent: 2 - - uid: 9171 + - uid: 2237 components: - type: Transform pos: 5.5,-285.5 parent: 2 - - uid: 9172 + - uid: 2238 components: - type: Transform pos: 4.5,-284.5 parent: 2 - - uid: 9173 + - uid: 2239 components: - type: Transform pos: 6.5,-284.5 parent: 2 - - uid: 9215 + - uid: 2240 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9216 + - uid: 2241 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9217 + - uid: 2242 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9218 + - uid: 2243 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9219 + - uid: 2244 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9220 + - uid: 2245 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9221 + - uid: 2246 components: - type: Transform pos: -6.5,-271.5 parent: 2 - - uid: 9222 + - uid: 2247 components: - type: Transform pos: -6.5,-270.5 parent: 2 - - uid: 9223 + - uid: 2248 components: - type: Transform pos: -6.5,-272.5 parent: 2 - - uid: 9224 + - uid: 2249 components: - type: Transform pos: -7.5,-272.5 parent: 2 - - uid: 9225 + - uid: 2250 components: - type: Transform pos: -8.5,-272.5 parent: 2 - - uid: 9226 + - uid: 2251 components: - type: Transform pos: -6.5,-273.5 parent: 2 - - uid: 9227 + - uid: 2252 components: - type: Transform pos: -6.5,-274.5 parent: 2 - - uid: 9228 + - uid: 2253 components: - type: Transform pos: -6.5,-275.5 parent: 2 - - uid: 9229 + - uid: 2254 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9230 + - uid: 2255 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9231 + - uid: 2256 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9232 + - uid: 2257 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9233 + - uid: 2258 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9234 + - uid: 2259 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9235 + - uid: 2260 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 9236 + - uid: 2261 components: - type: Transform pos: 5.5,-271.5 parent: 2 - - uid: 9237 + - uid: 2262 components: - type: Transform pos: 5.5,-270.5 parent: 2 - - uid: 9238 + - uid: 2263 components: - type: Transform pos: 5.5,-269.5 parent: 2 - - uid: 9239 + - uid: 2264 components: - type: Transform pos: 3.5,-271.5 parent: 2 - - uid: 9240 + - uid: 2265 components: - type: Transform pos: 3.5,-270.5 parent: 2 - - uid: 9241 + - uid: 2266 components: - type: Transform pos: 2.5,-272.5 parent: 2 - - uid: 9242 + - uid: 2267 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9243 + - uid: 2268 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9244 + - uid: 2269 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9245 + - uid: 2270 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9246 + - uid: 2271 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9247 + - uid: 2272 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9248 + - uid: 2273 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9249 + - uid: 2274 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9250 + - uid: 2275 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9251 + - uid: 2276 components: - type: Transform pos: 4.5,-277.5 parent: 2 - - uid: 9252 + - uid: 2277 components: - type: Transform pos: 3.5,-277.5 parent: 2 - - uid: 9253 + - uid: 2278 components: - type: Transform pos: 2.5,-277.5 parent: 2 - - uid: 9254 + - uid: 2279 components: - type: Transform pos: 1.5,-277.5 parent: 2 - - uid: 9255 + - uid: 2280 components: - type: Transform pos: 0.5,-277.5 parent: 2 - - uid: 9256 + - uid: 2281 components: - type: Transform pos: 0.5,-278.5 parent: 2 - - uid: 9257 + - uid: 2282 components: - type: Transform pos: 0.5,-279.5 parent: 2 - - uid: 9258 + - uid: 2283 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 9259 + - uid: 2284 components: - type: Transform pos: 0.5,-281.5 parent: 2 - - uid: 9260 + - uid: 2285 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 9261 + - uid: 2286 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 9262 + - uid: 2287 components: - type: Transform pos: -0.5,-277.5 parent: 2 - - uid: 9263 + - uid: 2288 components: - type: Transform pos: 0.5,-276.5 parent: 2 - - uid: 9264 + - uid: 2289 components: - type: Transform pos: 6.5,-277.5 parent: 2 - - uid: 9265 + - uid: 2290 components: - type: Transform pos: 7.5,-277.5 parent: 2 - - uid: 9266 + - uid: 2291 components: - type: Transform pos: 8.5,-277.5 parent: 2 - - uid: 9267 + - uid: 2292 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 9268 + - uid: 2293 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - uid: 9269 + - uid: 2294 components: - type: Transform pos: 11.5,-277.5 parent: 2 - - uid: 9270 + - uid: 2295 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 9271 + - uid: 2296 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - uid: 9272 + - uid: 2297 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 9273 + - uid: 2298 components: - type: Transform pos: 8.5,-281.5 parent: 2 - - uid: 9274 + - uid: 2299 components: - type: Transform pos: 7.5,-281.5 parent: 2 - - uid: 9275 + - uid: 2300 components: - type: Transform pos: 6.5,-281.5 parent: 2 - - uid: 9276 + - uid: 2301 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9277 + - uid: 2302 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9278 + - uid: 2303 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9279 + - uid: 2304 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 9280 + - uid: 2305 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9281 + - uid: 2306 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9282 + - uid: 2307 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9283 + - uid: 2308 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9284 + - uid: 2309 components: - type: Transform pos: -5.5,-280.5 parent: 2 - - uid: 9285 + - uid: 2310 components: - type: Transform pos: -5.5,-281.5 parent: 2 - - uid: 9286 + - uid: 2311 components: - type: Transform pos: -5.5,-282.5 parent: 2 - - uid: 9287 + - uid: 2312 components: - type: Transform pos: -5.5,-283.5 parent: 2 - - uid: 9288 + - uid: 2313 components: - type: Transform pos: -5.5,-284.5 parent: 2 - - uid: 9289 + - uid: 2314 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 9290 + - uid: 2315 components: - type: Transform pos: -5.5,-286.5 parent: 2 - - uid: 9291 + - uid: 2316 components: - type: Transform pos: -5.5,-287.5 parent: 2 - - uid: 9292 + - uid: 2317 components: - type: Transform pos: -4.5,-287.5 parent: 2 - - uid: 9293 + - uid: 2318 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 9294 + - uid: 2319 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9295 + - uid: 2320 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9296 + - uid: 2321 components: - type: Transform pos: -3.5,-280.5 parent: 2 - - uid: 9297 + - uid: 2322 components: - type: Transform pos: -3.5,-281.5 parent: 2 - - uid: 9298 + - uid: 2323 components: - type: Transform pos: -3.5,-282.5 parent: 2 - - uid: 9299 + - uid: 2324 components: - type: Transform pos: -3.5,-283.5 parent: 2 - - uid: 9300 + - uid: 2325 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9301 + - uid: 2326 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9302 + - uid: 2327 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9303 + - uid: 2328 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9304 + - uid: 2329 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9305 + - uid: 2330 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9306 + - uid: 2331 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9307 + - uid: 2332 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9308 + - uid: 2333 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9309 + - uid: 2334 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9310 + - uid: 2335 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9311 + - uid: 2336 components: - type: Transform pos: 1.5,-289.5 parent: 2 - - uid: 9312 + - uid: 2337 components: - type: Transform pos: 2.5,-289.5 parent: 2 - - uid: 9313 + - uid: 2338 components: - type: Transform pos: -0.5,-289.5 parent: 2 - - uid: 9314 + - uid: 2339 components: - type: Transform pos: -1.5,-289.5 parent: 2 - - uid: 9315 + - uid: 2340 components: - type: Transform pos: -3.5,-278.5 parent: 2 - - uid: 9316 + - uid: 2341 components: - type: Transform pos: -3.5,-277.5 parent: 2 - - uid: 9317 + - uid: 2342 components: - type: Transform pos: -3.5,-276.5 parent: 2 - - uid: 9318 + - uid: 2343 components: - type: Transform pos: -3.5,-275.5 parent: 2 - - uid: 9319 + - uid: 2344 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9320 + - uid: 2345 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9321 + - uid: 2346 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9323 + - uid: 2347 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9324 + - uid: 2348 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9325 + - uid: 2349 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9326 + - uid: 2350 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9327 + - uid: 2351 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9328 + - uid: 2352 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9329 + - uid: 2353 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9330 + - uid: 2354 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9331 + - uid: 2355 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 9332 + - uid: 2356 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 9333 + - uid: 2357 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 9334 + - uid: 2358 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 9335 + - uid: 2359 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 9429 + - uid: 2360 components: - type: Transform pos: -4.5,-328.5 parent: 2 - - uid: 9457 + - uid: 2361 components: - type: Transform pos: 22.5,-311.5 parent: 2 - - uid: 9518 + - uid: 2362 components: - type: Transform pos: 22.5,-312.5 parent: 2 - - uid: 9619 + - uid: 2363 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9621 + - uid: 2364 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9622 + - uid: 2365 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9623 + - uid: 2366 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9624 + - uid: 2367 components: - type: Transform pos: 18.5,-307.5 parent: 2 - - uid: 9625 + - uid: 2368 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 9626 + - uid: 2369 components: - type: Transform pos: 16.5,-307.5 parent: 2 - - uid: 9627 + - uid: 2370 components: - type: Transform pos: 15.5,-307.5 parent: 2 - - uid: 9628 + - uid: 2371 components: - type: Transform pos: 14.5,-307.5 parent: 2 - - uid: 9629 + - uid: 2372 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 9630 + - uid: 2373 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9631 + - uid: 2374 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9632 + - uid: 2375 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9633 + - uid: 2376 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9634 + - uid: 2377 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9635 + - uid: 2378 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9636 + - uid: 2379 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9637 + - uid: 2380 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9639 + - uid: 2381 components: - type: Transform pos: 25.5,-309.5 parent: 2 - - uid: 9640 + - uid: 2382 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9641 + - uid: 2383 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9642 + - uid: 2384 components: - type: Transform pos: 26.5,-307.5 parent: 2 - - uid: 9643 + - uid: 2385 components: - type: Transform pos: 27.5,-307.5 parent: 2 - - uid: 9644 + - uid: 2386 components: - type: Transform pos: 28.5,-307.5 parent: 2 - - uid: 9645 + - uid: 2387 components: - type: Transform pos: 29.5,-307.5 parent: 2 - - uid: 9646 + - uid: 2388 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9647 + - uid: 2389 components: - type: Transform pos: 25.5,-305.5 parent: 2 - - uid: 9648 + - uid: 2390 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9649 + - uid: 2391 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9650 + - uid: 2392 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9651 + - uid: 2393 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9652 + - uid: 2394 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9653 + - uid: 2395 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9654 + - uid: 2396 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9655 + - uid: 2397 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9656 + - uid: 2398 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9657 + - uid: 2399 components: - type: Transform pos: 22.5,-303.5 parent: 2 - - uid: 9658 + - uid: 2400 components: - type: Transform pos: 22.5,-302.5 parent: 2 - - uid: 9659 + - uid: 2401 components: - type: Transform pos: 22.5,-301.5 parent: 2 - - uid: 9660 + - uid: 2402 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 9661 + - uid: 2403 components: - type: Transform pos: 22.5,-299.5 parent: 2 - - uid: 9662 + - uid: 2404 components: - type: Transform pos: 22.5,-298.5 parent: 2 - - uid: 9663 + - uid: 2405 components: - type: Transform pos: 23.5,-298.5 parent: 2 - - uid: 9664 + - uid: 2406 components: - type: Transform pos: 24.5,-298.5 parent: 2 - - uid: 9665 + - uid: 2407 components: - type: Transform pos: 25.5,-298.5 parent: 2 - - uid: 9666 + - uid: 2408 components: - type: Transform pos: 21.5,-298.5 parent: 2 - - uid: 9667 + - uid: 2409 components: - type: Transform pos: 20.5,-298.5 parent: 2 - - uid: 9668 + - uid: 2410 components: - type: Transform pos: 19.5,-298.5 parent: 2 - - uid: 9669 + - uid: 2411 components: - type: Transform pos: 22.5,-313.5 parent: 2 - - uid: 9670 + - uid: 2412 components: - type: Transform pos: 22.5,-314.5 parent: 2 - - uid: 9671 + - uid: 2413 components: - type: Transform pos: 22.5,-315.5 parent: 2 - - uid: 9672 + - uid: 2414 components: - type: Transform pos: 22.5,-316.5 parent: 2 - - uid: 9674 + - uid: 2415 components: - type: Transform pos: 23.5,-316.5 parent: 2 - - uid: 9675 + - uid: 2416 components: - type: Transform pos: 24.5,-316.5 parent: 2 - - uid: 9676 + - uid: 2417 components: - type: Transform pos: 25.5,-316.5 parent: 2 - - uid: 9677 + - uid: 2418 components: - type: Transform pos: 21.5,-316.5 parent: 2 - - uid: 9678 + - uid: 2419 components: - type: Transform pos: 20.5,-316.5 parent: 2 - - uid: 9679 + - uid: 2420 components: - type: Transform pos: 19.5,-316.5 parent: 2 - - uid: 9680 + - uid: 2421 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9681 + - uid: 2422 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9769 + - uid: 2423 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 9770 + - uid: 2424 components: - type: Transform pos: 29.5,-305.5 parent: 2 - - uid: 9771 + - uid: 2425 components: - type: Transform pos: 29.5,-304.5 parent: 2 - - uid: 9775 + - uid: 2426 components: - type: Transform pos: 29.5,-308.5 parent: 2 - - uid: 9776 + - uid: 2427 components: - type: Transform pos: 29.5,-309.5 parent: 2 - - uid: 9777 + - uid: 2428 components: - type: Transform pos: 29.5,-310.5 parent: 2 - - uid: 9831 + - uid: 2429 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 9853 + - uid: 2430 components: - type: Transform pos: 14.5,-243.5 parent: 2 - - uid: 10035 + - uid: 2431 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 10048 + - uid: 2432 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 10165 + - uid: 2433 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10168 + - uid: 2434 components: - type: Transform pos: 5.5,-338.5 parent: 2 - - uid: 10353 + - uid: 2435 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 10354 + - uid: 2436 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 10355 + - uid: 2437 components: - type: Transform pos: -9.5,-305.5 parent: 2 - - uid: 10356 + - uid: 2438 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 10357 + - uid: 2439 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10358 + - uid: 2440 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10359 + - uid: 2441 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10360 + - uid: 2442 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10361 + - uid: 2443 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10362 + - uid: 2444 components: - type: Transform pos: -2.5,-303.5 parent: 2 - - uid: 10363 + - uid: 2445 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10364 + - uid: 2446 components: - type: Transform pos: -4.5,-301.5 parent: 2 - - uid: 10365 + - uid: 2447 components: - type: Transform pos: -4.5,-300.5 parent: 2 - - uid: 10366 + - uid: 2448 components: - type: Transform pos: -4.5,-299.5 parent: 2 - - uid: 10367 + - uid: 2449 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10368 + - uid: 2450 components: - type: Transform pos: -4.5,-305.5 parent: 2 - - uid: 10369 + - uid: 2451 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 10370 + - uid: 2452 components: - type: Transform pos: -0.5,-303.5 parent: 2 - - uid: 10371 + - uid: 2453 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10372 + - uid: 2454 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10373 + - uid: 2455 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10374 + - uid: 2456 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10375 + - uid: 2457 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10376 + - uid: 2458 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10377 - components: - - type: Transform - pos: 0.5,-297.5 - parent: 2 - - uid: 10378 + - uid: 2459 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 10379 + - uid: 2460 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 10380 + - uid: 2461 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 10381 + - uid: 2462 components: - type: Transform pos: -0.5,-295.5 parent: 2 - - uid: 10382 + - uid: 2463 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 10383 + - uid: 2464 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 10384 + - uid: 2465 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 10385 + - uid: 2466 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10386 + - uid: 2467 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10387 + - uid: 2468 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10388 + - uid: 2469 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10389 + - uid: 2470 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10390 + - uid: 2471 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10391 + - uid: 2472 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10392 + - uid: 2473 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10393 + - uid: 2474 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10394 + - uid: 2475 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 10395 + - uid: 2476 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10396 + - uid: 2477 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10397 + - uid: 2478 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10398 + - uid: 2479 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10399 + - uid: 2480 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10400 + - uid: 2481 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10401 + - uid: 2482 components: - type: Transform pos: -3.5,-316.5 parent: 2 - - uid: 10402 + - uid: 2483 components: - type: Transform pos: -3.5,-315.5 parent: 2 - - uid: 10407 + - uid: 2484 components: - type: Transform pos: -3.5,-314.5 parent: 2 - - uid: 10408 + - uid: 2485 components: - type: Transform pos: -3.5,-313.5 parent: 2 - - uid: 10409 + - uid: 2486 components: - type: Transform pos: -3.5,-312.5 parent: 2 - - uid: 10410 + - uid: 2487 components: - type: Transform pos: -3.5,-311.5 parent: 2 - - uid: 10411 + - uid: 2488 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 10412 + - uid: 2489 components: - type: Transform pos: -3.5,-309.5 parent: 2 - - uid: 10413 + - uid: 2490 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10414 + - uid: 2491 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10415 + - uid: 2492 components: - type: Transform pos: -4.5,-308.5 parent: 2 - - uid: 10416 + - uid: 2493 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10417 + - uid: 2494 components: - type: Transform pos: -4.5,-314.5 parent: 2 - - uid: 10418 + - uid: 2495 components: - type: Transform pos: -5.5,-314.5 parent: 2 - - uid: 10419 + - uid: 2496 components: - type: Transform pos: -6.5,-314.5 parent: 2 - - uid: 10420 + - uid: 2497 components: - type: Transform pos: -7.5,-314.5 parent: 2 - - uid: 10421 + - uid: 2498 components: - type: Transform pos: -8.5,-314.5 parent: 2 - - uid: 10422 + - uid: 2499 components: - type: Transform pos: -4.5,-318.5 parent: 2 - - uid: 10423 + - uid: 2500 components: - type: Transform pos: -5.5,-318.5 parent: 2 - - uid: 10424 + - uid: 2501 components: - type: Transform pos: -6.5,-318.5 parent: 2 - - uid: 10425 + - uid: 2502 components: - type: Transform pos: -7.5,-318.5 parent: 2 - - uid: 10426 + - uid: 2503 components: - type: Transform pos: -8.5,-318.5 parent: 2 - - uid: 10427 + - uid: 2504 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 10428 + - uid: 2505 components: - type: Transform pos: -5.5,-316.5 parent: 2 - - uid: 10429 + - uid: 2506 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10430 + - uid: 2507 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10431 + - uid: 2508 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10432 + - uid: 2509 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10433 + - uid: 2510 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10434 + - uid: 2511 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10436 + - uid: 2512 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 10437 + - uid: 2513 components: - type: Transform pos: 0.5,-316.5 parent: 2 - - uid: 10438 + - uid: 2514 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10439 + - uid: 2515 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10440 + - uid: 2516 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 10441 + - uid: 2517 components: - type: Transform pos: -1.5,-321.5 parent: 2 - - uid: 10442 + - uid: 2518 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 10443 + - uid: 2519 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10444 + - uid: 2520 components: - type: Transform pos: 2.5,-321.5 parent: 2 - - uid: 10445 + - uid: 2521 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10446 + - uid: 2522 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10447 + - uid: 2523 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10448 + - uid: 2524 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10449 + - uid: 2525 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10450 + - uid: 2526 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10451 + - uid: 2527 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10452 + - uid: 2528 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10453 + - uid: 2529 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10454 + - uid: 2530 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10455 + - uid: 2531 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10456 + - uid: 2532 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10457 + - uid: 2533 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10458 + - uid: 2534 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10459 + - uid: 2535 components: - type: Transform pos: 5.5,-313.5 parent: 2 - - uid: 10460 + - uid: 2536 components: - type: Transform pos: 5.5,-312.5 parent: 2 - - uid: 10461 + - uid: 2537 components: - type: Transform pos: 5.5,-311.5 parent: 2 - - uid: 10462 + - uid: 2538 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 10463 + - uid: 2539 components: - type: Transform pos: 4.5,-313.5 parent: 2 - - uid: 10464 + - uid: 2540 components: - type: Transform pos: 3.5,-313.5 parent: 2 - - uid: 10465 + - uid: 2541 components: - type: Transform pos: 2.5,-313.5 parent: 2 - - uid: 10466 + - uid: 2542 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10467 + - uid: 2543 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 10468 + - uid: 2544 components: - type: Transform pos: 6.5,-315.5 parent: 2 - - uid: 10469 + - uid: 2545 components: - type: Transform pos: 7.5,-315.5 parent: 2 - - uid: 10470 + - uid: 2546 components: - type: Transform pos: 8.5,-315.5 parent: 2 - - uid: 10471 + - uid: 2547 components: - type: Transform pos: 4.5,-315.5 parent: 2 - - uid: 10472 + - uid: 2548 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 10473 + - uid: 2549 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10474 + - uid: 2550 components: - type: Transform pos: 7.5,-311.5 parent: 2 - - uid: 10475 + - uid: 2551 components: - type: Transform pos: 4.5,-311.5 parent: 2 - - uid: 10477 + - uid: 2552 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 10478 + - uid: 2553 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10479 + - uid: 2554 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10480 + - uid: 2555 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10481 + - uid: 2556 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10482 + - uid: 2557 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10483 + - uid: 2558 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10484 + - uid: 2559 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10485 + - uid: 2560 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10486 + - uid: 2561 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10487 + - uid: 2562 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10488 + - uid: 2563 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10489 + - uid: 2564 components: - type: Transform pos: 5.5,-307.5 parent: 2 - - uid: 10490 + - uid: 2565 components: - type: Transform pos: 4.5,-307.5 parent: 2 - - uid: 10491 + - uid: 2566 components: - type: Transform pos: 3.5,-307.5 parent: 2 - - uid: 10492 + - uid: 2567 components: - type: Transform pos: 2.5,-307.5 parent: 2 - - uid: 10493 + - uid: 2568 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10494 + - uid: 2569 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10495 + - uid: 2570 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10496 + - uid: 2571 components: - type: Transform pos: 10.5,-307.5 parent: 2 - - uid: 10497 + - uid: 2572 components: - type: Transform pos: 11.5,-307.5 parent: 2 - - uid: 10498 + - uid: 2573 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10499 + - uid: 2574 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10500 + - uid: 2575 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10501 + - uid: 2576 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10502 + - uid: 2577 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10503 + - uid: 2578 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10504 + - uid: 2579 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10505 + - uid: 2580 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10506 + - uid: 2581 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10507 + - uid: 2582 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10508 + - uid: 2583 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10509 + - uid: 2584 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10510 + - uid: 2585 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10511 + - uid: 2586 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10512 + - uid: 2587 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10513 + - uid: 2588 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10514 + - uid: 2589 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10515 + - uid: 2590 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10516 + - uid: 2591 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10517 + - uid: 2592 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10518 + - uid: 2593 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10519 + - uid: 2594 components: - type: Transform pos: 5.5,-303.5 parent: 2 - - uid: 10520 + - uid: 2595 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 10521 + - uid: 2596 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 10522 + - uid: 2597 components: - type: Transform pos: 7.5,-303.5 parent: 2 - - uid: 10523 + - uid: 2598 components: - type: Transform pos: 7.5,-301.5 parent: 2 - - uid: 10524 + - uid: 2599 components: - type: Transform pos: 4.5,-300.5 parent: 2 - - uid: 10525 + - uid: 2600 components: - type: Transform pos: 6.5,-300.5 parent: 2 - - uid: 10526 + - uid: 2601 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10527 + - uid: 2602 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10616 + - uid: 2603 components: - type: Transform pos: 0.5,-315.5 parent: 2 - - uid: 10617 + - uid: 2604 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - uid: 10618 + - uid: 2605 components: - type: Transform pos: 0.5,-313.5 parent: 2 - - uid: 10619 + - uid: 2606 components: - type: Transform pos: 0.5,-312.5 parent: 2 - - uid: 10620 + - uid: 2607 components: - type: Transform pos: 0.5,-311.5 parent: 2 - - uid: 10621 + - uid: 2608 components: - type: Transform pos: 0.5,-310.5 parent: 2 - - uid: 10622 + - uid: 2609 components: - type: Transform pos: 0.5,-309.5 parent: 2 - - uid: 10707 + - uid: 2610 components: - type: Transform pos: -4.5,-329.5 parent: 2 - - uid: 10712 + - uid: 2611 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 10764 + - uid: 2612 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10847 + - uid: 2613 components: - type: Transform pos: -1.5,-54.5 parent: 2 - - uid: 10861 + - uid: 2614 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 10925 + - uid: 2615 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 10939 + - uid: 2616 components: - type: Transform pos: 5.5,-267.5 parent: 2 - - uid: 10940 + - uid: 2617 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10941 + - uid: 2618 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10942 + - uid: 2619 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10943 + - uid: 2620 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 10944 + - uid: 2621 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10945 + - uid: 2622 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 10946 + - uid: 2623 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10947 + - uid: 2624 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10948 + - uid: 2625 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10949 + - uid: 2626 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10950 + - uid: 2627 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10951 + - uid: 2628 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10952 + - uid: 2629 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10953 + - uid: 2630 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10954 + - uid: 2631 components: - type: Transform pos: 6.5,-330.5 parent: 2 - - uid: 10955 + - uid: 2632 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10956 + - uid: 2633 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10958 + - uid: 2634 components: - type: Transform pos: 5.5,-331.5 parent: 2 - - uid: 10959 + - uid: 2635 components: - type: Transform pos: 5.5,-332.5 parent: 2 - - uid: 10960 + - uid: 2636 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10961 + - uid: 2637 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10965 + - uid: 2638 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10967 + - uid: 2639 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10974 + - uid: 2640 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10975 + - uid: 2641 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 10978 + - uid: 2642 components: - type: Transform pos: -4.5,-335.5 parent: 2 - - uid: 10979 + - uid: 2643 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10980 + - uid: 2644 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10981 + - uid: 2645 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10982 + - uid: 2646 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10983 + - uid: 2647 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10984 + - uid: 2648 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 10985 + - uid: 2649 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 10986 + - uid: 2650 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10987 + - uid: 2651 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10988 + - uid: 2652 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 10989 + - uid: 2653 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10990 + - uid: 2654 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10991 + - uid: 2655 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 11004 + - uid: 2656 components: - type: Transform pos: -4.5,-326.5 parent: 2 - - uid: 11005 + - uid: 2657 components: - type: Transform pos: -4.5,-327.5 parent: 2 - - uid: 11008 + - uid: 2658 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 11009 + - uid: 2659 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 11010 + - uid: 2660 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 11011 + - uid: 2661 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 11012 + - uid: 2662 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 11013 + - uid: 2663 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 11015 + - uid: 2664 components: - type: Transform pos: -3.5,-338.5 parent: 2 - - uid: 11016 + - uid: 2665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - - uid: 11017 + - uid: 2666 components: - type: Transform pos: -1.5,-338.5 parent: 2 - - uid: 11018 + - uid: 2667 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 11019 + - uid: 2668 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 11020 + - uid: 2669 components: - type: Transform pos: -3.5,-341.5 parent: 2 - - uid: 11021 + - uid: 2670 components: - type: Transform pos: -2.5,-341.5 parent: 2 - - uid: 11022 + - uid: 2671 components: - type: Transform pos: -1.5,-341.5 parent: 2 - - uid: 11023 + - uid: 2672 components: - type: Transform pos: -0.5,-341.5 parent: 2 - - uid: 11024 + - uid: 2673 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 11025 + - uid: 2674 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11026 + - uid: 2675 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11027 + - uid: 2676 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11028 + - uid: 2677 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11029 + - uid: 2678 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11030 + - uid: 2679 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11031 + - uid: 2680 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11032 + - uid: 2681 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11033 + - uid: 2682 components: - type: Transform pos: 1.5,-348.5 parent: 2 - - uid: 11034 + - uid: 2683 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 11035 + - uid: 2684 components: - type: Transform pos: -0.5,-348.5 parent: 2 - - uid: 11036 + - uid: 2685 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 11037 + - uid: 2686 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 11038 + - uid: 2687 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 11039 + - uid: 2688 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 11040 + - uid: 2689 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 11041 + - uid: 2690 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 11042 + - uid: 2691 components: - type: Transform pos: -5.5,-341.5 parent: 2 - - uid: 11111 + - uid: 2692 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 11547 + - uid: 2693 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11553 + - uid: 2694 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11555 + - uid: 2695 components: - type: Transform pos: 2.5,-354.5 parent: 2 - - uid: 11556 + - uid: 2696 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11558 + - uid: 2697 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11560 + - uid: 2698 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 11561 + - uid: 2699 components: - type: Transform pos: -0.5,-354.5 parent: 2 - - uid: 11562 + - uid: 2700 components: - type: Transform pos: -1.5,-354.5 parent: 2 - - uid: 11564 + - uid: 2701 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11565 + - uid: 2702 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11566 + - uid: 2703 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11567 + - uid: 2704 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11568 + - uid: 2705 components: - type: Transform pos: 0.5,-360.5 parent: 2 - - uid: 11569 + - uid: 2706 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 11570 + - uid: 2707 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11571 + - uid: 2708 components: - type: Transform pos: -0.5,-357.5 parent: 2 - - uid: 11572 + - uid: 2709 components: - type: Transform pos: -1.5,-357.5 parent: 2 - - uid: 11573 + - uid: 2710 components: - type: Transform pos: -2.5,-357.5 parent: 2 - - uid: 11574 + - uid: 2711 components: - type: Transform pos: -3.5,-357.5 parent: 2 - - uid: 11575 + - uid: 2712 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11576 + - uid: 2713 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11577 + - uid: 2714 components: - type: Transform pos: -6.5,-357.5 parent: 2 - - uid: 11578 + - uid: 2715 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 11579 + - uid: 2716 components: - type: Transform pos: -4.5,-355.5 parent: 2 - - uid: 11580 + - uid: 2717 components: - type: Transform pos: -4.5,-358.5 parent: 2 - - uid: 11581 + - uid: 2718 components: - type: Transform pos: 1.5,-357.5 parent: 2 - - uid: 11582 + - uid: 2719 components: - type: Transform pos: 2.5,-357.5 parent: 2 - - uid: 11583 + - uid: 2720 components: - type: Transform pos: 3.5,-357.5 parent: 2 - - uid: 11584 + - uid: 2721 components: - type: Transform pos: 4.5,-357.5 parent: 2 - - uid: 11585 + - uid: 2722 components: - type: Transform pos: 5.5,-357.5 parent: 2 - - uid: 11586 + - uid: 2723 components: - type: Transform pos: 6.5,-357.5 parent: 2 - - uid: 11587 + - uid: 2724 components: - type: Transform pos: 7.5,-357.5 parent: 2 - - uid: 11588 + - uid: 2725 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11590 + - uid: 2726 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11591 + - uid: 2727 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11592 + - uid: 2728 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11593 + - uid: 2729 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11594 + - uid: 2730 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11595 + - uid: 2731 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11596 + - uid: 2732 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11597 + - uid: 2733 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11598 + - uid: 2734 components: - type: Transform pos: 3.5,-361.5 parent: 2 - - uid: 11599 + - uid: 2735 components: - type: Transform pos: 3.5,-362.5 parent: 2 - - uid: 11600 + - uid: 2736 components: - type: Transform pos: 3.5,-363.5 parent: 2 - - uid: 11601 + - uid: 2737 components: - type: Transform pos: 3.5,-364.5 parent: 2 - - uid: 11602 + - uid: 2738 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11603 + - uid: 2739 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11604 + - uid: 2740 components: - type: Transform pos: -0.5,-359.5 parent: 2 - - uid: 11605 + - uid: 2741 components: - type: Transform pos: -1.5,-359.5 parent: 2 - - uid: 11606 + - uid: 2742 components: - type: Transform pos: -1.5,-360.5 parent: 2 - - uid: 11607 + - uid: 2743 components: - type: Transform pos: -2.5,-360.5 parent: 2 - - uid: 11608 + - uid: 2744 components: - type: Transform pos: -2.5,-361.5 parent: 2 - - uid: 11609 + - uid: 2745 components: - type: Transform pos: -2.5,-362.5 parent: 2 - - uid: 11610 + - uid: 2746 components: - type: Transform pos: -2.5,-363.5 parent: 2 - - uid: 11611 + - uid: 2747 components: - type: Transform pos: -2.5,-364.5 parent: 2 - - uid: 11612 + - uid: 2748 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11613 + - uid: 2749 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11614 + - uid: 2750 components: - type: Transform pos: -3.5,-360.5 parent: 2 - - uid: 11615 + - uid: 2751 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11616 + - uid: 2752 components: - type: Transform pos: -5.5,-360.5 parent: 2 - - uid: 11617 + - uid: 2753 components: - type: Transform pos: -3.5,-363.5 parent: 2 - - uid: 11618 + - uid: 2754 components: - type: Transform pos: -4.5,-363.5 parent: 2 - - uid: 11619 + - uid: 2755 components: - type: Transform pos: -5.5,-363.5 parent: 2 - - uid: 11620 + - uid: 2756 components: - type: Transform pos: -3.5,-366.5 parent: 2 - - uid: 11621 + - uid: 2757 components: - type: Transform pos: -4.5,-366.5 parent: 2 - - uid: 11622 + - uid: 2758 components: - type: Transform pos: -5.5,-366.5 parent: 2 - - uid: 11623 + - uid: 2759 components: - type: Transform pos: -3.5,-367.5 parent: 2 - - uid: 11624 + - uid: 2760 components: - type: Transform pos: -3.5,-368.5 parent: 2 - - uid: 11625 + - uid: 2761 components: - type: Transform pos: -3.5,-369.5 parent: 2 - - uid: 11626 + - uid: 2762 components: - type: Transform pos: -3.5,-370.5 parent: 2 - - uid: 11627 + - uid: 2763 components: - type: Transform pos: -3.5,-371.5 parent: 2 - - uid: 11628 + - uid: 2764 components: - type: Transform pos: -3.5,-372.5 parent: 2 - - uid: 11629 + - uid: 2765 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11630 + - uid: 2766 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11631 + - uid: 2767 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11632 + - uid: 2768 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11633 + - uid: 2769 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11634 + - uid: 2770 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11635 + - uid: 2771 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11636 + - uid: 2772 components: - type: Transform pos: 5.5,-366.5 parent: 2 - - uid: 11638 + - uid: 2773 components: - type: Transform pos: 6.5,-366.5 parent: 2 - - uid: 11639 + - uid: 2774 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11640 + - uid: 2775 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11641 + - uid: 2776 components: - type: Transform pos: 5.5,-363.5 parent: 2 - - uid: 11642 + - uid: 2777 components: - type: Transform pos: 6.5,-363.5 parent: 2 - - uid: 11643 + - uid: 2778 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11644 + - uid: 2779 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11645 + - uid: 2780 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11647 + - uid: 2781 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11648 + - uid: 2782 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11650 + - uid: 2783 components: - type: Transform pos: 5.5,-371.5 parent: 2 - - uid: 11651 + - uid: 2784 components: - type: Transform pos: 6.5,-371.5 parent: 2 - - uid: 11652 + - uid: 2785 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11654 + - uid: 2786 components: - type: Transform pos: 3.5,-371.5 parent: 2 - - uid: 11655 + - uid: 2787 components: - type: Transform pos: 2.5,-371.5 parent: 2 - - uid: 11656 + - uid: 2788 components: - type: Transform pos: 1.5,-371.5 parent: 2 - - uid: 11657 + - uid: 2789 components: - type: Transform pos: -2.5,-371.5 parent: 2 - - uid: 11658 + - uid: 2790 components: - type: Transform pos: -4.5,-371.5 parent: 2 - - uid: 11659 + - uid: 2791 components: - type: Transform pos: -3.5,-373.5 parent: 2 - - uid: 11660 + - uid: 2792 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 11662 + - uid: 2793 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11663 + - uid: 2794 components: - type: Transform pos: -0.5,-371.5 parent: 2 - - uid: 11664 + - uid: 2795 components: - type: Transform pos: 1.5,-372.5 parent: 2 - - uid: 11665 + - uid: 2796 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11666 + - uid: 2797 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11667 + - uid: 2798 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11668 + - uid: 2799 components: - type: Transform pos: -0.5,-372.5 parent: 2 - - uid: 11669 + - uid: 2800 components: - type: Transform pos: -0.5,-373.5 parent: 2 - - uid: 11678 + - uid: 2801 components: - type: Transform pos: 0.5,-363.5 parent: 2 - - uid: 11679 + - uid: 2802 components: - type: Transform pos: 0.5,-364.5 parent: 2 - - uid: 11680 + - uid: 2803 components: - type: Transform pos: 0.5,-365.5 parent: 2 - - uid: 11681 + - uid: 2804 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 11682 + - uid: 2805 components: - type: Transform pos: 0.5,-367.5 parent: 2 - - uid: 11683 + - uid: 2806 components: - type: Transform pos: 0.5,-368.5 parent: 2 - - uid: 11951 + - uid: 2807 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 12025 + - uid: 2808 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 12058 + - uid: 2809 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 12061 + - uid: 2810 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 12065 + - uid: 2811 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12066 + - uid: 2812 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 12092 + - uid: 2813 components: - type: Transform pos: 5.5,-342.5 parent: 2 - - uid: 12106 + - uid: 2814 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 12112 + - uid: 2815 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 12167 + - uid: 2816 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 12332 + - uid: 2817 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 12471 + - uid: 2818 components: - type: Transform pos: 16.5,-251.5 parent: 2 - - uid: 12495 + - uid: 2819 components: - type: Transform pos: 16.5,-253.5 parent: 2 - - uid: 13215 + - uid: 2820 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 0.5,-297.5 + parent: 2 + - uid: 2822 components: - type: Transform pos: 19.5,-245.5 parent: 2 - - uid: 13274 + - uid: 2823 components: - type: Transform pos: 16.5,-249.5 parent: 2 - - uid: 13283 + - uid: 2824 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 13284 + - uid: 2825 components: - type: Transform pos: 16.5,-248.5 parent: 2 - - uid: 13285 + - uid: 2826 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 13302 + - uid: 2827 components: - type: Transform pos: -7.5,-308.5 parent: 2 - - uid: 13436 + - uid: 2828 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 13437 + - uid: 2829 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 13438 + - uid: 2830 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 13439 + - uid: 2831 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 13440 + - uid: 2832 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 13441 + - uid: 2833 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 13442 + - uid: 2834 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 14005 + - uid: 2835 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 14015 + - uid: 2836 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14016 + - uid: 2837 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 14017 + - uid: 2838 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 14514 + - uid: 2839 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14515 + - uid: 2840 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14516 + - uid: 2841 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14517 + - uid: 2842 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14518 + - uid: 2843 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14519 + - uid: 2844 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14520 + - uid: 2845 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14521 + - uid: 2846 components: - type: Transform pos: 15.5,-80.5 parent: 2 - - uid: 14522 + - uid: 2847 components: - type: Transform pos: 15.5,-79.5 parent: 2 - - uid: 14523 + - uid: 2848 components: - type: Transform pos: 15.5,-78.5 parent: 2 - - uid: 14524 + - uid: 2849 components: - type: Transform pos: 15.5,-77.5 parent: 2 - - uid: 14525 + - uid: 2850 components: - type: Transform pos: 15.5,-76.5 parent: 2 - - uid: 14526 + - uid: 2851 components: - type: Transform pos: 15.5,-75.5 parent: 2 - - uid: 14527 + - uid: 2852 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14528 + - uid: 2853 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14529 + - uid: 2854 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14530 + - uid: 2855 components: - type: Transform pos: 15.5,-71.5 parent: 2 - - uid: 14531 + - uid: 2856 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14532 + - uid: 2857 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14533 + - uid: 2858 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14534 + - uid: 2859 components: - type: Transform pos: 15.5,-67.5 parent: 2 - - uid: 14535 + - uid: 2860 components: - type: Transform pos: 15.5,-66.5 parent: 2 - - uid: 14536 + - uid: 2861 components: - type: Transform pos: 15.5,-65.5 parent: 2 - - uid: 14537 + - uid: 2862 components: - type: Transform pos: 15.5,-64.5 parent: 2 - - uid: 14538 + - uid: 2863 components: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 14539 + - uid: 2864 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 14540 + - uid: 2865 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 14541 + - uid: 2866 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 14542 + - uid: 2867 components: - type: Transform pos: 14.5,-61.5 parent: 2 - - uid: 14543 + - uid: 2868 components: - type: Transform pos: 13.5,-61.5 parent: 2 - - uid: 14544 + - uid: 2869 components: - type: Transform pos: 16.5,-61.5 parent: 2 - - uid: 14545 + - uid: 2870 components: - type: Transform pos: 17.5,-61.5 parent: 2 - - uid: 14546 + - uid: 2871 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14547 + - uid: 2872 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14548 + - uid: 2873 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14549 + - uid: 2874 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14550 + - uid: 2875 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14551 + - uid: 2876 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14552 + - uid: 2877 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14553 + - uid: 2878 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14555 + - uid: 2879 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14556 + - uid: 2880 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14557 + - uid: 2881 components: - type: Transform pos: 16.5,-81.5 parent: 2 - - uid: 14558 + - uid: 2882 components: - type: Transform pos: 17.5,-81.5 parent: 2 - - uid: 14559 + - uid: 2883 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14560 + - uid: 2884 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14561 + - uid: 2885 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14562 + - uid: 2886 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14574 + - uid: 2887 components: - type: Transform pos: -4.5,-104.5 parent: 2 - - uid: 14623 + - uid: 2888 components: - type: Transform pos: -4.5,-325.5 parent: 2 - - uid: 14650 + - uid: 2889 components: - type: Transform pos: 4.5,-247.5 parent: 2 - - uid: 14663 + - uid: 2890 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 14664 + - uid: 2891 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 14665 + - uid: 2892 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 14666 + - uid: 2893 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 14667 + - uid: 2894 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 14668 + - uid: 2895 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 14669 + - uid: 2896 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 14670 + - uid: 2897 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 14671 + - uid: 2898 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 14672 + - uid: 2899 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 14673 + - uid: 2900 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 14674 + - uid: 2901 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 14675 + - uid: 2902 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 14676 + - uid: 2903 components: - type: Transform pos: -1.5,-243.5 parent: 2 - - uid: 14677 + - uid: 2904 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14678 + - uid: 2905 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14679 + - uid: 2906 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14684 + - uid: 2907 components: - type: Transform pos: -16.5,-255.5 parent: 2 - - uid: 14692 + - uid: 2908 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14693 + - uid: 2909 components: - type: Transform pos: -6.5,-253.5 parent: 2 - - uid: 14694 + - uid: 2910 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14695 + - uid: 2911 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14696 + - uid: 2912 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14697 + - uid: 2913 components: - type: Transform pos: -6.5,-257.5 parent: 2 - - uid: 14698 + - uid: 2914 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 14699 + - uid: 2915 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 14700 + - uid: 2916 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 14701 + - uid: 2917 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 14702 + - uid: 2918 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 14703 + - uid: 2919 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 14704 + - uid: 2920 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 14705 + - uid: 2921 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 14706 + - uid: 2922 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 14707 + - uid: 2923 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 14708 + - uid: 2924 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 14709 + - uid: 2925 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 14710 + - uid: 2926 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 14711 + - uid: 2927 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 14712 + - uid: 2928 components: - type: Transform pos: 1.5,-260.5 parent: 2 - - uid: 14713 + - uid: 2929 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 14714 + - uid: 2930 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 14715 + - uid: 2931 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 14716 + - uid: 2932 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 14717 + - uid: 2933 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14718 + - uid: 2934 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 14720 + - uid: 2935 components: - type: Transform pos: -2.5,-190.5 parent: 2 - - uid: 14721 + - uid: 2936 components: - type: Transform pos: -3.5,-190.5 parent: 2 - - uid: 14722 + - uid: 2937 components: - type: Transform pos: -4.5,-190.5 parent: 2 - - uid: 14723 + - uid: 2938 components: - type: Transform pos: -5.5,-190.5 parent: 2 - - uid: 14724 + - uid: 2939 components: - type: Transform pos: -6.5,-190.5 parent: 2 - - uid: 14725 + - uid: 2940 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 14763 + - uid: 2941 components: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 14764 + - uid: 2942 components: - type: Transform pos: -4.5,-31.5 parent: 2 - - uid: 14802 + - uid: 2943 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 14906 + - uid: 2944 components: - type: Transform pos: -9.5,-132.5 parent: 2 - - uid: 14907 + - uid: 2945 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 14930 + - uid: 2946 components: - type: Transform pos: -10.5,-133.5 parent: 2 - - uid: 14947 + - uid: 2947 components: - type: Transform pos: -10.5,-134.5 parent: 2 - - uid: 14951 + - uid: 2948 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 14952 + - uid: 2949 components: - type: Transform pos: -4.5,-133.5 parent: 2 - - uid: 14953 + - uid: 2950 components: - type: Transform pos: -4.5,-132.5 parent: 2 - - uid: 14954 + - uid: 2951 components: - type: Transform pos: -5.5,-132.5 parent: 2 - - uid: 14955 + - uid: 2952 components: - type: Transform pos: -6.5,-132.5 parent: 2 - - uid: 14956 + - uid: 2953 components: - type: Transform pos: -7.5,-132.5 parent: 2 - - uid: 14957 + - uid: 2954 components: - type: Transform pos: -7.5,-133.5 parent: 2 - - uid: 14958 + - uid: 2955 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 14959 + - uid: 2956 components: - type: Transform pos: -7.5,-135.5 parent: 2 - - uid: 14960 + - uid: 2957 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 14961 + - uid: 2958 components: - type: Transform pos: -8.5,-137.5 parent: 2 - - uid: 14962 + - uid: 2959 components: - type: Transform pos: -8.5,-136.5 parent: 2 - - uid: 14963 + - uid: 2960 components: - type: Transform pos: -8.5,-138.5 parent: 2 - - uid: 14964 + - uid: 2961 components: - type: Transform pos: -8.5,-139.5 parent: 2 - - uid: 14965 + - uid: 2962 components: - type: Transform pos: -8.5,-140.5 parent: 2 - - uid: 14966 + - uid: 2963 components: - type: Transform pos: -8.5,-141.5 parent: 2 - - uid: 14967 + - uid: 2964 components: - type: Transform pos: -8.5,-142.5 parent: 2 - - uid: 14968 + - uid: 2965 components: - type: Transform pos: -8.5,-143.5 parent: 2 - - uid: 14969 + - uid: 2966 components: - type: Transform pos: -8.5,-144.5 parent: 2 - - uid: 14970 + - uid: 2967 components: - type: Transform pos: -8.5,-145.5 parent: 2 - - uid: 14971 + - uid: 2968 components: - type: Transform pos: -8.5,-146.5 parent: 2 - - uid: 14972 + - uid: 2969 components: - type: Transform pos: -8.5,-147.5 parent: 2 - - uid: 14973 + - uid: 2970 components: - type: Transform pos: -8.5,-148.5 parent: 2 - - uid: 14974 + - uid: 2971 components: - type: Transform pos: -8.5,-149.5 parent: 2 - - uid: 14975 + - uid: 2972 components: - type: Transform pos: -8.5,-150.5 parent: 2 - - uid: 14976 + - uid: 2973 components: - type: Transform pos: -8.5,-151.5 parent: 2 - - uid: 14991 + - uid: 2974 components: - type: Transform pos: -4.5,-157.5 parent: 2 - - uid: 14993 + - uid: 2975 components: - type: Transform pos: -8.5,-152.5 parent: 2 - - uid: 14994 + - uid: 2976 components: - type: Transform pos: -8.5,-153.5 parent: 2 - - uid: 14995 + - uid: 2977 components: - type: Transform pos: -8.5,-154.5 parent: 2 - - uid: 14996 + - uid: 2978 components: - type: Transform pos: -7.5,-154.5 parent: 2 - - uid: 14997 + - uid: 2979 components: - type: Transform pos: -6.5,-154.5 parent: 2 - - uid: 14998 + - uid: 2980 components: - type: Transform pos: -4.5,-155.5 parent: 2 - - uid: 14999 + - uid: 2981 components: - type: Transform pos: -4.5,-156.5 parent: 2 - - uid: 15000 + - uid: 2982 components: - type: Transform pos: -4.5,-158.5 parent: 2 - - uid: 15001 + - uid: 2983 components: - type: Transform pos: -4.5,-131.5 parent: 2 - - uid: 15002 + - uid: 2984 components: - type: Transform pos: 5.5,-126.5 parent: 2 - - uid: 15003 + - uid: 2985 components: - type: Transform pos: 5.5,-127.5 parent: 2 - - uid: 15004 + - uid: 2986 components: - type: Transform pos: 5.5,-128.5 parent: 2 - - uid: 15005 + - uid: 2987 components: - type: Transform pos: 5.5,-129.5 parent: 2 - - uid: 15006 + - uid: 2988 components: - type: Transform pos: -4.5,-100.5 parent: 2 - - uid: 15007 + - uid: 2989 components: - type: Transform pos: -4.5,-101.5 parent: 2 - - uid: 15008 + - uid: 2990 components: - type: Transform pos: -4.5,-102.5 parent: 2 - - uid: 15009 + - uid: 2991 components: - type: Transform pos: 5.5,-98.5 parent: 2 - - uid: 15010 + - uid: 2992 components: - type: Transform pos: 5.5,-99.5 parent: 2 - - uid: 15011 + - uid: 2993 components: - type: Transform pos: 5.5,-100.5 parent: 2 - - uid: 15012 + - uid: 2994 components: - type: Transform pos: 5.5,-101.5 parent: 2 - - uid: 15013 + - uid: 2995 components: - type: Transform pos: 5.5,-102.5 parent: 2 - - uid: 15014 + - uid: 2996 components: - type: Transform pos: -4.5,-80.5 parent: 2 - - uid: 15015 + - uid: 2997 components: - type: Transform pos: -4.5,-79.5 parent: 2 - - uid: 15016 + - uid: 2998 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 15017 + - uid: 2999 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 15018 + - uid: 3000 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 15019 + - uid: 3001 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 15020 + - uid: 3002 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 15021 + - uid: 3003 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 15022 + - uid: 3004 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 15023 + - uid: 3005 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 15024 + - uid: 3006 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 15025 + - uid: 3007 components: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 15026 + - uid: 3008 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 15027 + - uid: 3009 components: - type: Transform pos: -10.5,-135.5 parent: 2 - - uid: 15127 + - uid: 3010 components: - type: Transform pos: 5.5,-160.5 parent: 2 - - uid: 15128 + - uid: 3011 components: - type: Transform pos: 5.5,-159.5 parent: 2 - - uid: 15129 + - uid: 3012 components: - type: Transform pos: 5.5,-158.5 parent: 2 - - uid: 15130 + - uid: 3013 components: - type: Transform pos: 5.5,-157.5 parent: 2 - - uid: 15131 + - uid: 3014 components: - type: Transform pos: -4.5,-182.5 parent: 2 - - uid: 15132 + - uid: 3015 components: - type: Transform pos: -4.5,-183.5 parent: 2 - - uid: 15153 + - uid: 3016 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15154 + - uid: 3017 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 15235 + - uid: 3018 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 15257 + - uid: 3019 components: - type: Transform pos: 3.5,-245.5 parent: 2 - - uid: 15258 + - uid: 3020 components: - type: Transform pos: 3.5,-244.5 parent: 2 - - uid: 15259 + - uid: 3021 components: - type: Transform pos: 3.5,-246.5 parent: 2 - - uid: 15587 + - uid: 3022 components: - type: Transform pos: 5.5,-266.5 parent: 2 - - uid: 15588 + - uid: 3023 components: - type: Transform pos: 5.5,-262.5 parent: 2 - - uid: 15746 + - uid: 3024 components: - type: Transform pos: 5.5,-263.5 parent: 2 - - uid: 15747 + - uid: 3025 components: - type: Transform pos: 5.5,-264.5 parent: 2 - - uid: 16561 + - uid: 3026 components: - type: Transform pos: -16.5,-265.5 parent: 2 - - uid: 16642 + - uid: 3027 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16643 + - uid: 3028 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16644 + - uid: 3029 components: - type: Transform pos: -19.5,-265.5 parent: 2 - - uid: 16645 + - uid: 3030 components: - type: Transform pos: -20.5,-265.5 parent: 2 - - uid: 16646 + - uid: 3031 components: - type: Transform pos: -21.5,-265.5 parent: 2 - - uid: 16647 + - uid: 3032 components: - type: Transform pos: -11.5,-248.5 parent: 2 - - uid: 16648 + - uid: 3033 components: - type: Transform pos: -16.5,-262.5 parent: 2 - - uid: 16649 + - uid: 3034 components: - type: Transform pos: -17.5,-265.5 parent: 2 - - uid: 16650 + - uid: 3035 components: - type: Transform pos: -16.5,-264.5 parent: 2 - - uid: 16651 + - uid: 3036 components: - type: Transform pos: -16.5,-263.5 parent: 2 - - uid: 16652 + - uid: 3037 components: - type: Transform pos: -16.5,-261.5 parent: 2 - - uid: 16653 + - uid: 3038 components: - type: Transform pos: -16.5,-260.5 parent: 2 - - uid: 16654 + - uid: 3039 components: - type: Transform pos: -16.5,-259.5 parent: 2 - - uid: 16656 + - uid: 3040 components: - type: Transform pos: -16.5,-258.5 parent: 2 - - uid: 16657 + - uid: 3041 components: - type: Transform pos: -16.5,-257.5 parent: 2 - - uid: 16658 + - uid: 3042 components: - type: Transform pos: -16.5,-256.5 parent: 2 - - uid: 16700 + - uid: 3043 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16701 + - uid: 3044 components: - type: Transform pos: -16.5,-253.5 parent: 2 - - uid: 16702 + - uid: 3045 components: - type: Transform pos: -16.5,-252.5 parent: 2 - - uid: 16703 + - uid: 3046 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16704 + - uid: 3047 components: - type: Transform pos: -16.5,-251.5 parent: 2 - - uid: 16705 + - uid: 3048 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 16709 + - uid: 3049 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16711 + - uid: 3050 components: - type: Transform pos: -13.5,-248.5 parent: 2 - - uid: 16713 + - uid: 3051 components: - type: Transform pos: -14.5,-248.5 parent: 2 - - uid: 16714 + - uid: 3052 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 16715 + - uid: 3053 components: - type: Transform pos: -16.5,-246.5 parent: 2 - - uid: 16717 + - uid: 3054 components: - type: Transform pos: -16.5,-245.5 parent: 2 - - uid: 16718 + - uid: 3055 components: - type: Transform pos: -16.5,-244.5 parent: 2 - - uid: 16722 + - uid: 3056 components: - type: Transform pos: -16.5,-243.5 parent: 2 - - uid: 16723 + - uid: 3057 components: - type: Transform pos: -15.5,-243.5 parent: 2 - - uid: 16724 + - uid: 3058 components: - type: Transform pos: -14.5,-243.5 parent: 2 - - uid: 16725 + - uid: 3059 components: - type: Transform pos: -13.5,-243.5 parent: 2 - - uid: 16741 + - uid: 3060 components: - type: Transform pos: 5.5,-52.5 parent: 2 - - uid: 16742 + - uid: 3061 components: - type: Transform pos: 5.5,-51.5 parent: 2 - - uid: 16743 + - uid: 3062 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 16810 + - uid: 3063 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 16815 + - uid: 3064 components: - type: Transform pos: 5.5,-133.5 parent: 2 - - uid: 16816 + - uid: 3065 components: - type: Transform pos: 5.5,-132.5 parent: 2 - - uid: 16817 + - uid: 3066 components: - type: Transform pos: 5.5,-131.5 parent: 2 - - uid: 16972 + - uid: 3067 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 16973 + - uid: 3068 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 16974 + - uid: 3069 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16975 + - uid: 3070 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 16976 + - uid: 3071 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 16977 + - uid: 3072 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 17040 + - uid: 3073 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 17041 + - uid: 3074 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 17042 + - uid: 3075 components: - type: Transform pos: -17.5,-263.5 parent: 2 - - uid: 17043 + - uid: 3076 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 17044 + - uid: 3077 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 17045 + - uid: 3078 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 17046 + - uid: 3079 components: - type: Transform pos: -21.5,-263.5 parent: 2 - - uid: 17047 + - uid: 3080 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 17048 + - uid: 3081 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 17049 + - uid: 3082 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 17050 + - uid: 3083 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 17051 + - uid: 3084 components: - type: Transform pos: -10.5,-243.5 parent: 2 - - uid: 17052 + - uid: 3085 components: - type: Transform pos: -11.5,-243.5 parent: 2 - - uid: 17053 + - uid: 3086 components: - type: Transform pos: -10.5,-248.5 parent: 2 - - uid: 17054 + - uid: 3087 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 17055 + - uid: 3088 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: CableApcStack entities: - - uid: 41 + - uid: 934 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3089 components: - type: Transform pos: 15.343878,-245.76967 parent: 2 - - uid: 6897 + - uid: 3090 components: - type: Transform pos: 15.528771,-245.82246 parent: 2 - - uid: 9972 + - uid: 3091 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.460135,-300.75027 parent: 2 - - uid: 11674 + - uid: 3092 components: - type: Transform pos: -2.2538567,-7.497039 parent: 2 - - uid: 12413 + - uid: 3093 components: - type: Transform pos: 5.5776806,-310.53137 parent: 2 - - uid: 14770 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CableHV entities: - - uid: 90 + - uid: 3094 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 664 + - uid: 3095 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 773 + - uid: 3096 components: - type: Transform pos: -12.5,-251.5 parent: 2 - - uid: 845 + - uid: 3097 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 917 + - uid: 3098 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 1103 + - uid: 3099 components: - type: Transform pos: -12.5,-257.5 parent: 2 - - uid: 1334 + - uid: 3100 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 1450 + - uid: 3101 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 1451 + - uid: 3102 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 1453 + - uid: 3103 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 1633 + - uid: 3104 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 2228 + - uid: 3105 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 2255 + - uid: 3106 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 2276 + - uid: 3107 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 2279 + - uid: 3108 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 2339 + - uid: 3109 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 2340 + - uid: 3110 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 2341 + - uid: 3111 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 2342 + - uid: 3112 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 2343 + - uid: 3113 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 2344 + - uid: 3114 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 2345 + - uid: 3115 components: - type: Transform pos: -13.5,-257.5 parent: 2 - - uid: 2346 + - uid: 3116 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 2347 + - uid: 3117 components: - type: Transform pos: -13.5,-259.5 parent: 2 - - uid: 2348 + - uid: 3118 components: - type: Transform pos: -13.5,-260.5 parent: 2 - - uid: 2349 + - uid: 3119 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 2358 + - uid: 3120 components: - type: Transform pos: -11.5,-260.5 parent: 2 - - uid: 3010 + - uid: 3121 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 3087 + - uid: 3122 components: - type: Transform pos: -3.5,-112.5 parent: 2 - - uid: 4226 + - uid: 3123 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 4264 + - uid: 3124 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 4277 + - uid: 3125 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 4335 + - uid: 3126 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 4378 + - uid: 3127 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 4403 + - uid: 3128 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 4545 + - uid: 3129 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 4546 + - uid: 3130 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 4552 + - uid: 3131 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 4553 + - uid: 3132 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 4557 + - uid: 3133 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 4571 + - uid: 3134 components: - type: Transform pos: -6.5,-173.5 parent: 2 - - uid: 4582 + - uid: 3135 components: - type: Transform pos: -3.5,-123.5 parent: 2 - - uid: 4584 + - uid: 3136 components: - type: Transform pos: -3.5,-111.5 parent: 2 - - uid: 4586 + - uid: 3137 components: - type: Transform pos: -3.5,-122.5 parent: 2 - - uid: 4588 + - uid: 3138 components: - type: Transform pos: -3.5,-124.5 parent: 2 - - uid: 4595 + - uid: 3139 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 4608 + - uid: 3140 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 4614 + - uid: 3141 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 4617 + - uid: 3142 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 4622 + - uid: 3143 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 4623 + - uid: 3144 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 4626 + - uid: 3145 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 4642 + - uid: 3146 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 4643 + - uid: 3147 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4644 + - uid: 3148 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 4645 + - uid: 3149 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4646 + - uid: 3150 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 4648 + - uid: 3151 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 4668 + - uid: 3152 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 4672 + - uid: 3153 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 4673 + - uid: 3154 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 4674 + - uid: 3155 components: - type: Transform pos: -3.5,-118.5 parent: 2 - - uid: 4676 + - uid: 3156 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 4677 + - uid: 3157 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 4678 + - uid: 3158 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4679 + - uid: 3159 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 4688 + - uid: 3160 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 4696 + - uid: 3161 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 4697 + - uid: 3162 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 4698 + - uid: 3163 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 4699 + - uid: 3164 components: - type: Transform pos: -3.5,-121.5 parent: 2 - - uid: 4700 + - uid: 3165 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 4701 + - uid: 3166 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 4702 + - uid: 3167 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 4703 + - uid: 3168 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 4704 + - uid: 3169 components: - type: Transform pos: -3.5,-114.5 parent: 2 - - uid: 4705 + - uid: 3170 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 4706 + - uid: 3171 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 4707 + - uid: 3172 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 4711 + - uid: 3173 components: - type: Transform pos: -0.5,-110.5 parent: 2 - - uid: 4712 + - uid: 3174 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 4713 + - uid: 3175 components: - type: Transform pos: -3.5,-115.5 parent: 2 - - uid: 4716 + - uid: 3176 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 4717 + - uid: 3177 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 4718 + - uid: 3178 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 4719 + - uid: 3179 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 4720 + - uid: 3180 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 4721 + - uid: 3181 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 4722 + - uid: 3182 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 4724 + - uid: 3183 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 4725 + - uid: 3184 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 4727 + - uid: 3185 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 4729 + - uid: 3186 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 4730 + - uid: 3187 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 4732 + - uid: 3188 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 4734 + - uid: 3189 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 4736 + - uid: 3190 components: - type: Transform pos: -2.5,-81.5 parent: 2 - - uid: 4737 + - uid: 3191 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 4738 + - uid: 3192 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 4742 + - uid: 3193 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 4757 + - uid: 3194 components: - type: Transform pos: -10.5,-229.5 parent: 2 - - uid: 4758 + - uid: 3195 components: - type: Transform pos: -10.5,-228.5 parent: 2 - - uid: 4759 + - uid: 3196 components: - type: Transform pos: -10.5,-227.5 parent: 2 - - uid: 4760 + - uid: 3197 components: - type: Transform pos: -10.5,-226.5 parent: 2 - - uid: 4761 + - uid: 3198 components: - type: Transform pos: -10.5,-225.5 parent: 2 - - uid: 4762 + - uid: 3199 components: - type: Transform pos: -10.5,-224.5 parent: 2 - - uid: 4763 + - uid: 3200 components: - type: Transform pos: -10.5,-223.5 parent: 2 - - uid: 4764 + - uid: 3201 components: - type: Transform pos: -10.5,-222.5 parent: 2 - - uid: 4765 + - uid: 3202 components: - type: Transform pos: -10.5,-221.5 parent: 2 - - uid: 4766 + - uid: 3203 components: - type: Transform pos: -10.5,-220.5 parent: 2 - - uid: 4767 + - uid: 3204 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 4768 + - uid: 3205 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 4769 + - uid: 3206 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 4770 + - uid: 3207 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 4771 + - uid: 3208 components: - type: Transform pos: 0.5,-104.5 parent: 2 - - uid: 4772 + - uid: 3209 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 4774 + - uid: 3210 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 4775 + - uid: 3211 components: - type: Transform pos: -3.5,-120.5 parent: 2 - - uid: 4776 + - uid: 3212 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 4777 + - uid: 3213 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 4781 + - uid: 3214 components: - type: Transform pos: 10.5,-231.5 parent: 2 - - uid: 4782 + - uid: 3215 components: - type: Transform pos: 10.5,-230.5 parent: 2 - - uid: 4783 + - uid: 3216 components: - type: Transform pos: 10.5,-229.5 parent: 2 - - uid: 4787 + - uid: 3217 components: - type: Transform pos: 11.5,-229.5 parent: 2 - - uid: 4788 + - uid: 3218 components: - type: Transform pos: 11.5,-228.5 parent: 2 - - uid: 4789 + - uid: 3219 components: - type: Transform pos: 11.5,-227.5 parent: 2 - - uid: 4790 + - uid: 3220 components: - type: Transform pos: 11.5,-226.5 parent: 2 - - uid: 4791 + - uid: 3221 components: - type: Transform pos: 11.5,-225.5 parent: 2 - - uid: 4792 + - uid: 3222 components: - type: Transform pos: 11.5,-224.5 parent: 2 - - uid: 4793 + - uid: 3223 components: - type: Transform pos: 11.5,-223.5 parent: 2 - - uid: 4794 + - uid: 3224 components: - type: Transform pos: 11.5,-222.5 parent: 2 - - uid: 4795 + - uid: 3225 components: - type: Transform pos: 11.5,-221.5 parent: 2 - - uid: 4796 + - uid: 3226 components: - type: Transform pos: 11.5,-220.5 parent: 2 - - uid: 4798 + - uid: 3227 components: - type: Transform pos: 10.5,-220.5 parent: 2 - - uid: 4799 + - uid: 3228 components: - type: Transform pos: 10.5,-219.5 parent: 2 - - uid: 4801 + - uid: 3229 components: - type: Transform pos: 10.5,-218.5 parent: 2 - - uid: 4802 + - uid: 3230 components: - type: Transform pos: 5.5,-199.5 parent: 2 - - uid: 4803 + - uid: 3231 components: - type: Transform pos: 5.5,-201.5 parent: 2 - - uid: 4804 + - uid: 3232 components: - type: Transform pos: -3.5,-215.5 parent: 2 - - uid: 4805 + - uid: 3233 components: - type: Transform pos: -3.5,-216.5 parent: 2 - - uid: 4810 + - uid: 3234 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 4811 + - uid: 3235 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4813 + - uid: 3236 components: - type: Transform pos: -4.5,-215.5 parent: 2 - - uid: 4814 + - uid: 3237 components: - type: Transform pos: 4.5,-235.5 parent: 2 - - uid: 4815 + - uid: 3238 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 4816 + - uid: 3239 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 4820 + - uid: 3240 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4821 + - uid: 3241 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 4822 + - uid: 3242 components: - type: Transform pos: -6.5,-216.5 parent: 2 - - uid: 4823 + - uid: 3243 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 4824 + - uid: 3244 components: - type: Transform pos: -6.5,-217.5 parent: 2 - - uid: 4825 + - uid: 3245 components: - type: Transform pos: -7.5,-217.5 parent: 2 - - uid: 4826 + - uid: 3246 components: - type: Transform pos: -7.5,-218.5 parent: 2 - - uid: 4827 + - uid: 3247 components: - type: Transform pos: -7.5,-219.5 parent: 2 - - uid: 4828 + - uid: 3248 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 4829 + - uid: 3249 components: - type: Transform pos: -7.5,-221.5 parent: 2 - - uid: 4830 + - uid: 3250 components: - type: Transform pos: -7.5,-222.5 parent: 2 - - uid: 4831 + - uid: 3251 components: - type: Transform pos: -7.5,-223.5 parent: 2 - - uid: 4832 + - uid: 3252 components: - type: Transform pos: -7.5,-224.5 parent: 2 - - uid: 4833 + - uid: 3253 components: - type: Transform pos: -7.5,-225.5 parent: 2 - - uid: 4834 + - uid: 3254 components: - type: Transform pos: -7.5,-226.5 parent: 2 - - uid: 4835 + - uid: 3255 components: - type: Transform pos: -7.5,-227.5 parent: 2 - - uid: 4836 + - uid: 3256 components: - type: Transform pos: -7.5,-228.5 parent: 2 - - uid: 4837 + - uid: 3257 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 4838 + - uid: 3258 components: - type: Transform pos: -7.5,-230.5 parent: 2 - - uid: 4839 + - uid: 3259 components: - type: Transform pos: -7.5,-231.5 parent: 2 - - uid: 4840 + - uid: 3260 components: - type: Transform pos: -7.5,-232.5 parent: 2 - - uid: 4841 + - uid: 3261 components: - type: Transform pos: -6.5,-232.5 parent: 2 - - uid: 4842 + - uid: 3262 components: - type: Transform pos: -6.5,-233.5 parent: 2 - - uid: 4843 + - uid: 3263 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 4844 + - uid: 3264 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 4845 + - uid: 3265 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 4846 + - uid: 3266 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 4852 + - uid: 3267 components: - type: Transform pos: -4.5,-234.5 parent: 2 - - uid: 4853 + - uid: 3268 components: - type: Transform pos: -3.5,-234.5 parent: 2 - - uid: 4854 + - uid: 3269 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4855 + - uid: 3270 components: - type: Transform pos: -3.5,-233.5 parent: 2 - - uid: 4856 + - uid: 3271 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4857 + - uid: 3272 components: - type: Transform pos: -3.5,-231.5 parent: 2 - - uid: 4858 + - uid: 3273 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 4859 + - uid: 3274 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 4860 + - uid: 3275 components: - type: Transform pos: 4.5,-234.5 parent: 2 - - uid: 4861 + - uid: 3276 components: - type: Transform pos: 5.5,-234.5 parent: 2 - - uid: 4862 + - uid: 3277 components: - type: Transform pos: 4.5,-233.5 parent: 2 - - uid: 4863 + - uid: 3278 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4864 + - uid: 3279 components: - type: Transform pos: 4.5,-231.5 parent: 2 - - uid: 4866 + - uid: 3280 components: - type: Transform pos: 7.5,-233.5 parent: 2 - - uid: 4867 + - uid: 3281 components: - type: Transform pos: 7.5,-232.5 parent: 2 - - uid: 4871 + - uid: 3282 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 4874 + - uid: 3283 components: - type: Transform pos: 8.5,-232.5 parent: 2 - - uid: 4875 + - uid: 3284 components: - type: Transform pos: 8.5,-231.5 parent: 2 - - uid: 4876 + - uid: 3285 components: - type: Transform pos: 8.5,-230.5 parent: 2 - - uid: 4877 + - uid: 3286 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 4878 + - uid: 3287 components: - type: Transform pos: 8.5,-228.5 parent: 2 - - uid: 4879 + - uid: 3288 components: - type: Transform pos: 8.5,-227.5 parent: 2 - - uid: 4880 + - uid: 3289 components: - type: Transform pos: 8.5,-226.5 parent: 2 - - uid: 4881 + - uid: 3290 components: - type: Transform pos: 8.5,-225.5 parent: 2 - - uid: 4882 + - uid: 3291 components: - type: Transform pos: 8.5,-224.5 parent: 2 - - uid: 4883 + - uid: 3292 components: - type: Transform pos: 8.5,-223.5 parent: 2 - - uid: 4884 + - uid: 3293 components: - type: Transform pos: 8.5,-222.5 parent: 2 - - uid: 4885 + - uid: 3294 components: - type: Transform pos: 8.5,-221.5 parent: 2 - - uid: 4886 + - uid: 3295 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 4887 + - uid: 3296 components: - type: Transform pos: 8.5,-219.5 parent: 2 - - uid: 4888 + - uid: 3297 components: - type: Transform pos: 8.5,-218.5 parent: 2 - - uid: 4889 + - uid: 3298 components: - type: Transform pos: 8.5,-217.5 parent: 2 - - uid: 4891 + - uid: 3299 components: - type: Transform pos: 7.5,-217.5 parent: 2 - - uid: 4892 + - uid: 3300 components: - type: Transform pos: 7.5,-216.5 parent: 2 - - uid: 4894 + - uid: 3301 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 4895 + - uid: 3302 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 4906 + - uid: 3303 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 4907 + - uid: 3304 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 4908 + - uid: 3305 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 4909 + - uid: 3306 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 4910 + - uid: 3307 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 4911 + - uid: 3308 components: - type: Transform pos: 0.5,-102.5 parent: 2 - - uid: 4913 + - uid: 3309 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 4914 + - uid: 3310 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 4915 + - uid: 3311 components: - type: Transform pos: -3.5,-116.5 parent: 2 - - uid: 4916 + - uid: 3312 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 4917 + - uid: 3313 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 4918 + - uid: 3314 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 4919 + - uid: 3315 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 4920 + - uid: 3316 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 4922 + - uid: 3317 components: - type: Transform pos: -6.5,-171.5 parent: 2 - - uid: 4923 + - uid: 3318 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 4925 + - uid: 3319 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 4926 + - uid: 3320 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 4927 + - uid: 3321 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 4928 + - uid: 3322 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 4929 + - uid: 3323 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 4930 + - uid: 3324 components: - type: Transform pos: -3.5,-117.5 parent: 2 - - uid: 4931 + - uid: 3325 components: - type: Transform pos: -3.5,-119.5 parent: 2 - - uid: 4932 + - uid: 3326 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 4933 + - uid: 3327 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 4934 + - uid: 3328 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 4935 + - uid: 3329 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 4936 + - uid: 3330 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 4937 + - uid: 3331 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 4938 + - uid: 3332 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 4939 + - uid: 3333 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 4940 + - uid: 3334 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 4944 + - uid: 3335 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 4946 + - uid: 3336 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 4953 + - uid: 3337 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 4954 + - uid: 3338 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 4955 + - uid: 3339 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 4956 + - uid: 3340 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 4957 + - uid: 3341 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 4958 + - uid: 3342 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 4959 + - uid: 3343 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 4960 + - uid: 3344 components: - type: Transform pos: 5.5,-202.5 parent: 2 - - uid: 4961 + - uid: 3345 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 4962 + - uid: 3346 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 4963 + - uid: 3347 components: - type: Transform pos: -6.5,-172.5 parent: 2 - - uid: 4964 + - uid: 3348 components: - type: Transform pos: -6.5,-170.5 parent: 2 - - uid: 4966 + - uid: 3349 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 4968 + - uid: 3350 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 4969 + - uid: 3351 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 4970 + - uid: 3352 components: - type: Transform pos: 0.5,-210.5 parent: 2 - - uid: 4971 + - uid: 3353 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 4972 + - uid: 3354 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 4974 + - uid: 3355 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 4975 + - uid: 3356 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 5041 + - uid: 3357 components: - type: Transform pos: -3.5,-110.5 parent: 2 - - uid: 5066 + - uid: 3358 components: - type: Transform pos: -1.5,-110.5 parent: 2 - - uid: 5067 + - uid: 3359 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 5086 + - uid: 3360 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 5093 + - uid: 3361 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 5094 + - uid: 3362 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 5095 + - uid: 3363 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 5096 + - uid: 3364 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 5097 + - uid: 3365 components: - type: Transform pos: 0.5,-103.5 parent: 2 - - uid: 5100 + - uid: 3366 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 5102 + - uid: 3367 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 5132 + - uid: 3368 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 5149 + - uid: 3369 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 5150 + - uid: 3370 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 5151 + - uid: 3371 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 5152 + - uid: 3372 components: - type: Transform pos: 5.5,-200.5 parent: 2 - - uid: 5154 + - uid: 3373 components: - type: Transform pos: -0.5,-124.5 parent: 2 - - uid: 5155 + - uid: 3374 components: - type: Transform pos: -1.5,-124.5 parent: 2 - - uid: 5157 + - uid: 3375 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 5158 + - uid: 3376 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 5159 + - uid: 3377 components: - type: Transform pos: 5.5,-205.5 parent: 2 - - uid: 5202 + - uid: 3378 components: - type: Transform pos: 5.5,-203.5 parent: 2 - - uid: 5203 + - uid: 3379 components: - type: Transform pos: 5.5,-204.5 parent: 2 - - uid: 5204 + - uid: 3380 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 5205 + - uid: 3381 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 5206 + - uid: 3382 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 5207 + - uid: 3383 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 5208 + - uid: 3384 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 5217 + - uid: 3385 components: - type: Transform pos: 0.5,-239.5 parent: 2 - - uid: 5218 + - uid: 3386 components: - type: Transform pos: 0.5,-238.5 parent: 2 - - uid: 5219 + - uid: 3387 components: - type: Transform pos: 0.5,-237.5 parent: 2 - - uid: 5220 + - uid: 3388 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 5221 + - uid: 3389 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 5222 + - uid: 3390 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 5223 + - uid: 3391 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 5224 + - uid: 3392 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 5226 + - uid: 3393 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 5227 + - uid: 3394 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 5228 + - uid: 3395 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 5229 + - uid: 3396 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 5230 + - uid: 3397 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 5231 + - uid: 3398 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 5232 + - uid: 3399 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 5233 + - uid: 3400 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 5234 + - uid: 3401 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 5235 + - uid: 3402 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 5236 + - uid: 3403 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 5237 + - uid: 3404 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 5238 + - uid: 3405 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 5239 + - uid: 3406 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 5240 + - uid: 3407 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 5241 + - uid: 3408 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 5242 + - uid: 3409 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 5243 + - uid: 3410 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 5244 + - uid: 3411 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 5245 + - uid: 3412 components: - type: Transform pos: 0.5,-212.5 parent: 2 - - uid: 5246 + - uid: 3413 components: - type: Transform pos: 0.5,-211.5 parent: 2 - - uid: 5303 + - uid: 3414 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 5328 + - uid: 3415 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 5332 + - uid: 3416 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 5338 + - uid: 3417 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 5343 + - uid: 3418 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 5344 + - uid: 3419 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 5347 + - uid: 3420 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 5348 + - uid: 3421 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 5349 + - uid: 3422 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 5350 + - uid: 3423 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 5353 + - uid: 3424 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 5358 + - uid: 3425 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 5364 + - uid: 3426 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 5365 + - uid: 3427 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 5366 + - uid: 3428 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 5384 + - uid: 3429 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 5386 + - uid: 3430 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 5388 + - uid: 3431 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 5389 + - uid: 3432 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 5390 + - uid: 3433 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 5391 + - uid: 3434 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 5392 + - uid: 3435 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 5393 + - uid: 3436 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 5394 + - uid: 3437 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 5395 + - uid: 3438 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 5396 + - uid: 3439 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 5397 + - uid: 3440 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 5398 + - uid: 3441 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 5399 + - uid: 3442 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 5406 + - uid: 3443 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 5408 + - uid: 3444 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 5412 + - uid: 3445 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 5413 + - uid: 3446 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 5414 + - uid: 3447 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5437 + - uid: 3448 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 5438 + - uid: 3449 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 5439 + - uid: 3450 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 5440 + - uid: 3451 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 5441 + - uid: 3452 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 5442 + - uid: 3453 components: - type: Transform pos: -3.5,-229.5 parent: 2 - - uid: 5443 + - uid: 3454 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 5444 + - uid: 3455 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 5445 + - uid: 3456 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 5446 + - uid: 3457 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 5447 + - uid: 3458 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 5448 + - uid: 3459 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 5453 + - uid: 3460 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 5454 + - uid: 3461 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5455 + - uid: 3462 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 5456 + - uid: 3463 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 5457 + - uid: 3464 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5458 + - uid: 3465 components: - type: Transform pos: -0.5,-220.5 parent: 2 - - uid: 5469 + - uid: 3466 components: - type: Transform pos: -17.5,-247.5 parent: 2 - - uid: 5471 + - uid: 3467 components: - type: Transform pos: -17.5,-245.5 parent: 2 - - uid: 5472 + - uid: 3468 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 5473 + - uid: 3469 components: - type: Transform pos: -17.5,-244.5 parent: 2 - - uid: 5475 + - uid: 3470 components: - type: Transform pos: -17.5,-246.5 parent: 2 - - uid: 5476 + - uid: 3471 components: - type: Transform pos: -15.5,-247.5 parent: 2 - - uid: 5481 + - uid: 3472 components: - type: Transform pos: 19.5,-263.5 parent: 2 - - uid: 5482 + - uid: 3473 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5483 + - uid: 3474 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 5487 + - uid: 3475 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 5488 + - uid: 3476 components: - type: Transform pos: 15.5,-257.5 parent: 2 - - uid: 5491 + - uid: 3477 components: - type: Transform pos: 15.5,-258.5 parent: 2 - - uid: 5493 + - uid: 3478 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 5494 + - uid: 3479 components: - type: Transform pos: 15.5,-261.5 parent: 2 - - uid: 5495 + - uid: 3480 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 5496 + - uid: 3481 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 5498 + - uid: 3482 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 5506 + - uid: 3483 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5507 + - uid: 3484 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5508 + - uid: 3485 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5509 + - uid: 3486 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5510 + - uid: 3487 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5511 + - uid: 3488 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5512 + - uid: 3489 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5513 + - uid: 3490 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5514 + - uid: 3491 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5515 + - uid: 3492 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5516 + - uid: 3493 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 5517 + - uid: 3494 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 5518 + - uid: 3495 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 5519 + - uid: 3496 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 5520 + - uid: 3497 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 5521 + - uid: 3498 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 5522 + - uid: 3499 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 5523 + - uid: 3500 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 5524 + - uid: 3501 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 5525 + - uid: 3502 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 5526 + - uid: 3503 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 5527 + - uid: 3504 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 5528 + - uid: 3505 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 5529 + - uid: 3506 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 5530 + - uid: 3507 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 5531 + - uid: 3508 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 5532 + - uid: 3509 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5533 + - uid: 3510 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5534 + - uid: 3511 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5535 + - uid: 3512 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5536 + - uid: 3513 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5537 + - uid: 3514 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5538 + - uid: 3515 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5539 + - uid: 3516 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5540 + - uid: 3517 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5541 + - uid: 3518 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5542 + - uid: 3519 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5543 + - uid: 3520 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5544 + - uid: 3521 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5545 + - uid: 3522 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5546 + - uid: 3523 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5547 + - uid: 3524 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5548 + - uid: 3525 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5549 + - uid: 3526 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5550 + - uid: 3527 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5551 + - uid: 3528 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5552 + - uid: 3529 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5553 + - uid: 3530 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5554 + - uid: 3531 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5555 + - uid: 3532 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5556 + - uid: 3533 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5557 + - uid: 3534 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5558 + - uid: 3535 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5559 + - uid: 3536 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5560 + - uid: 3537 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5561 + - uid: 3538 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5562 + - uid: 3539 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5563 + - uid: 3540 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 5564 + - uid: 3541 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5565 + - uid: 3542 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5566 + - uid: 3543 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5567 + - uid: 3544 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5568 + - uid: 3545 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5569 + - uid: 3546 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5570 + - uid: 3547 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5571 + - uid: 3548 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5572 + - uid: 3549 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5573 + - uid: 3550 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 5574 + - uid: 3551 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 5575 + - uid: 3552 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 5576 + - uid: 3553 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 5577 + - uid: 3554 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5578 + - uid: 3555 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5579 + - uid: 3556 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5580 + - uid: 3557 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5581 + - uid: 3558 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 5582 + - uid: 3559 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 5583 + - uid: 3560 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 5584 + - uid: 3561 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5585 + - uid: 3562 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5586 + - uid: 3563 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5587 + - uid: 3564 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5588 + - uid: 3565 components: - type: Transform pos: -5.5,-15.5 parent: 2 - - uid: 5589 + - uid: 3566 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - uid: 5590 + - uid: 3567 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 5591 + - uid: 3568 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 5592 + - uid: 3569 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 5593 + - uid: 3570 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 5594 + - uid: 3571 components: - type: Transform pos: -5.5,-9.5 parent: 2 - - uid: 5595 + - uid: 3572 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 5596 + - uid: 3573 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 5597 + - uid: 3574 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 5598 + - uid: 3575 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 5599 + - uid: 3576 components: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 5600 + - uid: 3577 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 5601 + - uid: 3578 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 5602 + - uid: 3579 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 5603 + - uid: 3580 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5604 + - uid: 3581 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5605 + - uid: 3582 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5606 + - uid: 3583 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5607 + - uid: 3584 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5608 + - uid: 3585 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5609 + - uid: 3586 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5610 + - uid: 3587 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5611 + - uid: 3588 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5612 + - uid: 3589 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 5613 + - uid: 3590 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5614 + - uid: 3591 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5615 + - uid: 3592 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5616 + - uid: 3593 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5617 + - uid: 3594 components: - type: Transform pos: 1.5,-3.5 parent: 2 - - uid: 5618 + - uid: 3595 components: - type: Transform pos: 1.5,-4.5 parent: 2 - - uid: 5619 + - uid: 3596 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5620 + - uid: 3597 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5621 + - uid: 3598 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5622 + - uid: 3599 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5623 + - uid: 3600 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5624 + - uid: 3601 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 5625 + - uid: 3602 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5626 + - uid: 3603 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 5627 + - uid: 3604 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 5628 + - uid: 3605 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 5629 + - uid: 3606 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 5630 + - uid: 3607 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 5631 + - uid: 3608 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 5632 + - uid: 3609 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 5633 + - uid: 3610 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 5634 + - uid: 3611 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 5635 + - uid: 3612 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 5636 + - uid: 3613 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 5637 + - uid: 3614 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 5638 + - uid: 3615 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 5639 + - uid: 3616 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 5640 + - uid: 3617 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 5641 + - uid: 3618 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 5642 + - uid: 3619 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 5643 + - uid: 3620 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 5644 + - uid: 3621 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 5645 + - uid: 3622 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 5646 + - uid: 3623 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 5647 + - uid: 3624 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 5648 + - uid: 3625 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 5649 + - uid: 3626 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 5650 + - uid: 3627 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 5651 + - uid: 3628 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 5652 + - uid: 3629 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 5658 + - uid: 3630 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 5659 + - uid: 3631 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 5660 + - uid: 3632 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6549 + - uid: 3633 components: - type: Transform pos: 14.5,-253.5 parent: 2 - - uid: 6551 + - uid: 3634 components: - type: Transform pos: 17.5,-252.5 parent: 2 - - uid: 6679 + - uid: 3635 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 6681 + - uid: 3636 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 6683 + - uid: 3637 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 6771 + - uid: 3638 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 6774 + - uid: 3639 components: - type: Transform pos: -11.5,-257.5 parent: 2 - - uid: 6782 + - uid: 3640 components: - type: Transform pos: 13.5,-255.5 parent: 2 - - uid: 6798 + - uid: 3641 components: - type: Transform pos: -11.5,-255.5 parent: 2 - - uid: 6799 + - uid: 3642 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 6827 + - uid: 3643 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 6841 + - uid: 3644 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 6843 + - uid: 3645 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 6852 + - uid: 3646 components: - type: Transform pos: 2.5,-252.5 parent: 2 - - uid: 6869 + - uid: 3647 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6870 + - uid: 3648 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 6871 + - uid: 3649 components: - type: Transform pos: 13.5,-253.5 parent: 2 - - uid: 6872 + - uid: 3650 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6873 + - uid: 3651 components: - type: Transform pos: 13.5,-254.5 parent: 2 - - uid: 7452 + - uid: 3652 components: - type: Transform pos: 20.5,-256.5 parent: 2 - - uid: 7455 + - uid: 3653 components: - type: Transform pos: 19.5,-250.5 parent: 2 - - uid: 7492 + - uid: 3654 components: - type: Transform pos: 15.5,-259.5 parent: 2 - - uid: 7543 + - uid: 3655 components: - type: Transform pos: 19.5,-253.5 parent: 2 - - uid: 7585 + - uid: 3656 components: - type: Transform pos: 19.5,-252.5 parent: 2 - - uid: 7770 + - uid: 3657 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 7793 + - uid: 3658 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7794 + - uid: 3659 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7805 + - uid: 3660 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 7806 + - uid: 3661 components: - type: Transform pos: 0.5,-251.5 parent: 2 - - uid: 7807 + - uid: 3662 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 7810 + - uid: 3663 components: - type: Transform pos: 19.5,-247.5 parent: 2 - - uid: 7811 + - uid: 3664 components: - type: Transform pos: 0.5,-253.5 parent: 2 - - uid: 7828 + - uid: 3665 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 7832 + - uid: 3666 components: - type: Transform pos: 14.5,-251.5 parent: 2 - - uid: 7833 + - uid: 3667 components: - type: Transform pos: 14.5,-252.5 parent: 2 - - uid: 7846 + - uid: 3668 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 7847 + - uid: 3669 components: - type: Transform pos: 16.5,-261.5 parent: 2 - - uid: 7850 + - uid: 3670 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 7851 + - uid: 3671 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7852 + - uid: 3672 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 7853 + - uid: 3673 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7855 + - uid: 3674 components: - type: Transform pos: 21.5,-256.5 parent: 2 - - uid: 7862 + - uid: 3675 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 7865 + - uid: 3676 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 7866 + - uid: 3677 components: - type: Transform pos: 8.5,-256.5 parent: 2 - - uid: 7867 + - uid: 3678 components: - type: Transform pos: 0.5,-255.5 parent: 2 - - uid: 7888 + - uid: 3679 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 7889 + - uid: 3680 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 7890 + - uid: 3681 components: - type: Transform pos: 22.5,-256.5 parent: 2 - - uid: 7894 + - uid: 3682 components: - type: Transform pos: 10.5,-256.5 parent: 2 - - uid: 7908 + - uid: 3683 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 7928 + - uid: 3684 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 7933 + - uid: 3685 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 7935 + - uid: 3686 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7941 + - uid: 3687 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7945 + - uid: 3688 components: - type: Transform pos: 0.5,-257.5 parent: 2 - - uid: 7948 + - uid: 3689 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 7951 + - uid: 3690 components: - type: Transform pos: 13.5,-249.5 parent: 2 - - uid: 7953 + - uid: 3691 components: - type: Transform pos: 9.5,-256.5 parent: 2 - - uid: 7955 + - uid: 3692 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 7957 + - uid: 3693 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 7958 + - uid: 3694 components: - type: Transform pos: 17.5,-261.5 parent: 2 - - uid: 7959 + - uid: 3695 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 7960 + - uid: 3696 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 7961 + - uid: 3697 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 7962 + - uid: 3698 components: - type: Transform pos: 0.5,-248.5 parent: 2 - - uid: 7963 + - uid: 3699 components: - type: Transform pos: 0.5,-250.5 parent: 2 - - uid: 7971 + - uid: 3700 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 7973 + - uid: 3701 components: - type: Transform pos: 0.5,-258.5 parent: 2 - - uid: 7975 + - uid: 3702 components: - type: Transform pos: 0.5,-254.5 parent: 2 - - uid: 7976 + - uid: 3703 components: - type: Transform pos: 0.5,-252.5 parent: 2 - - uid: 7978 + - uid: 3704 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 7979 + - uid: 3705 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7981 + - uid: 3706 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7982 + - uid: 3707 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 7984 + - uid: 3708 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 7991 + - uid: 3709 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7999 + - uid: 3710 components: - type: Transform pos: 19.5,-251.5 parent: 2 - - uid: 8007 + - uid: 3711 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8101 + - uid: 3712 components: - type: Transform pos: 19.5,-249.5 parent: 2 - - uid: 8115 + - uid: 3713 components: - type: Transform pos: 15.5,-252.5 parent: 2 - - uid: 8132 + - uid: 3714 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 8145 + - uid: 3715 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8183 + - uid: 3716 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8184 + - uid: 3717 components: - type: Transform pos: 0.5,-264.5 parent: 2 - - uid: 8185 + - uid: 3718 components: - type: Transform pos: 0.5,-265.5 parent: 2 - - uid: 8186 + - uid: 3719 components: - type: Transform pos: 0.5,-266.5 parent: 2 - - uid: 8187 + - uid: 3720 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 8198 + - uid: 3721 components: - type: Transform pos: 0.5,-249.5 parent: 2 - - uid: 8205 + - uid: 3722 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 8230 + - uid: 3723 components: - type: Transform pos: 19.5,-254.5 parent: 2 - - uid: 8452 + - uid: 3724 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8454 + - uid: 3725 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8823 + - uid: 3726 components: - type: Transform pos: 19.5,-256.5 parent: 2 - - uid: 8838 + - uid: 3727 components: - type: Transform pos: 18.5,-252.5 parent: 2 - - uid: 8842 + - uid: 3728 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8844 + - uid: 3729 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 8863 + - uid: 3730 components: - type: Transform pos: 13.5,-250.5 parent: 2 - - uid: 8936 + - uid: 3731 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 8937 + - uid: 3732 components: - type: Transform pos: 1.5,-256.5 parent: 2 - - uid: 8943 + - uid: 3733 components: - type: Transform pos: 5.5,-256.5 parent: 2 - - uid: 8944 + - uid: 3734 components: - type: Transform pos: 4.5,-256.5 parent: 2 - - uid: 9098 + - uid: 3735 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9100 + - uid: 3736 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9101 + - uid: 3737 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9102 + - uid: 3738 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9103 + - uid: 3739 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9104 + - uid: 3740 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9105 + - uid: 3741 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9106 + - uid: 3742 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9107 + - uid: 3743 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9108 + - uid: 3744 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9109 + - uid: 3745 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9110 + - uid: 3746 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9111 + - uid: 3747 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9112 + - uid: 3748 components: - type: Transform pos: -2.5,-276.5 parent: 2 - - uid: 9113 + - uid: 3749 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9114 + - uid: 3750 components: - type: Transform pos: -2.5,-277.5 parent: 2 - - uid: 9115 + - uid: 3751 components: - type: Transform pos: -2.5,-278.5 parent: 2 - - uid: 9116 + - uid: 3752 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9117 + - uid: 3753 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9118 + - uid: 3754 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9119 + - uid: 3755 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9120 + - uid: 3756 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9121 + - uid: 3757 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9122 + - uid: 3758 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9123 + - uid: 3759 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9124 + - uid: 3760 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9125 + - uid: 3761 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9126 + - uid: 3762 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9127 + - uid: 3763 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9130 + - uid: 3764 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9131 + - uid: 3765 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9133 + - uid: 3766 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9134 + - uid: 3767 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9135 + - uid: 3768 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9136 + - uid: 3769 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9137 + - uid: 3770 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9138 + - uid: 3771 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9139 + - uid: 3772 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9140 + - uid: 3773 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9141 + - uid: 3774 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9142 + - uid: 3775 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9143 + - uid: 3776 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9167 + - uid: 3777 components: - type: Transform pos: 3.5,-256.5 parent: 2 - - uid: 9360 + - uid: 3778 components: - type: Transform pos: 0.5,-291.5 parent: 2 - - uid: 9361 + - uid: 3779 components: - type: Transform pos: 0.5,-292.5 parent: 2 - - uid: 9362 + - uid: 3780 components: - type: Transform pos: 0.5,-293.5 parent: 2 - - uid: 9363 + - uid: 3781 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 9499 + - uid: 3782 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 9559 + - uid: 3783 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 9560 + - uid: 3784 components: - type: Transform pos: 20.5,-308.5 parent: 2 - - uid: 9561 + - uid: 3785 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9562 + - uid: 3786 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9563 + - uid: 3787 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9564 + - uid: 3788 components: - type: Transform pos: 20.5,-306.5 parent: 2 - - uid: 9565 + - uid: 3789 components: - type: Transform pos: 21.5,-306.5 parent: 2 - - uid: 9566 + - uid: 3790 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9567 + - uid: 3791 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9568 + - uid: 3792 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9569 + - uid: 3793 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9570 + - uid: 3794 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9571 + - uid: 3795 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9572 + - uid: 3796 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9573 + - uid: 3797 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9574 + - uid: 3798 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9575 + - uid: 3799 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9577 + - uid: 3800 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9578 + - uid: 3801 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9579 + - uid: 3802 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9580 + - uid: 3803 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9581 + - uid: 3804 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9582 + - uid: 3805 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9583 + - uid: 3806 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9584 + - uid: 3807 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9585 + - uid: 3808 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9586 + - uid: 3809 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9587 + - uid: 3810 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9870 + - uid: 3811 components: - type: Transform pos: 0.5,-259.5 parent: 2 - - uid: 9917 + - uid: 3812 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10161 + - uid: 3813 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 10172 + - uid: 3814 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10173 + - uid: 3815 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10174 + - uid: 3816 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10175 + - uid: 3817 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10176 + - uid: 3818 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10177 + - uid: 3819 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10178 + - uid: 3820 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10179 + - uid: 3821 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10180 + - uid: 3822 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10181 + - uid: 3823 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10182 + - uid: 3824 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10183 + - uid: 3825 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10184 + - uid: 3826 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10185 + - uid: 3827 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10186 + - uid: 3828 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10187 + - uid: 3829 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10188 + - uid: 3830 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10189 + - uid: 3831 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10190 + - uid: 3832 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10191 + - uid: 3833 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10192 + - uid: 3834 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10193 + - uid: 3835 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10194 + - uid: 3836 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10195 + - uid: 3837 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10196 + - uid: 3838 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10197 + - uid: 3839 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10198 + - uid: 3840 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10199 + - uid: 3841 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10200 + - uid: 3842 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10201 + - uid: 3843 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10202 + - uid: 3844 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10203 + - uid: 3845 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10204 + - uid: 3846 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10205 + - uid: 3847 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10206 + - uid: 3848 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10207 + - uid: 3849 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10208 + - uid: 3850 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10209 + - uid: 3851 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10210 + - uid: 3852 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10211 + - uid: 3853 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10212 + - uid: 3854 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10213 + - uid: 3855 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10214 + - uid: 3856 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10215 + - uid: 3857 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10216 + - uid: 3858 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10218 + - uid: 3859 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10219 + - uid: 3860 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10220 + - uid: 3861 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10221 + - uid: 3862 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10222 + - uid: 3863 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 10223 + - uid: 3864 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10224 + - uid: 3865 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10225 + - uid: 3866 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10226 + - uid: 3867 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10610 + - uid: 3868 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 10611 + - uid: 3869 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 10612 + - uid: 3870 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 10613 + - uid: 3871 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10614 + - uid: 3872 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10615 + - uid: 3873 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10674 + - uid: 3874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 10801 + - uid: 3875 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10804 + - uid: 3876 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10806 + - uid: 3877 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10807 + - uid: 3878 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10809 + - uid: 3879 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10810 + - uid: 3880 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10835 + - uid: 3881 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10836 + - uid: 3882 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10837 + - uid: 3883 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10838 + - uid: 3884 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10839 + - uid: 3885 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10840 + - uid: 3886 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10844 + - uid: 3887 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 10866 + - uid: 3888 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10962 + - uid: 3889 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 11125 + - uid: 3890 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11126 + - uid: 3891 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11127 + - uid: 3892 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11128 + - uid: 3893 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11129 + - uid: 3894 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11130 + - uid: 3895 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11131 + - uid: 3896 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11132 + - uid: 3897 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11133 + - uid: 3898 components: - type: Transform pos: 0.5,-350.5 parent: 2 - - uid: 11134 + - uid: 3899 components: - type: Transform pos: 0.5,-351.5 parent: 2 - - uid: 11135 + - uid: 3900 components: - type: Transform pos: 0.5,-352.5 parent: 2 - - uid: 11136 + - uid: 3901 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11137 + - uid: 3902 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11138 + - uid: 3903 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11139 + - uid: 3904 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11264 + - uid: 3905 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11265 + - uid: 3906 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11266 + - uid: 3907 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11269 + - uid: 3908 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11270 + - uid: 3909 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11271 + - uid: 3910 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11272 + - uid: 3911 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11273 + - uid: 3912 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11274 + - uid: 3913 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11411 + - uid: 3914 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11412 + - uid: 3915 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11844 + - uid: 3916 components: - type: Transform pos: 0.5,-381.5 parent: 2 - - uid: 11845 + - uid: 3917 components: - type: Transform pos: 4.5,-361.5 parent: 2 - - uid: 11846 + - uid: 3918 components: - type: Transform pos: 4.5,-362.5 parent: 2 - - uid: 11847 + - uid: 3919 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11848 + - uid: 3920 components: - type: Transform pos: 4.5,-364.5 parent: 2 - - uid: 11849 + - uid: 3921 components: - type: Transform pos: 4.5,-365.5 parent: 2 - - uid: 11850 + - uid: 3922 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11851 + - uid: 3923 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11852 + - uid: 3924 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11853 + - uid: 3925 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11854 + - uid: 3926 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11855 + - uid: 3927 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11856 + - uid: 3928 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11857 + - uid: 3929 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11858 + - uid: 3930 components: - type: Transform pos: 3.5,-373.5 parent: 2 - - uid: 11859 + - uid: 3931 components: - type: Transform pos: 2.5,-373.5 parent: 2 - - uid: 11860 + - uid: 3932 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11861 + - uid: 3933 components: - type: Transform pos: 0.5,-373.5 parent: 2 - - uid: 11862 + - uid: 3934 components: - type: Transform pos: 0.5,-374.5 parent: 2 - - uid: 11863 + - uid: 3935 components: - type: Transform pos: 0.5,-375.5 parent: 2 - - uid: 11864 + - uid: 3936 components: - type: Transform pos: 0.5,-378.5 parent: 2 - - uid: 11865 + - uid: 3937 components: - type: Transform pos: 0.5,-379.5 parent: 2 - - uid: 11866 + - uid: 3938 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 11917 + - uid: 3939 components: - type: Transform pos: 0.5,-383.5 parent: 2 - - uid: 11999 + - uid: 3940 components: - type: Transform pos: 6.5,-386.5 parent: 2 - - uid: 12004 + - uid: 3941 components: - type: Transform pos: 6.5,-384.5 parent: 2 - - uid: 12015 + - uid: 3942 components: - type: Transform pos: 2.5,-384.5 parent: 2 - - uid: 12018 + - uid: 3943 components: - type: Transform pos: 3.5,-384.5 parent: 2 - - uid: 12019 + - uid: 3944 components: - type: Transform pos: 0.5,-384.5 parent: 2 - - uid: 12022 + - uid: 3945 components: - type: Transform pos: 6.5,-385.5 parent: 2 - - uid: 13988 + - uid: 3946 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 13999 + - uid: 3947 components: - type: Transform pos: 6.5,-256.5 parent: 2 - - uid: 14002 + - uid: 3948 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14007 + - uid: 3949 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 14013 + - uid: 3950 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 16695 + - uid: 3951 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 16696 + - uid: 3952 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16918 + - uid: 3953 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16938 + - uid: 3954 components: - type: Transform pos: -0.5,-248.5 parent: 2 - proto: CableHVStack entities: - - uid: 42 + - uid: 3955 components: - type: Transform pos: 15.409912,-245.26797 parent: 2 - - uid: 896 + - uid: 3956 components: - type: Transform pos: 15.568392,-245.34718 parent: 2 - - uid: 11672 + - uid: 3957 components: - type: Transform pos: -2.0963848,-7.519528 parent: 2 - - uid: 16801 + - uid: 3959 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableMV entities: - - uid: 81 + - uid: 3962 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 191 + - uid: 3963 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 479 + - uid: 3964 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 572 + - uid: 3965 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 582 + - uid: 3966 components: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 587 + - uid: 3967 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 916 + - uid: 3968 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 1119 + - uid: 3969 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1127 + - uid: 3970 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 1144 + - uid: 3971 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 1250 + - uid: 3972 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 1462 + - uid: 3973 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 1497 + - uid: 3974 components: - type: Transform pos: 1.5,-360.5 parent: 2 - - uid: 1675 + - uid: 3975 components: - type: Transform pos: -12.5,-252.5 parent: 2 - - uid: 1676 + - uid: 3976 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2001 + - uid: 3977 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - uid: 2062 + - uid: 3978 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2068 + - uid: 3979 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 2069 + - uid: 3980 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 2070 + - uid: 3981 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 2071 + - uid: 3982 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 2097 + - uid: 3983 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 2191 + - uid: 3984 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 2305 + - uid: 3985 components: - type: Transform pos: -14.5,-253.5 parent: 2 - - uid: 2477 + - uid: 3986 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 2847 + - uid: 3987 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 2848 + - uid: 3988 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 2851 + - uid: 3989 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 3172 + - uid: 3990 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 3173 + - uid: 3991 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 3218 + - uid: 3992 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 3242 + - uid: 3993 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 3245 + - uid: 3994 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 3248 + - uid: 3995 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 3557 + - uid: 3996 components: - type: Transform pos: -5.5,-336.5 parent: 2 - - uid: 3576 + - uid: 3997 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 3678 + - uid: 3998 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 3701 + - uid: 3999 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 3838 + - uid: 4000 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 3839 + - uid: 4001 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 3879 + - uid: 4002 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 4046 + - uid: 4003 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 4163 + - uid: 4004 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 4235 + - uid: 4005 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 4345 + - uid: 4006 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 4346 + - uid: 4007 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 4349 + - uid: 4008 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 4354 + - uid: 4009 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 4555 + - uid: 4010 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 4681 + - uid: 4011 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 4784 + - uid: 4012 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4898 + - uid: 4013 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 5002 + - uid: 4014 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 5003 + - uid: 4015 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 5004 + - uid: 4016 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 5005 + - uid: 4017 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 5354 + - uid: 4018 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5387 + - uid: 4019 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5490 + - uid: 4020 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5492 + - uid: 4021 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5657 + - uid: 4022 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 5663 + - uid: 4023 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5664 + - uid: 4024 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5665 + - uid: 4025 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5666 + - uid: 4026 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5667 + - uid: 4027 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5668 + - uid: 4028 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5669 + - uid: 4029 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5670 + - uid: 4030 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5671 + - uid: 4031 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5672 + - uid: 4032 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5673 + - uid: 4033 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5674 + - uid: 4034 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5675 + - uid: 4035 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5678 + - uid: 4036 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 5679 + - uid: 4037 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5680 + - uid: 4038 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 5681 + - uid: 4039 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5682 + - uid: 4040 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5683 + - uid: 4041 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5684 + - uid: 4042 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5686 + - uid: 4043 components: - type: Transform pos: 1.5,-7.5 parent: 2 - - uid: 5687 + - uid: 4044 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 5688 + - uid: 4045 components: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 5689 + - uid: 4046 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 5690 + - uid: 4047 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 5691 + - uid: 4048 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 5692 + - uid: 4049 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5693 + - uid: 4050 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5741 + - uid: 4051 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5784 + - uid: 4052 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5785 + - uid: 4053 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5786 + - uid: 4054 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5787 + - uid: 4055 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5788 + - uid: 4056 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5789 + - uid: 4057 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5790 + - uid: 4058 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5791 + - uid: 4059 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5792 + - uid: 4060 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5793 + - uid: 4061 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5794 + - uid: 4062 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5795 + - uid: 4063 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5796 + - uid: 4064 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5797 + - uid: 4065 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5798 + - uid: 4066 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5799 + - uid: 4067 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5800 + - uid: 4068 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5801 + - uid: 4069 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5802 + - uid: 4070 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5803 + - uid: 4071 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 5804 + - uid: 4072 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 5806 + - uid: 4073 components: - type: Transform pos: 3.5,-31.5 parent: 2 - - uid: 5807 + - uid: 4074 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5808 + - uid: 4075 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 5809 + - uid: 4076 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5810 + - uid: 4077 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5811 + - uid: 4078 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5812 + - uid: 4079 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5813 + - uid: 4080 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5814 + - uid: 4081 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5815 + - uid: 4082 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5816 + - uid: 4083 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5817 + - uid: 4084 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5960 + - uid: 4085 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 5972 + - uid: 4086 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5973 + - uid: 4087 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5974 + - uid: 4088 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5975 + - uid: 4089 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5976 + - uid: 4090 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5977 + - uid: 4091 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5978 + - uid: 4092 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5979 + - uid: 4093 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5980 + - uid: 4094 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5981 + - uid: 4095 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5982 + - uid: 4096 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 5983 + - uid: 4097 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5984 + - uid: 4098 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 5985 + - uid: 4099 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 5986 + - uid: 4100 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 5987 + - uid: 4101 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 5988 + - uid: 4102 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 5989 + - uid: 4103 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 5990 + - uid: 4104 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 5992 + - uid: 4105 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 5993 + - uid: 4106 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 5994 + - uid: 4107 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 5995 + - uid: 4108 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 5996 + - uid: 4109 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 5997 + - uid: 4110 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 5998 + - uid: 4111 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 5999 + - uid: 4112 components: - type: Transform pos: -1.5,-68.5 parent: 2 - - uid: 6000 + - uid: 4113 components: - type: Transform pos: -2.5,-68.5 parent: 2 - - uid: 6001 + - uid: 4114 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 6002 + - uid: 4115 components: - type: Transform pos: -4.5,-68.5 parent: 2 - - uid: 6004 + - uid: 4116 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 6005 + - uid: 4117 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6006 + - uid: 4118 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6007 + - uid: 4119 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6008 + - uid: 4120 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6009 + - uid: 4121 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 6010 + - uid: 4122 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 6011 + - uid: 4123 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 6012 + - uid: 4124 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6013 + - uid: 4125 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 6014 + - uid: 4126 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 6130 + - uid: 4127 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 6131 + - uid: 4128 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6132 + - uid: 4129 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6133 + - uid: 4130 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6134 + - uid: 4131 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6135 + - uid: 4132 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6136 + - uid: 4133 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6137 + - uid: 4134 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6138 + - uid: 4135 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6139 + - uid: 4136 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6140 + - uid: 4137 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 6141 + - uid: 4138 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 6142 + - uid: 4139 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 6143 + - uid: 4140 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 6144 + - uid: 4141 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 6145 + - uid: 4142 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 6146 + - uid: 4143 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 6147 + - uid: 4144 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6148 + - uid: 4145 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6149 + - uid: 4146 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6150 + - uid: 4147 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6151 + - uid: 4148 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6152 + - uid: 4149 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 6153 + - uid: 4150 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 6154 + - uid: 4151 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6155 + - uid: 4152 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6156 + - uid: 4153 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6157 + - uid: 4154 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6158 + - uid: 4155 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6159 + - uid: 4156 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6160 + - uid: 4157 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6186 + - uid: 4158 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 6285 + - uid: 4159 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 6287 + - uid: 4160 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 6288 + - uid: 4161 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 6289 + - uid: 4162 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 6290 + - uid: 4163 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 6291 + - uid: 4164 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 6292 + - uid: 4165 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6293 + - uid: 4166 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6294 + - uid: 4167 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6295 + - uid: 4168 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6296 + - uid: 4169 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 6297 + - uid: 4170 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 6298 + - uid: 4171 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 6299 + - uid: 4172 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 6300 + - uid: 4173 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6301 + - uid: 4174 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6305 + - uid: 4175 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6446 + - uid: 4176 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 6447 + - uid: 4177 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6448 + - uid: 4178 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6449 + - uid: 4179 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6450 + - uid: 4180 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6451 + - uid: 4181 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6452 + - uid: 4182 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6453 + - uid: 4183 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6454 + - uid: 4184 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6455 + - uid: 4185 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6456 + - uid: 4186 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6457 + - uid: 4187 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6458 + - uid: 4188 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6459 + - uid: 4189 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6460 + - uid: 4190 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6461 + - uid: 4191 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6462 + - uid: 4192 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6463 + - uid: 4193 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 6464 + - uid: 4194 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6465 + - uid: 4195 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6466 + - uid: 4196 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 6467 + - uid: 4197 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 6468 + - uid: 4198 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 6469 + - uid: 4199 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 6470 + - uid: 4200 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 6471 + - uid: 4201 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 6472 + - uid: 4202 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 6473 + - uid: 4203 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 6474 + - uid: 4204 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 6475 + - uid: 4205 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 6476 + - uid: 4206 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6477 + - uid: 4207 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6478 + - uid: 4208 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6479 + - uid: 4209 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6480 + - uid: 4210 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6481 + - uid: 4211 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 6482 + - uid: 4212 components: - type: Transform pos: -0.5,-140.5 parent: 2 - - uid: 6483 + - uid: 4213 components: - type: Transform pos: -1.5,-140.5 parent: 2 - - uid: 6484 + - uid: 4214 components: - type: Transform pos: -2.5,-140.5 parent: 2 - - uid: 6485 + - uid: 4215 components: - type: Transform pos: -3.5,-140.5 parent: 2 - - uid: 6486 + - uid: 4216 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6487 + - uid: 4217 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6488 + - uid: 4218 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6489 + - uid: 4219 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6490 + - uid: 4220 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6491 + - uid: 4221 components: - type: Transform pos: -4.5,-135.5 parent: 2 - - uid: 6492 + - uid: 4222 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6493 + - uid: 4223 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6511 + - uid: 4224 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 6552 + - uid: 4225 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 6553 + - uid: 4226 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 6628 + - uid: 4227 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 6629 + - uid: 4228 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 6632 + - uid: 4229 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 6651 + - uid: 4230 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 6670 + - uid: 4231 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 6737 + - uid: 4232 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 6754 + - uid: 4233 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 6755 + - uid: 4234 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 6756 + - uid: 4235 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 6757 + - uid: 4236 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 6758 + - uid: 4237 components: - type: Transform pos: 15.5,-249.5 parent: 2 - - uid: 6761 + - uid: 4238 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 6762 + - uid: 4239 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6764 + - uid: 4240 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 6920 + - uid: 4241 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 6921 + - uid: 4242 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 6922 + - uid: 4243 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6923 + - uid: 4244 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6924 + - uid: 4245 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6925 + - uid: 4246 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 6926 + - uid: 4247 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6927 + - uid: 4248 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6928 + - uid: 4249 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6929 + - uid: 4250 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6930 + - uid: 4251 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 6931 + - uid: 4252 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 6932 + - uid: 4253 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 6933 + - uid: 4254 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 6934 + - uid: 4255 components: - type: Transform pos: 1.5,-170.5 parent: 2 - - uid: 6935 + - uid: 4256 components: - type: Transform pos: 1.5,-171.5 parent: 2 - - uid: 6936 + - uid: 4257 components: - type: Transform pos: 1.5,-172.5 parent: 2 - - uid: 6937 + - uid: 4258 components: - type: Transform pos: 1.5,-173.5 parent: 2 - - uid: 6938 + - uid: 4259 components: - type: Transform pos: 1.5,-174.5 parent: 2 - - uid: 6939 + - uid: 4260 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 6940 + - uid: 4261 components: - type: Transform pos: 1.5,-176.5 parent: 2 - - uid: 6941 + - uid: 4262 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6942 + - uid: 4263 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 7064 + - uid: 4264 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7065 + - uid: 4265 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7066 + - uid: 4266 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7067 + - uid: 4267 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7068 + - uid: 4268 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 7069 + - uid: 4269 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 7070 + - uid: 4270 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 7071 + - uid: 4271 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 7072 + - uid: 4272 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 7073 + - uid: 4273 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 7074 + - uid: 4274 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 7075 + - uid: 4275 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 7076 + - uid: 4276 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7077 + - uid: 4277 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7078 + - uid: 4278 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7079 + - uid: 4279 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7080 + - uid: 4280 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 7081 + - uid: 4281 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7082 + - uid: 4282 components: - type: Transform pos: -0.5,-198.5 parent: 2 - - uid: 7083 + - uid: 4283 components: - type: Transform pos: -1.5,-198.5 parent: 2 - - uid: 7084 + - uid: 4284 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7085 + - uid: 4285 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7086 + - uid: 4286 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7087 + - uid: 4287 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7088 + - uid: 4288 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7089 + - uid: 4289 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7090 + - uid: 4290 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7243 + - uid: 4291 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 7262 + - uid: 4292 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 7263 + - uid: 4293 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7481 + - uid: 4294 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7575 + - uid: 4295 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 7576 + - uid: 4296 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 7577 + - uid: 4297 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7584 + - uid: 4298 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7586 + - uid: 4299 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7587 + - uid: 4300 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7589 + - uid: 4301 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7590 + - uid: 4302 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7608 + - uid: 4303 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7609 + - uid: 4304 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7610 + - uid: 4305 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7611 + - uid: 4306 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 7612 + - uid: 4307 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 7613 + - uid: 4308 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7614 + - uid: 4309 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7615 + - uid: 4310 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7616 + - uid: 4311 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7617 + - uid: 4312 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7618 + - uid: 4313 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 7619 + - uid: 4314 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 7880 + - uid: 4315 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7965 + - uid: 4316 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7966 + - uid: 4317 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7968 + - uid: 4318 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7969 + - uid: 4319 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7970 + - uid: 4320 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 8102 + - uid: 4321 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8114 + - uid: 4322 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8140 + - uid: 4323 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8179 + - uid: 4324 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 8203 + - uid: 4325 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 8316 + - uid: 4326 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8317 + - uid: 4327 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8318 + - uid: 4328 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8319 + - uid: 4329 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8321 + - uid: 4330 components: - type: Transform pos: 15.5,-139.5 parent: 2 - - uid: 8322 + - uid: 4331 components: - type: Transform pos: 15.5,-140.5 parent: 2 - - uid: 8324 + - uid: 4332 components: - type: Transform pos: 15.5,-142.5 parent: 2 - - uid: 8325 + - uid: 4333 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 8326 + - uid: 4334 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 8327 + - uid: 4335 components: - type: Transform pos: 15.5,-145.5 parent: 2 - - uid: 8328 + - uid: 4336 components: - type: Transform pos: 15.5,-147.5 parent: 2 - - uid: 8329 + - uid: 4337 components: - type: Transform pos: 15.5,-148.5 parent: 2 - - uid: 8330 + - uid: 4338 components: - type: Transform pos: 15.5,-149.5 parent: 2 - - uid: 8331 + - uid: 4339 components: - type: Transform pos: 15.5,-150.5 parent: 2 - - uid: 8332 + - uid: 4340 components: - type: Transform pos: 15.5,-151.5 parent: 2 - - uid: 8333 + - uid: 4341 components: - type: Transform pos: 15.5,-153.5 parent: 2 - - uid: 8334 + - uid: 4342 components: - type: Transform pos: 15.5,-154.5 parent: 2 - - uid: 8335 + - uid: 4343 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8336 + - uid: 4344 components: - type: Transform pos: 15.5,-156.5 parent: 2 - - uid: 8337 + - uid: 4345 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 8338 + - uid: 4346 components: - type: Transform pos: 15.5,-158.5 parent: 2 - - uid: 8339 + - uid: 4347 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8340 + - uid: 4348 components: - type: Transform pos: 15.5,-160.5 parent: 2 - - uid: 8341 + - uid: 4349 components: - type: Transform pos: 15.5,-162.5 parent: 2 - - uid: 8342 + - uid: 4350 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 8343 + - uid: 4351 components: - type: Transform pos: 15.5,-164.5 parent: 2 - - uid: 8344 + - uid: 4352 components: - type: Transform pos: 15.5,-165.5 parent: 2 - - uid: 8501 + - uid: 4353 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 8795 + - uid: 4354 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 9144 + - uid: 4355 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9145 + - uid: 4356 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9146 + - uid: 4357 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9147 + - uid: 4358 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9148 + - uid: 4359 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9149 + - uid: 4360 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9150 + - uid: 4361 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9151 + - uid: 4362 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9152 + - uid: 4363 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9153 + - uid: 4364 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9154 + - uid: 4365 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9155 + - uid: 4366 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9156 + - uid: 4367 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 9157 + - uid: 4368 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 9158 + - uid: 4369 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 9159 + - uid: 4370 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9160 + - uid: 4371 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9161 + - uid: 4372 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9162 + - uid: 4373 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9163 + - uid: 4374 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9168 + - uid: 4375 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9169 + - uid: 4376 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9175 + - uid: 4377 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9176 + - uid: 4378 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9177 + - uid: 4379 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9178 + - uid: 4380 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9179 + - uid: 4381 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9180 + - uid: 4382 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9181 + - uid: 4383 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9182 + - uid: 4384 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9183 + - uid: 4385 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9184 + - uid: 4386 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9186 + - uid: 4387 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9188 + - uid: 4388 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9189 + - uid: 4389 components: - type: Transform pos: -0.5,-285.5 parent: 2 - - uid: 9190 + - uid: 4390 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 9191 + - uid: 4391 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9192 + - uid: 4392 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9193 + - uid: 4393 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9194 + - uid: 4394 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9195 + - uid: 4395 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9196 + - uid: 4396 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9197 + - uid: 4397 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9198 + - uid: 4398 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9199 + - uid: 4399 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9200 + - uid: 4400 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9201 + - uid: 4401 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9202 + - uid: 4402 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9203 + - uid: 4403 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9204 + - uid: 4404 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9205 + - uid: 4405 components: - type: Transform pos: -5.5,-274.5 parent: 2 - - uid: 9206 + - uid: 4406 components: - type: Transform pos: -5.5,-273.5 parent: 2 - - uid: 9207 + - uid: 4407 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9208 + - uid: 4408 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9210 + - uid: 4409 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9211 + - uid: 4410 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9212 + - uid: 4411 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9213 + - uid: 4412 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9214 + - uid: 4413 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9502 + - uid: 4414 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 9588 + - uid: 4415 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9589 + - uid: 4416 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9590 + - uid: 4417 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9591 + - uid: 4418 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9592 + - uid: 4419 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9593 + - uid: 4420 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9594 + - uid: 4421 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9595 + - uid: 4422 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9596 + - uid: 4423 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9597 + - uid: 4424 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9598 + - uid: 4425 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9599 + - uid: 4426 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9600 + - uid: 4427 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9601 + - uid: 4428 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9602 + - uid: 4429 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9603 + - uid: 4430 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9604 + - uid: 4431 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9605 + - uid: 4432 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9606 + - uid: 4433 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9607 + - uid: 4434 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9608 + - uid: 4435 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9609 + - uid: 4436 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9610 + - uid: 4437 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9611 + - uid: 4438 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9612 + - uid: 4439 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9614 + - uid: 4440 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9615 + - uid: 4441 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 10217 + - uid: 4442 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10227 + - uid: 4443 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10228 + - uid: 4444 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10229 + - uid: 4445 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10230 + - uid: 4446 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10231 + - uid: 4447 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10232 + - uid: 4448 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10233 + - uid: 4449 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10234 + - uid: 4450 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10235 + - uid: 4451 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10236 + - uid: 4452 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10237 + - uid: 4453 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10238 + - uid: 4454 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10239 + - uid: 4455 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10240 + - uid: 4456 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10241 + - uid: 4457 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10242 + - uid: 4458 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10243 + - uid: 4459 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10244 + - uid: 4460 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10245 + - uid: 4461 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10246 + - uid: 4462 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10247 + - uid: 4463 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10248 + - uid: 4464 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10249 + - uid: 4465 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10250 + - uid: 4466 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10251 + - uid: 4467 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10252 + - uid: 4468 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10253 + - uid: 4469 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10254 + - uid: 4470 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10255 + - uid: 4471 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10256 + - uid: 4472 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10257 + - uid: 4473 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10258 + - uid: 4474 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10259 + - uid: 4475 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10260 + - uid: 4476 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10261 + - uid: 4477 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10262 + - uid: 4478 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10263 + - uid: 4479 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10264 + - uid: 4480 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10265 + - uid: 4481 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10266 + - uid: 4482 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10267 + - uid: 4483 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10268 + - uid: 4484 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10269 + - uid: 4485 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10270 + - uid: 4486 components: - type: Transform pos: 6.5,-309.5 parent: 2 - - uid: 10271 + - uid: 4487 components: - type: Transform pos: 6.5,-310.5 parent: 2 - - uid: 10272 + - uid: 4488 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10273 + - uid: 4489 components: - type: Transform pos: 6.5,-312.5 parent: 2 - - uid: 10274 + - uid: 4490 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10275 + - uid: 4491 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 10279 + - uid: 4492 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10280 + - uid: 4493 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10281 + - uid: 4494 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10282 + - uid: 4495 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10283 + - uid: 4496 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10284 + - uid: 4497 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10285 + - uid: 4498 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10286 + - uid: 4499 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10287 + - uid: 4500 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10288 + - uid: 4501 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10289 + - uid: 4502 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10290 + - uid: 4503 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10291 + - uid: 4504 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10292 + - uid: 4505 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10293 + - uid: 4506 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10294 + - uid: 4507 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10295 + - uid: 4508 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10296 + - uid: 4509 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10297 + - uid: 4510 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10298 + - uid: 4511 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10299 + - uid: 4512 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10300 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10301 + - uid: 4513 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10302 + - uid: 4514 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10303 + - uid: 4515 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10304 + - uid: 4516 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10305 + - uid: 4517 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10306 + - uid: 4518 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10307 + - uid: 4519 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10308 + - uid: 4520 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10309 + - uid: 4521 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10310 + - uid: 4522 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10311 + - uid: 4523 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10312 + - uid: 4524 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10313 + - uid: 4525 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10314 + - uid: 4526 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10315 + - uid: 4527 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10316 + - uid: 4528 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10317 + - uid: 4529 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10318 + - uid: 4530 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10319 + - uid: 4531 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10320 + - uid: 4532 components: - type: Transform pos: 0.5,-307.5 parent: 2 - - uid: 10321 + - uid: 4533 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10322 + - uid: 4534 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 10323 + - uid: 4535 components: - type: Transform pos: -1.5,-308.5 parent: 2 - - uid: 10324 + - uid: 4536 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10325 + - uid: 4537 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10332 + - uid: 4538 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10336 + - uid: 4539 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10337 + - uid: 4540 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10339 + - uid: 4541 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10340 + - uid: 4542 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10341 + - uid: 4543 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10342 + - uid: 4544 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10343 + - uid: 4545 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10348 + - uid: 4546 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10349 + - uid: 4547 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 10350 + - uid: 4548 components: - type: Transform pos: -3.5,-305.5 parent: 2 - - uid: 10351 + - uid: 4549 components: - type: Transform pos: -3.5,-304.5 parent: 2 - - uid: 10634 + - uid: 4550 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10657 + - uid: 4551 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 10673 + - uid: 4552 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 10763 + - uid: 4553 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 10853 + - uid: 4554 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 10856 + - uid: 4555 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 10857 + - uid: 4556 components: - type: Transform pos: 1.5,-340.5 parent: 2 - - uid: 10858 + - uid: 4557 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10859 + - uid: 4558 components: - type: Transform pos: -0.5,-340.5 parent: 2 - - uid: 10865 + - uid: 4559 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 10871 + - uid: 4560 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10876 + - uid: 4561 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 10877 + - uid: 4562 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10878 + - uid: 4563 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10879 + - uid: 4564 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10880 + - uid: 4565 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10881 + - uid: 4566 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10882 + - uid: 4567 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10883 + - uid: 4568 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10884 + - uid: 4569 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10885 + - uid: 4570 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10886 + - uid: 4571 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10887 + - uid: 4572 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10888 + - uid: 4573 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10889 + - uid: 4574 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10890 + - uid: 4575 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10891 + - uid: 4576 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10892 + - uid: 4577 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10893 + - uid: 4578 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10894 + - uid: 4579 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 10895 + - uid: 4580 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10896 + - uid: 4581 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10897 + - uid: 4582 components: - type: Transform pos: -1.5,-340.5 parent: 2 - - uid: 10898 + - uid: 4583 components: - type: Transform pos: -2.5,-340.5 parent: 2 - - uid: 10899 + - uid: 4584 components: - type: Transform pos: -3.5,-340.5 parent: 2 - - uid: 10900 + - uid: 4585 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 10901 + - uid: 4586 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 10902 + - uid: 4587 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 10903 + - uid: 4588 components: - type: Transform pos: -4.5,-343.5 parent: 2 - - uid: 10904 + - uid: 4589 components: - type: Transform pos: -4.5,-344.5 parent: 2 - - uid: 10905 + - uid: 4590 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10906 + - uid: 4591 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 10907 + - uid: 4592 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10908 + - uid: 4593 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10909 + - uid: 4594 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 10910 + - uid: 4595 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10911 + - uid: 4596 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10912 + - uid: 4597 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10916 + - uid: 4598 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 10968 + - uid: 4599 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 11541 + - uid: 4600 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11542 + - uid: 4601 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11543 + - uid: 4602 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11544 + - uid: 4603 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11545 + - uid: 4604 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11546 + - uid: 4605 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11552 + - uid: 4606 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11920 + - uid: 4607 components: - type: Transform pos: 2.5,-389.5 parent: 2 - - uid: 11923 + - uid: 4608 components: - type: Transform pos: 1.5,-389.5 parent: 2 - - uid: 11932 + - uid: 4609 components: - type: Transform pos: 0.5,-387.5 parent: 2 - - uid: 11934 + - uid: 4610 components: - type: Transform pos: 0.5,-388.5 parent: 2 - - uid: 11935 + - uid: 4611 components: - type: Transform pos: 0.5,-389.5 parent: 2 - - uid: 11964 + - uid: 4612 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 11969 + - uid: 4613 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 12996 + - uid: 4614 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 13398 + - uid: 4615 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 4616 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 13400 + - uid: 4617 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 13403 + - uid: 4618 components: - type: Transform pos: 6.5,-340.5 parent: 2 - - uid: 13467 + - uid: 4619 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 13514 + - uid: 4620 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 13515 + - uid: 4621 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 13516 + - uid: 4622 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 13517 + - uid: 4623 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 14482 + - uid: 4624 components: - type: Transform pos: 5.5,-96.5 parent: 2 - - uid: 14483 + - uid: 4625 components: - type: Transform pos: 5.5,-95.5 parent: 2 - - uid: 14484 + - uid: 4626 components: - type: Transform pos: 5.5,-94.5 parent: 2 - - uid: 14485 + - uid: 4627 components: - type: Transform pos: 5.5,-93.5 parent: 2 - - uid: 14486 + - uid: 4628 components: - type: Transform pos: 5.5,-92.5 parent: 2 - - uid: 14487 + - uid: 4629 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 14488 + - uid: 4630 components: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 14489 + - uid: 4631 components: - type: Transform pos: 5.5,-89.5 parent: 2 - - uid: 14490 + - uid: 4632 components: - type: Transform pos: 5.5,-88.5 parent: 2 - - uid: 14491 + - uid: 4633 components: - type: Transform pos: 5.5,-87.5 parent: 2 - - uid: 14492 + - uid: 4634 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 14493 + - uid: 4635 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 14494 + - uid: 4636 components: - type: Transform pos: 5.5,-84.5 parent: 2 - - uid: 14495 + - uid: 4637 components: - type: Transform pos: 5.5,-83.5 parent: 2 - - uid: 14496 + - uid: 4638 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 14497 + - uid: 4639 components: - type: Transform pos: 5.5,-81.5 parent: 2 - - uid: 14498 + - uid: 4640 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 14499 + - uid: 4641 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14500 + - uid: 4642 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 14501 + - uid: 4643 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14502 + - uid: 4644 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14503 + - uid: 4645 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14504 + - uid: 4646 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14505 + - uid: 4647 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14506 + - uid: 4648 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14507 + - uid: 4649 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14508 + - uid: 4650 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14509 + - uid: 4651 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14510 + - uid: 4652 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14511 + - uid: 4653 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14512 + - uid: 4654 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14513 + - uid: 4655 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14603 + - uid: 4656 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 15133 + - uid: 4657 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 15137 + - uid: 4658 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 15139 + - uid: 4659 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 15140 + - uid: 4660 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15141 + - uid: 4661 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 15142 + - uid: 4662 components: - type: Transform pos: 6.5,-120.5 parent: 2 - - uid: 15143 + - uid: 4663 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 15144 + - uid: 4664 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 15145 + - uid: 4665 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 15146 + - uid: 4666 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 15147 + - uid: 4667 components: - type: Transform pos: 5.5,-118.5 parent: 2 - - uid: 15148 + - uid: 4668 components: - type: Transform pos: 5.5,-119.5 parent: 2 - - uid: 15298 + - uid: 4669 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 16538 + - uid: 4670 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 16659 + - uid: 4671 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 16661 + - uid: 4672 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16662 + - uid: 4673 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16663 + - uid: 4674 components: - type: Transform pos: -18.5,-264.5 parent: 2 - - uid: 16664 + - uid: 4675 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 16665 + - uid: 4676 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 16666 + - uid: 4677 components: - type: Transform pos: -18.5,-261.5 parent: 2 - - uid: 16667 + - uid: 4678 components: - type: Transform pos: -18.5,-260.5 parent: 2 - - uid: 16668 + - uid: 4679 components: - type: Transform pos: -18.5,-259.5 parent: 2 - - uid: 16669 + - uid: 4680 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 16670 + - uid: 4681 components: - type: Transform pos: -18.5,-257.5 parent: 2 - - uid: 16671 + - uid: 4682 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16672 + - uid: 4683 components: - type: Transform pos: -18.5,-255.5 parent: 2 - - uid: 16673 + - uid: 4684 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 16674 + - uid: 4685 components: - type: Transform pos: -17.5,-254.5 parent: 2 - - uid: 16675 + - uid: 4686 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16676 + - uid: 4687 components: - type: Transform pos: -15.5,-254.5 parent: 2 - - uid: 16677 + - uid: 4688 components: - type: Transform pos: -14.5,-254.5 parent: 2 - - uid: 16688 + - uid: 4689 components: - type: Transform pos: -13.5,-253.5 parent: 2 - - uid: 16691 + - uid: 4690 components: - type: Transform pos: -13.5,-252.5 parent: 2 - proto: CableMVStack entities: - - uid: 6898 + - uid: 4691 components: - type: Transform pos: 15.528771,-245.63763 parent: 2 - - uid: 6900 + - uid: 4692 components: - type: Transform pos: 15.357085,-245.58482 parent: 2 - - uid: 11673 + - uid: 4693 components: - type: Transform pos: -2.1301281,-7.3508615 parent: 2 - - uid: 16814 + - uid: 4695 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableTerminal entities: - - uid: 713 + - uid: 4698 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-251.5 parent: 2 - - uid: 5435 + - uid: 4699 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-229.5 parent: 2 - - uid: 5436 + - uid: 4700 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-220.5 parent: 2 - - uid: 6203 + - uid: 4701 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-251.5 parent: 2 - - uid: 6205 + - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-252.5 parent: 2 - - uid: 6231 + - uid: 4703 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-253.5 parent: 2 - - uid: 9468 + - uid: 4704 components: - type: Transform pos: 3.5,-345.5 parent: 2 - proto: CandleBlackInfinite entities: - - uid: 606 + - uid: 4705 components: - type: Transform pos: -2.3014371,-58.2566 parent: 2 - - uid: 631 + - uid: 4706 components: - type: Transform pos: -6.6172776,-58.79888 parent: 2 - - uid: 3029 + - uid: 4707 components: - type: Transform pos: -6.420355,-62.382744 parent: 2 - - uid: 4186 + - uid: 4708 components: - type: Transform pos: -3.5704029,-67.32645 parent: 2 - proto: CandleBlackSmallInfinite entities: - - uid: 613 + - uid: 4709 components: - type: Transform pos: -6.6172776,-59.064507 parent: 2 - - uid: 653 + - uid: 4710 components: - type: Transform pos: -6.3516526,-58.86138 parent: 2 - - uid: 661 + - uid: 4711 components: - type: Transform pos: -6.6172776,-67.4827 parent: 2 - - uid: 2254 + - uid: 4712 components: - type: Transform pos: 1.7255144,-66.4996 parent: 2 - - uid: 3022 + - uid: 4713 components: - type: Transform pos: -6.639105,-62.570244 parent: 2 - - uid: 3202 + - uid: 4714 components: - type: Transform pos: -3.7858121,-58.522224 parent: 2 - - uid: 4183 + - uid: 4715 components: - type: Transform pos: -6.3829026,-67.3577 parent: 2 - - uid: 4185 + - uid: 4716 components: - type: Transform pos: -2.320403,-67.43582 parent: 2 - proto: CandyBucket entities: - - uid: 2369 + - uid: 4717 components: - type: Transform pos: 5.735499,-30.78203 parent: 2 - proto: CannabisSeeds entities: - - uid: 1079 + - uid: 4718 components: - type: Transform pos: -7.3107276,-91.34308 parent: 2 - proto: CapacitorStockPart entities: - - uid: 12432 + - uid: 4719 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5550447,-304.56104 parent: 2 - - uid: 12434 + - uid: 4720 components: - type: Transform pos: -6.343737,-304.3674 parent: 2 - - uid: 12435 + - uid: 4721 components: - type: Transform rot: 3.141592653589793 rad @@ -31551,279 +31299,279 @@ entities: parent: 2 - proto: CaptainIDCard entities: - - uid: 316 + - uid: 4722 components: - type: Transform pos: -0.49034405,-11.254525 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6719 + - uid: 4723 components: - type: Transform pos: -21.5,-253.5 parent: 2 - - uid: 7195 + - uid: 4724 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 9993 + - uid: 4725 components: - type: Transform pos: -4.5,-312.5 parent: 2 - - uid: 11221 + - uid: 4726 components: - type: Transform pos: 4.5,-355.5 parent: 2 - proto: Carpet entities: - - uid: 1888 + - uid: 4727 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-111.5 parent: 2 - - uid: 1889 + - uid: 4728 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-112.5 parent: 2 - - uid: 1890 + - uid: 4729 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-113.5 parent: 2 - - uid: 1891 + - uid: 4730 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-114.5 parent: 2 - - uid: 1892 + - uid: 4731 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-115.5 parent: 2 - - uid: 1893 + - uid: 4732 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-116.5 parent: 2 - - uid: 1894 + - uid: 4733 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-117.5 parent: 2 - - uid: 1895 + - uid: 4734 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-118.5 parent: 2 - - uid: 1896 + - uid: 4735 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-119.5 parent: 2 - - uid: 1897 + - uid: 4736 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-120.5 parent: 2 - - uid: 1898 + - uid: 4737 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-121.5 parent: 2 - - uid: 1899 + - uid: 4738 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-122.5 parent: 2 - - uid: 1900 + - uid: 4739 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-123.5 parent: 2 - - uid: 1901 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-124.5 parent: 2 - - uid: 1902 + - uid: 4741 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-125.5 parent: 2 - - uid: 1903 + - uid: 4742 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-111.5 parent: 2 - - uid: 1904 + - uid: 4743 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-112.5 parent: 2 - - uid: 1905 + - uid: 4744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-113.5 parent: 2 - - uid: 1906 + - uid: 4745 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-114.5 parent: 2 - - uid: 1907 + - uid: 4746 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-115.5 parent: 2 - - uid: 1908 + - uid: 4747 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-116.5 parent: 2 - - uid: 1909 + - uid: 4748 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-117.5 parent: 2 - - uid: 1910 + - uid: 4749 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-118.5 parent: 2 - - uid: 1911 + - uid: 4750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-119.5 parent: 2 - - uid: 1912 + - uid: 4751 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-120.5 parent: 2 - - uid: 1913 + - uid: 4752 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-121.5 parent: 2 - - uid: 1914 + - uid: 4753 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-122.5 parent: 2 - - uid: 1915 + - uid: 4754 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-123.5 parent: 2 - - uid: 1916 + - uid: 4755 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-124.5 parent: 2 - - uid: 1948 + - uid: 4756 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-110.5 parent: 2 - - uid: 1949 + - uid: 4757 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-109.5 parent: 2 - - uid: 1950 + - uid: 4758 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - - uid: 1951 + - uid: 4759 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-110.5 parent: 2 - - uid: 2169 + - uid: 4760 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 2209 + - uid: 4761 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 2425 + - uid: 4762 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 2426 + - uid: 4763 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 2427 + - uid: 4764 components: - type: Transform pos: 4.5,-124.5 parent: 2 - - uid: 2428 + - uid: 4765 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2429 + - uid: 4766 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2430 + - uid: 4767 components: - type: Transform pos: 4.5,-123.5 parent: 2 - - uid: 2431 + - uid: 4768 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 7550 + - uid: 4769 components: - type: Transform rot: 3.141592653589793 rad @@ -31831,339 +31579,329 @@ entities: parent: 2 - proto: CarpetBlack entities: - - uid: 161 + - uid: 4770 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 - - uid: 193 + - uid: 4771 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 2 - - uid: 196 + - uid: 4772 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 2 - - uid: 200 + - uid: 4773 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 211 + - uid: 4774 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 214 + - uid: 4775 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 980 + - uid: 4776 components: - type: Transform pos: -5.5,-72.5 parent: 2 - - uid: 1017 + - uid: 4777 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1555 + - uid: 4778 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 1556 + - uid: 4779 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 1557 + - uid: 4780 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 1558 + - uid: 4781 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 1559 + - uid: 4782 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 1560 + - uid: 4783 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 1564 + - uid: 4784 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 1565 + - uid: 4785 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 1566 + - uid: 4786 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 1567 + - uid: 4787 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 1568 + - uid: 4788 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 1569 + - uid: 4789 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 2730 + - uid: 4790 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 3704 + - uid: 4791 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-10.5 parent: 2 - - uid: 5839 + - uid: 4792 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 11173 + - uid: 4793 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11174 + - uid: 4794 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 11175 + - uid: 4795 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 11176 + - uid: 4796 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 11177 - components: - - type: Transform - pos: -4.5,-344.5 - parent: 2 - - uid: 11178 - components: - - type: Transform - pos: -4.5,-345.5 - parent: 2 - - uid: 14343 + - uid: 4797 components: - type: Transform pos: 14.5,-70.5 parent: 2 - - uid: 14360 + - uid: 4798 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14362 + - uid: 4799 components: - type: Transform pos: 13.5,-70.5 parent: 2 - - uid: 14364 + - uid: 4800 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14370 + - uid: 4801 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14377 + - uid: 4802 components: - type: Transform pos: 13.5,-68.5 parent: 2 - - uid: 14383 + - uid: 4803 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14390 + - uid: 4804 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14391 + - uid: 4805 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14392 + - uid: 4806 components: - type: Transform pos: 16.5,-68.5 parent: 2 - - uid: 14393 + - uid: 4807 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14394 + - uid: 4808 components: - type: Transform pos: 16.5,-70.5 parent: 2 - - uid: 14395 + - uid: 4809 components: - type: Transform pos: 17.5,-68.5 parent: 2 - - uid: 14396 + - uid: 4810 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14397 + - uid: 4811 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14398 + - uid: 4812 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 14399 + - uid: 4813 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14400 + - uid: 4814 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 14401 + - uid: 4815 components: - type: Transform pos: 14.5,-72.5 parent: 2 - - uid: 14402 + - uid: 4816 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14403 + - uid: 4817 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 14404 + - uid: 4818 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14405 + - uid: 4819 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14406 + - uid: 4820 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14407 + - uid: 4821 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - uid: 14408 + - uid: 4822 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14409 + - uid: 4823 components: - type: Transform pos: 16.5,-74.5 parent: 2 - - uid: 14410 + - uid: 4824 components: - type: Transform pos: 17.5,-72.5 parent: 2 - - uid: 14411 + - uid: 4825 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14412 + - uid: 4826 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 14790 + - uid: 4827 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-73.5 parent: 2 - - uid: 14791 + - uid: 4828 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - - uid: 14792 + - uid: 4829 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-72.5 parent: 2 - - uid: 14793 + - uid: 4830 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-73.5 parent: 2 - - uid: 14794 + - uid: 4831 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-73.5 parent: 2 - - uid: 14795 + - uid: 4832 components: - type: Transform rot: 1.5707963267948966 rad @@ -32171,128 +31909,128 @@ entities: parent: 2 - proto: CarpetBlue entities: - - uid: 194 + - uid: 4833 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-11.5 parent: 2 - - uid: 285 + - uid: 4834 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 2 - - uid: 286 + - uid: 4835 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 2 - - uid: 287 + - uid: 4836 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 288 + - uid: 4837 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 2 - - uid: 290 + - uid: 4838 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-14.5 parent: 2 - - uid: 292 + - uid: 4839 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 305 + - uid: 4840 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 2 - - uid: 306 + - uid: 4841 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 2 - - uid: 307 + - uid: 4842 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 2 - - uid: 1264 + - uid: 4843 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 2 - - uid: 2260 + - uid: 4844 components: - type: Transform pos: -1.5,-117.5 parent: 2 - - uid: 2262 + - uid: 4845 components: - type: Transform pos: -1.5,-116.5 parent: 2 - - uid: 2263 + - uid: 4846 components: - type: Transform pos: -0.5,-117.5 parent: 2 - - uid: 2264 + - uid: 4847 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2265 + - uid: 4848 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 2266 + - uid: 4849 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 12166 + - uid: 4850 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: CarpetOrange entities: - - uid: 9099 + - uid: 4851 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - - uid: 9128 + - uid: 4852 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-285.5 parent: 2 - - uid: 9129 + - uid: 4853 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-285.5 parent: 2 - - uid: 9132 + - uid: 4854 components: - type: Transform rot: -1.5707963267948966 rad @@ -32300,2050 +32038,2017 @@ entities: parent: 2 - proto: CarpetPurple entities: - - uid: 2762 + - uid: 4855 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 2763 + - uid: 4856 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 2764 + - uid: 4857 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 2765 + - uid: 4858 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 2766 + - uid: 4859 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 2767 + - uid: 4860 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 2768 + - uid: 4861 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 2769 + - uid: 4862 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 2770 + - uid: 4863 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2771 + - uid: 4864 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 2772 + - uid: 4865 components: - type: Transform pos: -3.5,-142.5 parent: 2 - - uid: 12040 + - uid: 4866 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 12041 + - uid: 4867 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 12042 + - uid: 4868 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 12043 + - uid: 4869 components: - type: Transform pos: -8.5,-302.5 parent: 2 - - uid: 12044 + - uid: 4870 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 12045 + - uid: 4871 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: CarvedPumpkin entities: - - uid: 2651 + - uid: 4872 components: - type: Transform pos: 5.409307,-30.231054 parent: 2 - proto: Catwalk entities: - - uid: 10 + - uid: 4873 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-252.5 parent: 2 - - uid: 51 + - uid: 4874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 150 + - uid: 4875 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 369 + - uid: 4876 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 379 + - uid: 4877 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 380 + - uid: 4878 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 407 + - uid: 4879 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 408 + - uid: 4880 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 410 + - uid: 4881 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 411 + - uid: 4882 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 412 + - uid: 4883 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 413 + - uid: 4884 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 414 + - uid: 4885 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 415 + - uid: 4886 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 416 + - uid: 4887 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 417 + - uid: 4888 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 418 + - uid: 4889 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 463 + - uid: 4890 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 774 + - uid: 4891 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 777 + - uid: 4892 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 778 + - uid: 4893 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 779 + - uid: 4894 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 780 + - uid: 4895 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 781 + - uid: 4896 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 782 + - uid: 4897 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 783 + - uid: 4898 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 784 + - uid: 4899 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 799 + - uid: 4900 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 803 + - uid: 4901 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 808 + - uid: 4902 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-233.5 parent: 2 - - uid: 889 + - uid: 4903 components: - type: Transform pos: -7.5,-94.5 parent: 2 - - uid: 935 + - uid: 4904 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 1091 + - uid: 4905 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 1092 + - uid: 4906 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 1094 + - uid: 4907 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 1096 + - uid: 4908 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 1097 + - uid: 4909 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1098 + - uid: 4910 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 1099 + - uid: 4911 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 1100 + - uid: 4912 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 1101 + - uid: 4913 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 1142 + - uid: 4914 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 1177 + - uid: 4915 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 1248 + - uid: 4916 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1259 + - uid: 4917 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 1423 + - uid: 4918 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 1437 + - uid: 4919 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 1438 + - uid: 4920 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 1439 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 1441 + - uid: 4921 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 1442 + - uid: 4922 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 1443 + - uid: 4923 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 1444 + - uid: 4924 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 1445 + - uid: 4925 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 1446 + - uid: 4926 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1447 + - uid: 4927 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 1448 + - uid: 4928 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 1449 + - uid: 4929 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 1456 + - uid: 4930 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 1457 + - uid: 4931 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 1619 + - uid: 4932 components: - type: Transform pos: -8.5,-95.5 parent: 2 - - uid: 1620 + - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-95.5 parent: 2 - - uid: 1621 + - uid: 4934 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-96.5 parent: 2 - - uid: 1622 + - uid: 4935 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-97.5 parent: 2 - - uid: 1623 + - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-98.5 parent: 2 - - uid: 1625 + - uid: 4937 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-96.5 parent: 2 - - uid: 1755 + - uid: 4938 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-252.5 parent: 2 - - uid: 1757 + - uid: 4939 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-35.5 parent: 2 - - uid: 2020 + - uid: 4940 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-83.5 parent: 2 - - uid: 2021 + - uid: 4941 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 2022 + - uid: 4942 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 2023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 - parent: 2 - - uid: 2024 + - uid: 4943 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 2026 + - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-84.5 parent: 2 - - uid: 2432 + - uid: 4945 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 2433 + - uid: 4946 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 2434 + - uid: 4947 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 2798 + - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - - uid: 2799 + - uid: 4949 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-135.5 parent: 2 - - uid: 2800 + - uid: 4950 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - - uid: 2801 + - uid: 4951 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-136.5 parent: 2 - - uid: 2802 + - uid: 4952 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-136.5 parent: 2 - - uid: 2803 + - uid: 4953 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - - uid: 2804 + - uid: 4954 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-139.5 parent: 2 - - uid: 2805 + - uid: 4955 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-140.5 parent: 2 - - uid: 2806 + - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-143.5 parent: 2 - - uid: 2807 + - uid: 4957 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-144.5 parent: 2 - - uid: 2808 + - uid: 4958 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-145.5 parent: 2 - - uid: 2809 + - uid: 4959 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-150.5 parent: 2 - - uid: 2810 + - uid: 4960 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-151.5 parent: 2 - - uid: 2811 + - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-151.5 parent: 2 - - uid: 2812 + - uid: 4962 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-151.5 parent: 2 - - uid: 3196 + - uid: 4963 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 3263 + - uid: 4964 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-217.5 parent: 2 - - uid: 3271 + - uid: 4965 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-223.5 parent: 2 - - uid: 3272 + - uid: 4966 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-222.5 parent: 2 - - uid: 3274 + - uid: 4967 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-221.5 parent: 2 - - uid: 3354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - uid: 3484 + - uid: 4968 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-163.5 parent: 2 - - uid: 3485 + - uid: 4969 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - - uid: 3486 + - uid: 4970 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-163.5 parent: 2 - - uid: 3490 + - uid: 4971 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-169.5 parent: 2 - - uid: 3491 + - uid: 4972 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-170.5 parent: 2 - - uid: 3492 + - uid: 4973 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-171.5 parent: 2 - - uid: 3493 + - uid: 4974 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-173.5 parent: 2 - - uid: 3494 + - uid: 4975 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-174.5 parent: 2 - - uid: 3495 + - uid: 4976 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-176.5 parent: 2 - - uid: 3496 + - uid: 4977 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-177.5 parent: 2 - - uid: 3497 + - uid: 4978 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - - uid: 3498 + - uid: 4979 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-179.5 parent: 2 - - uid: 3499 + - uid: 4980 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-179.5 parent: 2 - - uid: 3501 + - uid: 4981 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-180.5 parent: 2 - - uid: 3502 + - uid: 4982 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-179.5 parent: 2 - - uid: 3556 + - uid: 4983 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3605 + - uid: 4984 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-251.5 parent: 2 - - uid: 3714 + - uid: 4985 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - - uid: 3715 + - uid: 4986 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - - uid: 3716 + - uid: 4987 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-162.5 parent: 2 - - uid: 4041 + - uid: 4988 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 4212 + - uid: 4989 components: - type: Transform pos: 26.5,-259.5 parent: 2 - - uid: 4244 + - uid: 4990 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-234.5 parent: 2 - - uid: 4276 + - uid: 4991 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-233.5 parent: 2 - - uid: 4284 + - uid: 4992 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-234.5 parent: 2 - - uid: 4292 + - uid: 4993 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-218.5 parent: 2 - - uid: 4293 + - uid: 4994 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-219.5 parent: 2 - - uid: 4344 + - uid: 4995 components: - type: Transform pos: -8.5,-97.5 parent: 2 - - uid: 4356 + - uid: 4996 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-220.5 parent: 2 - - uid: 4361 + - uid: 4997 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-225.5 parent: 2 - - uid: 4371 + - uid: 4998 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-226.5 parent: 2 - - uid: 4385 + - uid: 4999 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-222.5 parent: 2 - - uid: 4394 + - uid: 5000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-223.5 parent: 2 - - uid: 4401 + - uid: 5001 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-224.5 parent: 2 - - uid: 4410 + - uid: 5002 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-224.5 parent: 2 - - uid: 4434 + - uid: 5003 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-227.5 parent: 2 - - uid: 4435 + - uid: 5004 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-227.5 parent: 2 - - uid: 4436 + - uid: 5005 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-226.5 parent: 2 - - uid: 4437 + - uid: 5006 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-225.5 parent: 2 - - uid: 4438 + - uid: 5007 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-224.5 parent: 2 - - uid: 4441 + - uid: 5008 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-219.5 parent: 2 - - uid: 4442 + - uid: 5009 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-218.5 parent: 2 - - uid: 4443 + - uid: 5010 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-217.5 parent: 2 - - uid: 4444 + - uid: 5011 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-225.5 parent: 2 - - uid: 4445 + - uid: 5012 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-226.5 parent: 2 - - uid: 4446 + - uid: 5013 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-227.5 parent: 2 - - uid: 4447 + - uid: 5014 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-228.5 parent: 2 - - uid: 4448 + - uid: 5015 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-229.5 parent: 2 - - uid: 4449 + - uid: 5016 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-230.5 parent: 2 - - uid: 4450 + - uid: 5017 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-231.5 parent: 2 - - uid: 4451 + - uid: 5018 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-232.5 parent: 2 - - uid: 4452 + - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-226.5 parent: 2 - - uid: 4453 + - uid: 5020 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-226.5 parent: 2 - - uid: 4455 + - uid: 5021 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-229.5 parent: 2 - - uid: 4456 + - uid: 5022 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-229.5 parent: 2 - - uid: 4457 + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-229.5 parent: 2 - - uid: 4458 + - uid: 5024 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-228.5 parent: 2 - - uid: 4459 + - uid: 5025 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-227.5 parent: 2 - - uid: 4460 + - uid: 5026 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-226.5 parent: 2 - - uid: 4461 + - uid: 5027 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-225.5 parent: 2 - - uid: 4462 + - uid: 5028 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-224.5 parent: 2 - - uid: 4463 + - uid: 5029 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-223.5 parent: 2 - - uid: 4464 + - uid: 5030 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-222.5 parent: 2 - - uid: 4465 + - uid: 5031 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-221.5 parent: 2 - - uid: 4466 + - uid: 5032 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-220.5 parent: 2 - - uid: 4467 + - uid: 5033 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-220.5 parent: 2 - - uid: 4468 + - uid: 5034 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-220.5 parent: 2 - - uid: 4470 + - uid: 5035 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-229.5 parent: 2 - - uid: 4471 + - uid: 5036 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-229.5 parent: 2 - - uid: 4472 + - uid: 5037 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-229.5 parent: 2 - - uid: 4473 + - uid: 5038 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-229.5 parent: 2 - - uid: 4474 + - uid: 5039 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-228.5 parent: 2 - - uid: 4475 + - uid: 5040 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-227.5 parent: 2 - - uid: 4476 + - uid: 5041 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-226.5 parent: 2 - - uid: 4477 + - uid: 5042 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-225.5 parent: 2 - - uid: 4478 + - uid: 5043 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-224.5 parent: 2 - - uid: 4479 + - uid: 5044 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-223.5 parent: 2 - - uid: 4480 + - uid: 5045 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-222.5 parent: 2 - - uid: 4481 + - uid: 5046 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-221.5 parent: 2 - - uid: 4482 + - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-220.5 parent: 2 - - uid: 4483 + - uid: 5048 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-220.5 parent: 2 - - uid: 4484 + - uid: 5049 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-220.5 parent: 2 - - uid: 4485 + - uid: 5050 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-220.5 parent: 2 - - uid: 4486 + - uid: 5051 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-221.5 parent: 2 - - uid: 4487 + - uid: 5052 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-222.5 parent: 2 - - uid: 4488 + - uid: 5053 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-223.5 parent: 2 - - uid: 4489 + - uid: 5054 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-224.5 parent: 2 - - uid: 4490 + - uid: 5055 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-225.5 parent: 2 - - uid: 4491 + - uid: 5056 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-226.5 parent: 2 - - uid: 4492 + - uid: 5057 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-227.5 parent: 2 - - uid: 4493 + - uid: 5058 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-228.5 parent: 2 - - uid: 4495 + - uid: 5059 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-230.5 parent: 2 - - uid: 4496 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-231.5 parent: 2 - - uid: 4497 + - uid: 5061 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-232.5 parent: 2 - - uid: 4498 + - uid: 5062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-219.5 parent: 2 - - uid: 4499 + - uid: 5063 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-218.5 parent: 2 - - uid: 4500 + - uid: 5064 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-217.5 parent: 2 - - uid: 4501 + - uid: 5065 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-223.5 parent: 2 - - uid: 4502 + - uid: 5066 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-223.5 parent: 2 - - uid: 4503 + - uid: 5067 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-226.5 parent: 2 - - uid: 4504 + - uid: 5068 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-226.5 parent: 2 - - uid: 4521 + - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-225.5 parent: 2 - - uid: 4522 + - uid: 5070 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-226.5 parent: 2 - - uid: 4523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-227.5 - parent: 2 - - uid: 4524 + - uid: 5071 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-230.5 parent: 2 - - uid: 4525 + - uid: 5072 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-231.5 parent: 2 - - uid: 4865 + - uid: 5073 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 5021 + - uid: 5074 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-253.5 parent: 2 - - uid: 6573 + - uid: 5075 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-253.5 parent: 2 - - uid: 6636 + - uid: 5076 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-287.5 parent: 2 - - uid: 6657 + - uid: 5077 components: - type: Transform pos: 27.5,-258.5 parent: 2 - - uid: 6686 + - uid: 5078 components: - type: Transform pos: 24.5,-257.5 parent: 2 - - uid: 6688 + - uid: 5079 components: - type: Transform pos: 30.5,-260.5 parent: 2 - - uid: 6690 + - uid: 5080 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 6691 + - uid: 5081 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 6692 + - uid: 5082 components: - type: Transform pos: 24.5,-255.5 parent: 2 - - uid: 6697 + - uid: 5083 components: - type: Transform pos: 23.5,-262.5 parent: 2 - - uid: 6699 + - uid: 5084 components: - type: Transform pos: 23.5,-263.5 parent: 2 - - uid: 6720 + - uid: 5085 components: - type: Transform pos: 28.5,-259.5 parent: 2 - - uid: 6721 + - uid: 5086 components: - type: Transform pos: 28.5,-260.5 parent: 2 - - uid: 6723 + - uid: 5087 components: - type: Transform pos: 26.5,-257.5 parent: 2 - - uid: 6725 + - uid: 5088 components: - type: Transform pos: 28.5,-257.5 parent: 2 - - uid: 6731 + - uid: 5089 components: - type: Transform pos: 26.5,-262.5 parent: 2 - - uid: 6751 + - uid: 5090 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 6752 + - uid: 5091 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-252.5 parent: 2 - - uid: 6753 + - uid: 5092 components: - type: Transform pos: 26.5,-260.5 parent: 2 - - uid: 6760 + - uid: 5093 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-251.5 parent: 2 - - uid: 6765 + - uid: 5094 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 6775 + - uid: 5095 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 6783 + - uid: 5096 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-251.5 parent: 2 - - uid: 6785 + - uid: 5097 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-251.5 parent: 2 - - uid: 6786 + - uid: 5098 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-253.5 parent: 2 - - uid: 6834 + - uid: 5099 components: - type: Transform pos: 26.5,-256.5 parent: 2 - - uid: 6863 + - uid: 5100 components: - type: Transform pos: 30.5,-256.5 parent: 2 - - uid: 6865 + - uid: 5101 components: - type: Transform pos: 24.5,-256.5 parent: 2 - - uid: 6866 + - uid: 5102 components: - type: Transform pos: 24.5,-262.5 parent: 2 - - uid: 6867 + - uid: 5103 components: - type: Transform pos: 24.5,-263.5 parent: 2 - - uid: 6868 + - uid: 5104 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 7532 + - uid: 5105 components: - type: Transform pos: 28.5,-262.5 parent: 2 - - uid: 7538 + - uid: 5106 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-251.5 parent: 2 - - uid: 7569 + - uid: 5107 components: - type: Transform pos: 28.5,-256.5 parent: 2 - - uid: 7780 + - uid: 5108 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-265.5 parent: 2 - - uid: 7790 + - uid: 5109 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-252.5 parent: 2 - - uid: 7893 + - uid: 5110 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-252.5 parent: 2 - - uid: 8017 + - uid: 5111 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-253.5 parent: 2 - - uid: 8048 + - uid: 5112 components: - type: Transform pos: 27.5,-260.5 parent: 2 - - uid: 8049 + - uid: 5113 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 8051 + - uid: 5114 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8092 + - uid: 5115 components: - type: Transform pos: 30.5,-257.5 parent: 2 - - uid: 8093 + - uid: 5116 components: - type: Transform pos: 30.5,-259.5 parent: 2 - - uid: 8094 + - uid: 5117 components: - type: Transform pos: 26.5,-261.5 parent: 2 - - uid: 8191 + - uid: 5118 components: - type: Transform pos: 30.5,-255.5 parent: 2 - - uid: 8192 + - uid: 5119 components: - type: Transform pos: 24.5,-260.5 parent: 2 - - uid: 8208 + - uid: 5120 components: - type: Transform pos: 31.5,-256.5 parent: 2 - - uid: 8211 + - uid: 5121 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 8473 + - uid: 5122 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-264.5 parent: 2 - - uid: 8496 + - uid: 5123 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 8527 + - uid: 5124 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-288.5 parent: 2 - - uid: 8662 + - uid: 5125 components: - type: Transform pos: 26.5,-258.5 parent: 2 - - uid: 8694 + - uid: 5126 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-286.5 parent: 2 - - uid: 8798 + - uid: 5127 components: - type: Transform pos: 24.5,-258.5 parent: 2 - - uid: 9029 + - uid: 5128 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-287.5 parent: 2 - - uid: 9033 + - uid: 5129 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - - uid: 9034 + - uid: 5130 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - - uid: 9036 + - uid: 5131 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9045 + - uid: 5132 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-286.5 parent: 2 - - uid: 9047 + - uid: 5133 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-285.5 parent: 2 - - uid: 9543 + - uid: 5134 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 9791 + - uid: 5135 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 9857 + - uid: 5136 components: - type: Transform pos: 24.5,-259.5 parent: 2 - - uid: 10025 + - uid: 5137 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-314.5 parent: 2 - - uid: 10542 + - uid: 5138 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10544 + - uid: 5139 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10545 + - uid: 5140 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10546 + - uid: 5141 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10547 + - uid: 5142 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10548 + - uid: 5143 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10549 + - uid: 5144 components: - type: Transform pos: 5.5,-296.5 parent: 2 - - uid: 10550 + - uid: 5145 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10551 + - uid: 5146 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10552 + - uid: 5147 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10554 + - uid: 5148 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10555 + - uid: 5149 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10556 + - uid: 5150 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10557 + - uid: 5151 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10558 + - uid: 5152 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10559 + - uid: 5153 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10560 + - uid: 5154 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10561 + - uid: 5155 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10562 + - uid: 5156 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10563 + - uid: 5157 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10564 + - uid: 5158 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10565 + - uid: 5159 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10566 + - uid: 5160 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10567 + - uid: 5161 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10644 + - uid: 5162 components: - type: Transform pos: 6.5,-18.5 parent: 2 - - uid: 10655 + - uid: 5163 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 10683 + - uid: 5164 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 12649 + - uid: 5165 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12900 + - uid: 5166 components: - type: Transform pos: 7.5,-361.5 parent: 2 - - uid: 12901 + - uid: 5167 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 12902 + - uid: 5168 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 13303 + - uid: 5169 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-300.5 parent: 2 - - uid: 13393 + - uid: 5170 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 13404 + - uid: 5171 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 14022 + - uid: 5172 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-253.5 parent: 2 - - uid: 14571 + - uid: 5173 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14572 + - uid: 5174 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14573 + - uid: 5175 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14582 + - uid: 5176 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14583 + - uid: 5177 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14584 + - uid: 5178 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14585 + - uid: 5179 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14586 + - uid: 5180 components: - type: Transform pos: -5.5,-258.5 parent: 2 - - uid: 14587 + - uid: 5181 components: - type: Transform pos: -4.5,-258.5 parent: 2 - - uid: 14588 + - uid: 5182 components: - type: Transform pos: -4.5,-259.5 parent: 2 - - uid: 14589 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - uid: 14590 - components: - - type: Transform - pos: -4.5,-260.5 - parent: 2 - - uid: 14591 + - uid: 5183 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14592 + - uid: 5184 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 14593 + - uid: 5185 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 14594 + - uid: 5186 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 14595 + - uid: 5187 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 15721 + - uid: 5188 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-222.5 parent: 2 - - uid: 15722 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-222.5 parent: 2 - - uid: 15723 + - uid: 5190 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-221.5 parent: 2 - - uid: 15724 + - uid: 5191 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-219.5 parent: 2 - - uid: 15725 + - uid: 5192 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-220.5 parent: 2 - - uid: 15798 + - uid: 5193 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 16870 + - uid: 5194 components: - type: Transform pos: -7.5,-251.5 parent: 2 - - uid: 16872 + - uid: 5195 components: - type: Transform pos: -4.5,-246.5 parent: 2 - - uid: 16874 + - uid: 5196 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16875 + - uid: 5197 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16877 + - uid: 5198 components: - type: Transform pos: -4.5,-250.5 parent: 2 - - uid: 16878 + - uid: 5199 components: - type: Transform pos: -5.5,-250.5 parent: 2 - - uid: 16939 + - uid: 5200 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 16942 + - uid: 5201 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 16943 + - uid: 5202 components: - type: Transform pos: -6.5,-164.5 parent: 2 - proto: Chair entities: - - uid: 3705 + - uid: 5203 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - - uid: 3722 + - uid: 5204 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-201.5 parent: 2 - - uid: 3767 + - uid: 5205 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-200.5 parent: 2 - - uid: 4358 + - uid: 5206 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 4756 + - uid: 5207 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-252.5 parent: 2 - - uid: 4952 + - uid: 5208 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-253.5 parent: 2 - - uid: 4965 + - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-252.5 parent: 2 - - uid: 7741 + - uid: 5210 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-198.5 parent: 2 - - uid: 7743 + - uid: 5211 components: - type: Transform pos: 7.5,-195.5 parent: 2 - - uid: 8440 + - uid: 5212 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-253.5 parent: 2 - - uid: 10770 + - uid: 5213 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 10797 + - uid: 5214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-346.5 parent: 2 - - uid: 12128 + - uid: 5215 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-253.5 parent: 2 - - uid: 12159 + - uid: 5216 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - - uid: 14630 + - uid: 5217 components: - type: Transform pos: -7.5,-254.5 parent: 2 - - uid: 14631 + - uid: 5218 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-257.5 parent: 2 - - uid: 14738 + - uid: 5219 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - - uid: 14920 + - uid: 5220 components: - type: Transform rot: -1.5707963267948966 rad @@ -34351,7 +34056,7 @@ entities: parent: 2 - proto: ChairCursed entities: - - uid: 2585 + - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad @@ -34359,77 +34064,77 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 424 + - uid: 5222 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.627699,-1.5039027 parent: 2 - - uid: 1400 + - uid: 5223 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-247.5 parent: 2 - - uid: 1484 + - uid: 5224 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1485 + - uid: 5225 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-57.5 parent: 2 - - uid: 11711 + - uid: 5226 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-262.5 parent: 2 - - uid: 16495 + - uid: 5227 components: - type: Transform pos: -13.5,-244.5 parent: 2 - proto: ChairFoldingSpawnFolded entities: - - uid: 2728 + - uid: 5228 components: - type: Transform pos: -3.0071216,-135.52832 parent: 2 - proto: ChairGreyscale entities: - - uid: 1839 + - uid: 5229 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 1842 + - uid: 5230 components: - type: Transform pos: 4.5,-98.5 parent: 2 - - uid: 1843 + - uid: 5231 components: - type: Transform pos: 3.5,-98.5 parent: 2 - - uid: 1845 + - uid: 5232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-96.5 parent: 2 - - uid: 1851 + - uid: 5233 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-94.5 parent: 2 - - uid: 1852 + - uid: 5234 components: - type: Transform rot: 1.5707963267948966 rad @@ -34437,65 +34142,65 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 3121 + - uid: 5235 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-168.5 parent: 2 - - uid: 3122 + - uid: 5236 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-166.5 parent: 2 - - uid: 4785 + - uid: 5237 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 7378 + - uid: 5238 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-365.5 parent: 2 - - uid: 9057 + - uid: 5239 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 11058 + - uid: 5240 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-329.5 parent: 2 - - uid: 11093 + - uid: 5241 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-331.5 parent: 2 - - uid: 11449 + - uid: 5242 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-345.5 parent: 2 - - uid: 11974 + - uid: 5243 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-371.5 parent: 2 - - uid: 11975 + - uid: 5244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-371.5 parent: 2 - - uid: 14789 + - uid: 5245 components: - type: Transform rot: 1.5707963267948966 rad @@ -34503,47 +34208,47 @@ entities: parent: 2 - proto: ChairOfficeLight entities: - - uid: 7451 + - uid: 5246 components: - type: Transform pos: -3.5,-165.5 parent: 2 - - uid: 8907 + - uid: 5247 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 8908 + - uid: 5248 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-202.5 parent: 2 - - uid: 9984 + - uid: 5249 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-313.5 parent: 2 - - uid: 10112 + - uid: 5250 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-302.5 parent: 2 - - uid: 10114 + - uid: 5251 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-301.5 parent: 2 - - uid: 12046 + - uid: 5252 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-303.5 parent: 2 - - uid: 12051 + - uid: 5253 components: - type: Transform rot: 3.141592653589793 rad @@ -34551,7 +34256,7 @@ entities: parent: 2 - proto: ChairPilotSeat entities: - - uid: 25 + - uid: 5254 components: - type: Transform rot: 3.141592653589793 rad @@ -34559,13 +34264,13 @@ entities: parent: 2 - proto: ChairWeb entities: - - uid: 14337 + - uid: 5255 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-60.5 parent: 2 - - uid: 14340 + - uid: 5256 components: - type: Transform rot: 3.141592653589793 rad @@ -34573,115 +34278,115 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 384 + - uid: 5257 components: - type: Transform rot: 3.141592653589793 rad pos: -3.2935836,0.4495414 parent: 2 - - uid: 1015 + - uid: 5258 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - - uid: 1315 + - uid: 5259 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-59.5 parent: 2 - - uid: 1347 + - uid: 5260 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-67.5 parent: 2 - - uid: 1348 + - uid: 5261 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-66.5 parent: 2 - - uid: 1349 + - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-66.5 parent: 2 - - uid: 1350 + - uid: 5263 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-67.5 parent: 2 - - uid: 1351 + - uid: 5264 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 1352 + - uid: 5265 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - - uid: 1353 + - uid: 5266 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - - uid: 2586 + - uid: 5267 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-146.5 parent: 2 - - uid: 2587 + - uid: 5268 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-144.5 parent: 2 - - uid: 2588 + - uid: 5269 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - - uid: 2589 + - uid: 5270 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-145.5 parent: 2 - - uid: 2590 + - uid: 5271 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-144.5 parent: 2 - - uid: 2695 + - uid: 5272 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 3151 + - uid: 5273 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-67.5 parent: 2 - - uid: 3201 + - uid: 5274 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-67.5 parent: 2 - - uid: 3604 + - uid: 5275 components: - type: Transform rot: 1.5707963267948966 rad @@ -34689,50 +34394,50 @@ entities: parent: 2 - proto: CheapRollerBedSpawnFolded entities: - - uid: 2376 + - uid: 5276 components: - type: Transform pos: 4.2730184,-180.14731 parent: 2 - - uid: 5422 + - uid: 5277 components: - type: Transform pos: 4.5698934,-180.42856 parent: 2 - proto: ChemDispenser entities: - - uid: 3112 + - uid: 5278 components: - type: Transform pos: 7.5,-169.5 parent: 2 - - uid: 3113 + - uid: 5279 components: - type: Transform pos: 3.5,-165.5 parent: 2 - proto: ChemistryHotplate entities: - - uid: 3137 + - uid: 5280 components: - type: Transform pos: 4.5,-167.5 parent: 2 - proto: ChemMaster entities: - - uid: 3116 + - uid: 5281 components: - type: Transform pos: 5.5,-165.5 parent: 2 - - uid: 3117 + - uid: 5282 components: - type: Transform pos: 7.5,-167.5 parent: 2 - proto: ChessBoard entities: - - uid: 12938 + - uid: 5283 components: - type: Transform rot: 3.141592653589793 rad @@ -34740,30 +34445,30 @@ entities: parent: 2 - proto: Cigar entities: - - uid: 219 + - uid: 5284 components: - type: Transform pos: 3.6992347,-7.328869 parent: 2 - - uid: 404 + - uid: 5285 components: - type: Transform pos: 3.82151,-7.050895 parent: 2 - proto: CigarGoldCase entities: - - uid: 99 + - uid: 5286 components: - type: Transform pos: -2.8886578,-1.2991699 parent: 2 - - uid: 2729 + - uid: 5287 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5303056,-136.50012 parent: 2 - - uid: 14388 + - uid: 5288 components: - type: Transform rot: 1.5707963267948966 rad @@ -34771,199 +34476,199 @@ entities: parent: 2 - proto: CigCartonMixed entities: - - uid: 1833 + - uid: 5289 components: - type: Transform pos: -7.317818,-81.58406 parent: 2 - - uid: 16940 + - uid: 5290 components: - type: Transform pos: -11.700207,-168.61453 parent: 2 - - uid: 16941 + - uid: 5291 components: - type: Transform pos: -11.512707,-168.23953 parent: 2 - proto: CircuitImprinter entities: - - uid: 9829 + - uid: 5292 components: - type: Transform pos: -6.5,-299.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 1735 + - uid: 5293 components: - type: Transform pos: -3.5,-52.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 11991 + - uid: 5294 components: - type: Transform pos: -8.5,-317.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 1782 + - uid: 5295 components: - type: Transform pos: -1.5,-88.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1052 + - uid: 5296 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1472 + - uid: 5297 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 2247 + - uid: 5298 components: - type: Transform pos: -2.5,-107.5 parent: 2 - - uid: 10543 + - uid: 5299 components: - type: Transform pos: 3.5,-318.5 parent: 2 - - uid: 14641 + - uid: 5300 components: - type: Transform pos: 3.5,-259.5 parent: 2 - - uid: 16899 + - uid: 5301 components: - type: Transform pos: -5.5,-246.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 9895 + - uid: 5302 components: - type: Transform pos: 10.5,-297.5 parent: 2 - - uid: 16895 + - uid: 5303 components: - type: Transform pos: -7.5,-251.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 1706 + - uid: 5304 components: - type: Transform pos: -5.5,-53.5 parent: 2 - proto: ClosetL3JanitorFilled entities: - - uid: 9460 + - uid: 5305 components: - type: Transform pos: -5.5,-55.5 parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 12126 + - uid: 5306 components: - type: Transform pos: -8.5,-318.5 parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 3900 + - uid: 5307 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 3901 + - uid: 5308 components: - type: Transform pos: -2.5,-195.5 parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 1070 + - uid: 5309 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1073 + - uid: 5310 components: - type: Transform pos: 4.5,-69.5 parent: 2 - - uid: 1117 + - uid: 5311 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 1628 + - uid: 5312 components: - type: Transform pos: -5.5,-37.5 parent: 2 - - uid: 1629 + - uid: 5313 components: - type: Transform pos: -2.5,-35.5 parent: 2 - - uid: 1630 + - uid: 5314 components: - type: Transform pos: 7.5,-69.5 parent: 2 - - uid: 1858 + - uid: 5315 components: - type: Transform pos: -5.5,-98.5 parent: 2 - - uid: 1859 + - uid: 5316 components: - type: Transform pos: -2.5,-95.5 parent: 2 - - uid: 2281 + - uid: 5317 components: - type: Transform pos: 2.5,-114.5 parent: 2 - - uid: 2698 + - uid: 5318 components: - type: Transform pos: 3.5,-153.5 parent: 2 - - uid: 2818 + - uid: 5319 components: - type: Transform pos: 3.5,-134.5 parent: 2 - - uid: 3582 + - uid: 5320 components: - type: Transform pos: -7.5,-176.5 parent: 2 - - uid: 4176 + - uid: 5321 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 4579 + - uid: 5322 components: - type: Transform pos: -3.5,-180.5 parent: 2 - - uid: 7334 + - uid: 5323 components: - type: Transform pos: 17.5,-149.5 @@ -34992,106 +34697,113 @@ entities: showEnts: False occludes: True ents: - - 3621 + - 5324 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 7335 + - uid: 5325 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 9052 + - uid: 5326 components: - type: Transform pos: 4.5,-288.5 parent: 2 - - uid: 9409 + - uid: 5327 components: - type: Transform pos: 3.5,-288.5 parent: 2 - - uid: 10533 + - uid: 5328 components: - type: Transform pos: 6.5,-296.5 parent: 2 - - uid: 10534 + - uid: 5329 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10535 + - uid: 5330 components: - type: Transform pos: -2.5,-296.5 parent: 2 - - uid: 10537 + - uid: 5331 components: - type: Transform pos: 10.5,-299.5 parent: 2 - - uid: 10539 + - uid: 5332 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10540 + - uid: 5333 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10541 + - uid: 5334 components: - type: Transform pos: 3.5,-320.5 parent: 2 - - uid: 14596 + - uid: 5335 components: - type: Transform pos: -4.5,-257.5 parent: 2 - - uid: 14597 + - uid: 5336 components: - type: Transform pos: -7.5,-253.5 parent: 2 - - uid: 14598 + - uid: 5337 components: - type: Transform pos: 8.5,-259.5 parent: 2 - - uid: 14642 + - uid: 5338 components: - type: Transform pos: 4.5,-259.5 parent: 2 - - uid: 16871 + - uid: 5339 components: - type: Transform pos: -7.5,-250.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 2383 + - uid: 5340 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 4893 + - uid: 5341 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 10090 + - uid: 5342 components: - type: Transform pos: -8.5,-319.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 13571 + components: + - type: Transform + pos: -1.2892275,-170.52505 + parent: 2 - proto: ClosetWall entities: - - uid: 14476 + - uid: 624 components: - type: Transform pos: 17.5,-59.5 @@ -35102,23 +34814,23 @@ entities: showEnts: False occludes: True ents: - - 14479 - - 14478 - - 14477 - - 14480 + - 626 + - 627 + - 625 + - 628 - proto: ClosetWallAtmospherics entities: - - uid: 14755 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-266.5 + pos: -20.5,-266.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 93.465614 moles: - 0 - 0 @@ -35138,29 +34850,50 @@ entities: showEnts: False occludes: True ents: - - 14762 - - 14770 - - 14766 - - uid: 16798 + - 865 + - 868 + - 864 + - 863 + - 867 + - 866 + - uid: 932 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-266.5 + pos: -17.5,-266.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 16799 - - 16800 - - 16801 - - uid: 16811 + - 933 + - 934 + - 935 + - uid: 3958 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-266.5 + pos: -15.5,-266.5 parent: 2 - type: ContainerContainer containers: @@ -35168,66 +34901,45 @@ entities: showEnts: False occludes: True ents: - - 16813 - - 16814 - - 16812 - - uid: 17056 + - 3960 + - 3961 + - 3959 + - uid: 4694 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-266.5 + pos: -16.5,-266.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 17062 - - 17061 - - 17060 - - 17059 - - 17058 - - 17057 + - 4696 + - 4695 + - 4697 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 370 + - uid: 5343 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 - - uid: 383 + - uid: 5344 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 684 + - uid: 5345 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - - uid: 776 + - uid: 5346 components: - type: Transform rot: -1.5707963267948966 rad @@ -35251,79 +34963,79 @@ entities: - 0 - 0 - 0 - - uid: 815 + - uid: 5347 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-45.5 parent: 2 - - uid: 834 + - uid: 5348 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-107.5 parent: 2 - - uid: 895 + - uid: 5349 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 - - uid: 2899 + - uid: 5350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - - uid: 4057 + - uid: 5351 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 - - uid: 4058 + - uid: 5352 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 4059 + - uid: 5353 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-73.5 parent: 2 - - uid: 4060 + - uid: 5354 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-100.5 parent: 2 - - uid: 4061 + - uid: 5355 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-106.5 parent: 2 - - uid: 4062 + - uid: 5356 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-127.5 parent: 2 - - uid: 4063 + - uid: 5357 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-133.5 parent: 2 - - uid: 4064 + - uid: 5358 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-154.5 parent: 2 - - uid: 4065 + - uid: 5359 components: - type: Transform rot: 1.5707963267948966 rad @@ -35347,31 +35059,31 @@ entities: - 0 - 0 - 0 - - uid: 4066 + - uid: 5360 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-181.5 parent: 2 - - uid: 4067 + - uid: 5361 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-187.5 parent: 2 - - uid: 4094 + - uid: 5362 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-35.5 parent: 2 - - uid: 4137 + - uid: 5363 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - - uid: 4191 + - uid: 5364 components: - type: Transform rot: -1.5707963267948966 rad @@ -35395,78 +35107,78 @@ entities: - 0 - 0 - 0 - - uid: 4221 + - uid: 5365 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 4577 + - uid: 5366 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-235.5 parent: 2 - - uid: 4650 + - uid: 5367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-208.5 parent: 2 - - uid: 4652 + - uid: 5368 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-214.5 parent: 2 - - uid: 4656 + - uid: 5369 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-241.5 parent: 2 - - uid: 7489 + - uid: 5370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-262.5 parent: 2 - - uid: 8889 + - uid: 5371 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-268.5 parent: 2 - - uid: 9377 + - uid: 5372 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 9378 + - uid: 5373 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-295.5 parent: 2 - - uid: 10568 + - uid: 5374 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-321.5 parent: 2 - - uid: 11140 + - uid: 5375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - - uid: 11145 + - uid: 5376 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-348.5 parent: 2 - - uid: 11146 + - uid: 5377 components: - type: Transform rot: 1.5707963267948966 rad @@ -35474,31 +35186,31 @@ entities: parent: 2 - proto: ClosetWallFireFilledRandom entities: - - uid: 321 + - uid: 5378 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 2 - - uid: 334 + - uid: 5379 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 - - uid: 835 + - uid: 5380 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-133.5 parent: 2 - - uid: 836 + - uid: 5381 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-154.5 parent: 2 - - uid: 839 + - uid: 5382 components: - type: Transform rot: -1.5707963267948966 rad @@ -35522,18 +35234,18 @@ entities: - 0 - 0 - 0 - - uid: 931 + - uid: 5383 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-33.5 parent: 2 - - uid: 1108 + - uid: 5384 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 1819 + - uid: 5385 components: - type: Transform rot: 1.5707963267948966 rad @@ -35557,19 +35269,19 @@ entities: - 0 - 0 - 0 - - uid: 2304 + - uid: 5386 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-127.5 parent: 2 - - uid: 2898 + - uid: 5387 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-143.5 parent: 2 - - uid: 3001 + - uid: 5388 components: - type: Transform pos: -7.5,-106.5 @@ -35598,98 +35310,98 @@ entities: showEnts: False occludes: True ents: - - 3625 - - uid: 3021 + - 5389 + - uid: 5390 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-37.5 parent: 2 - - uid: 3162 + - uid: 5391 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-106.5 parent: 2 - - uid: 4068 + - uid: 5392 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-187.5 parent: 2 - - uid: 4069 + - uid: 5393 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-181.5 parent: 2 - - uid: 4227 + - uid: 5394 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 parent: 2 - - uid: 4228 + - uid: 5395 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-100.5 parent: 2 - - uid: 4229 + - uid: 5396 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-79.5 parent: 2 - - uid: 4230 + - uid: 5397 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-73.5 parent: 2 - - uid: 4231 + - uid: 5398 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-52.5 parent: 2 - - uid: 4232 + - uid: 5399 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-46.5 parent: 2 - - uid: 4238 + - uid: 5400 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 - - uid: 4469 + - uid: 5401 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-107.5 parent: 2 - - uid: 4651 + - uid: 5402 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-208.5 parent: 2 - - uid: 4653 + - uid: 5403 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-214.5 parent: 2 - - uid: 4654 + - uid: 5404 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-235.5 parent: 2 - - uid: 4655 + - uid: 5405 components: - type: Transform rot: -1.5707963267948966 rad @@ -35713,49 +35425,49 @@ entities: - 0 - 0 - 0 - - uid: 7498 + - uid: 5406 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-262.5 parent: 2 - - uid: 8669 + - uid: 5407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-268.5 parent: 2 - - uid: 9376 + - uid: 5408 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 9379 + - uid: 5409 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-295.5 parent: 2 - - uid: 10569 + - uid: 5410 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-321.5 parent: 2 - - uid: 11142 + - uid: 5411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-327.5 parent: 2 - - uid: 11143 + - uid: 5412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-348.5 parent: 2 - - uid: 11144 + - uid: 5413 components: - type: Transform rot: -1.5707963267948966 rad @@ -35763,7 +35475,7 @@ entities: parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 1063 + - uid: 5414 components: - type: Transform rot: 3.141592653589793 rad @@ -35787,18 +35499,18 @@ entities: - 0 - 0 - 0 - - uid: 7306 + - uid: 5415 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 - - uid: 7392 + - uid: 5416 components: - type: Transform pos: 13.5,-137.5 parent: 2 - - uid: 7393 + - uid: 5417 components: - type: Transform rot: 3.141592653589793 rad @@ -35806,14 +35518,14 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 12108 + - uid: 5418 components: - type: Transform pos: -11.520256,-161.46404 parent: 2 - proto: ClothingBackpackMerc entities: - - uid: 9088 + - uid: 5419 components: - type: Transform rot: 3.141592653589793 rad @@ -35821,14 +35533,14 @@ entities: parent: 2 - proto: ClothingBeltChampion entities: - - uid: 98 + - uid: 5420 components: - type: Transform pos: -1.5155509,-3.3950026 parent: 2 - proto: ClothingBeltMercWebbing entities: - - uid: 9089 + - uid: 5421 components: - type: Transform rot: 1.5707963267948966 rad @@ -35836,403 +35548,403 @@ entities: parent: 2 - proto: ClothingBeltSalvageWebbing entities: - - uid: 8632 + - uid: 5422 components: - type: Transform pos: -6.4954147,-283.40762 parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 4921 + - uid: 5423 components: - type: Transform pos: 5.3335085,-253.25787 parent: 2 - - uid: 4948 + - uid: 5424 components: - type: Transform pos: 5.597643,-252.98062 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 8865 + - uid: 5425 components: - type: Transform pos: -5.4843903,-272.37283 parent: 2 - - uid: 8918 + - uid: 5426 components: - type: Transform pos: -5.086961,-272.51526 parent: 2 - proto: ClothingEyesEyepatchHudBeer entities: - - uid: 6284 + - uid: 5427 components: - type: Transform pos: -5.5304284,-200.22986 parent: 2 - proto: ClothingEyesEyepatchHudMedical entities: - - uid: 3694 + - uid: 5428 components: - type: Transform pos: 8.467955,-175.3928 parent: 2 - proto: ClothingEyesEyepatchHudSecurity entities: - - uid: 6307 + - uid: 5429 components: - type: Transform pos: -7.5085177,-98.683334 parent: 2 - - uid: 10854 + - uid: 5430 components: - type: Transform pos: -6.5701137,-339.11215 parent: 2 - proto: ClothingEyesGlassesJamjar entities: - - uid: 15036 + - uid: 5431 components: - type: Transform pos: -10.441889,-133.57634 parent: 2 - proto: ClothingEyesGlassesMercenary entities: - - uid: 9096 + - uid: 5432 components: - type: Transform pos: 17.46046,-151.51154 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 6639 + - uid: 5433 components: - type: Transform pos: 8.599879,-250.49686 parent: 2 - - uid: 8414 + - uid: 5434 components: - type: Transform pos: 16.374,-245.4528 parent: 2 - - uid: 8492 + - uid: 5435 components: - type: Transform pos: 16.241934,-245.58482 parent: 2 - - uid: 8982 + - uid: 5436 components: - type: Transform pos: 16.545687,-245.58482 parent: 2 - proto: ClothingEyesHudOnionBeer entities: - - uid: 14658 + - uid: 5437 components: - type: Transform pos: 17.613636,-73.25992 parent: 2 - proto: ClothingEyesHudSecurity entities: - - uid: 12714 + - uid: 5438 components: - type: Transform pos: -6.38522,-339.1782 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 934 + - uid: 5439 components: - type: Transform pos: -6.3692145,-340.57867 parent: 2 - - uid: 9395 + - uid: 5440 components: - type: Transform pos: -6.488075,-340.47308 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 2973 + - uid: 5441 components: - type: Transform pos: 4.7532883,-254.3202 parent: 2 - - uid: 7484 + - uid: 5442 components: - type: Transform pos: 15.620354,-246.35051 parent: 2 - - uid: 14599 + - uid: 5443 components: - type: Transform pos: 5.5004325,-245.50078 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 5118 + - uid: 5444 components: - type: Transform pos: 5.4891844,-245.36584 parent: 2 - - uid: 15261 + - uid: 5445 components: - type: Transform pos: 5.4891844,-245.19717 parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 10120 + - uid: 5446 components: - type: Transform pos: -4.4184327,-302.4534 parent: 2 - proto: ClothingHandsGlovesMercFingerless entities: - - uid: 9094 + - uid: 5447 components: - type: Transform pos: 11.0250435,-142.57506 parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 3905 + - uid: 5448 components: - type: Transform pos: -6.474791,-195.55786 parent: 2 - proto: ClothingHandsTacticalMaidGloves entities: - - uid: 2879 + - uid: 5449 components: - type: Transform pos: -8.44329,-15.527226 parent: 2 - proto: ClothingHeadBandMerc entities: - - uid: 9090 + - uid: 5450 components: - type: Transform pos: 16.371077,-159.35246 parent: 2 - proto: ClothingHeadHatBeretMerc entities: - - uid: 9091 + - uid: 5451 components: - type: Transform pos: 7.385122,-163.34297 parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 15096 + - uid: 5452 components: - type: Transform pos: 10.067849,-194.21626 parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - - uid: 14636 + - uid: 5453 components: - type: Transform pos: -7.7489276,-255.68477 parent: 2 - proto: ClothingHeadHatCowboyBountyHunter entities: - - uid: 6283 + - uid: 5454 components: - type: Transform pos: -5.4412646,-206.21022 parent: 2 - - uid: 10122 + - uid: 5455 components: - type: Transform pos: -6.5050893,-305.04108 parent: 2 - proto: ClothingHeadHatCowboyBrown entities: - - uid: 6016 + - uid: 5456 components: - type: Transform pos: -2.3394754,-148.72287 parent: 2 - proto: ClothingHeadHatCowboyGrey entities: - - uid: 15165 + - uid: 5457 components: - type: Transform pos: 9.464466,-120.1053 parent: 2 - proto: ClothingHeadHatCowboyRed entities: - - uid: 8932 + - uid: 5458 components: - type: Transform pos: 16.43729,-78.522385 parent: 2 - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 2671 + - uid: 5459 components: - type: Transform pos: 2.5369916,-142.75755 parent: 2 - proto: ClothingHeadHatSurgcapPurple entities: - - uid: 16505 + - uid: 5460 components: - type: Transform pos: -13.547984,-168.3646 parent: 2 - proto: ClothingHeadHatUshanka entities: - - uid: 1487 + - uid: 5461 components: - type: Transform pos: 7.3559012,-56.31927 parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 339 + - uid: 5462 components: - type: Transform pos: -6.7000256,-2.3430972 parent: 2 - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 14348 + - uid: 5463 components: - type: Transform pos: 8.726893,-250.28665 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 14349 + - uid: 5464 components: - type: Transform pos: 8.351893,-250.58353 parent: 2 - proto: ClothingHeadHelmetAtmosFire entities: - - uid: 17058 + - uid: 867 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetMerc entities: - - uid: 9086 + - uid: 5465 components: - type: Transform pos: 12.225706,-136.18898 parent: 2 - proto: ClothingMaskBreath entities: - - uid: 633 + - uid: 5466 components: - type: Transform pos: -3.5046618,-18.436672 parent: 2 - proto: ClothingMaskClown entities: - - uid: 10639 + - uid: 5468 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - - uid: 8253 - components: - - type: Transform - pos: 11.724084,-252.53477 - parent: 2 - - uid: 16813 + - uid: 4696 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 5477 + components: + - type: Transform + pos: 11.724084,-252.53477 + parent: 2 - proto: ClothingMaskGasMerc entities: - - uid: 9092 + - uid: 5478 components: - type: Transform pos: 7.4026275,-133.54765 parent: 2 - proto: ClothingMaskSadMime entities: - - uid: 11453 + - uid: 5480 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 11287 + - uid: 5481 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyClown entities: - - uid: 8788 + - uid: 5469 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: - - uid: 11452 + - uid: 5482 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckBling entities: - - uid: 96 + - uid: 5487 components: - type: Transform pos: -0.98430085,-3.5043776 parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - - uid: 12386 + - uid: 5488 components: - type: Transform pos: 20.545477,-319.41248 parent: 2 - proto: ClothingNeckCloakMoth entities: - - uid: 4222 + - uid: 5489 components: - type: Transform pos: -7.7756677,-121.72427 parent: 2 - proto: ClothingNeckHeadphones entities: - - uid: 882 + - uid: 5490 components: - type: Transform pos: -1.4138944,-29.279722 parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 2039 + - uid: 5491 components: - type: Transform rot: -1.5707963267948966 rad @@ -36240,37 +35952,37 @@ entities: parent: 2 - proto: ClothingNeckStoleChaplain entities: - - uid: 2674 + - uid: 5492 components: - type: Transform pos: 6.5223746,-143.07793 parent: 2 - proto: ClothingNeckTieSci entities: - - uid: 15097 + - uid: 5493 components: - type: Transform pos: 10.437636,-200.83151 parent: 2 - proto: ClothingOuterSuitAtmosFire entities: - - uid: 17061 + - uid: 868 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 2670 + - uid: 5494 components: - type: Transform pos: 2.4225328,-143.14482 parent: 2 - proto: ClothingOuterVestWebMerc entities: - - uid: 1997 + - uid: 5495 components: - type: Transform rot: 3.141592653589793 rad @@ -36278,216 +35990,216 @@ entities: parent: 2 - proto: ClothingOuterWinterMime entities: - - uid: 11286 + - uid: 5483 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterWarden entities: - - uid: 12713 + - uid: 5496 components: - type: Transform pos: -0.49978608,-365.77002 parent: 2 - proto: ClothingShoesBootsCowboyBrown entities: - - uid: 6274 + - uid: 5497 components: - type: Transform pos: -2.9131222,-148.72287 parent: 2 - proto: ClothingShoesBootsCowboyWhite entities: - - uid: 15162 + - uid: 5498 components: - type: Transform pos: 8.722098,-120.734985 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 406 + - uid: 5499 components: - type: Transform pos: 4.592537,2.4938912 parent: 2 - - uid: 2384 + - uid: 5500 components: - type: Transform pos: 4.400423,2.6220393 parent: 2 - - uid: 2385 + - uid: 5501 components: - type: Transform pos: 9.430661,-119.386765 parent: 2 - - uid: 2386 + - uid: 5502 components: - type: Transform pos: 9.618161,-119.543015 parent: 2 - - uid: 9015 + - uid: 5503 components: - type: Transform pos: -6.54561,-283.5363 parent: 2 - proto: ClothingShoesBootsMercFilled entities: - - uid: 8399 + - uid: 5504 components: - type: Transform pos: 7.4738736,-160.36284 parent: 2 - proto: ClothingShoesClown entities: - - uid: 10092 + - uid: 5470 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 2878 + - uid: 5505 components: - type: Transform pos: -4.636336,-20.392185 parent: 2 - proto: ClothingUniformJumpsuitChiefEngineerSyndie entities: - - uid: 734 + - uid: 5506 components: - type: Transform pos: -2.5118494,-45.422665 parent: 2 - proto: ClothingUniformJumpsuitMercenary entities: - - uid: 9097 + - uid: 5507 components: - type: Transform pos: 13.563655,-161.57042 parent: 2 - proto: ClothingUniformJumpsuitMime entities: - - uid: 11288 + - uid: 5484 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1110 + - uid: 5508 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 1632 + - uid: 5509 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1638 + - uid: 5510 components: - type: Transform pos: 3.5,-71.5 parent: 2 - - uid: 14374 + - uid: 5511 components: - type: Transform pos: 13.5,-60.5 parent: 2 - proto: Cobweb2 entities: - - uid: 437 + - uid: 5512 components: - type: Transform pos: -2.5,-16.5 parent: 2 - - uid: 1635 + - uid: 5513 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 1636 + - uid: 5514 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1637 + - uid: 5515 components: - type: Transform pos: -2.5,-53.5 parent: 2 - - uid: 9030 + - uid: 5516 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 9031 + - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9032 + - uid: 5518 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-287.5 parent: 2 - - uid: 14379 + - uid: 5519 components: - type: Transform pos: 17.5,-60.5 parent: 2 - - uid: 14773 + - uid: 5520 components: - type: Transform pos: 6.5,-28.5 parent: 2 - proto: ComfyChair entities: - - uid: 309 + - uid: 5521 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 2208 + - uid: 5522 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 4143 + - uid: 5523 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-358.5 parent: 2 - - uid: 11763 + - uid: 5524 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-358.5 parent: 2 - - uid: 13452 + - uid: 5525 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-37.5 parent: 2 - - uid: 15028 + - uid: 5526 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-133.5 parent: 2 - - uid: 15029 + - uid: 5527 components: - type: Transform rot: -1.5707963267948966 rad @@ -36495,14 +36207,14 @@ entities: parent: 2 - proto: ComputerAlert entities: - - uid: 1156 + - uid: 5528 components: - type: Transform pos: -5.5,-334.5 parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 12118 + - uid: 5529 components: - type: Transform rot: 3.141592653589793 rad @@ -36510,7 +36222,7 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 2398 + - uid: 5530 components: - type: Transform rot: 3.141592653589793 rad @@ -36518,7 +36230,7 @@ entities: parent: 2 - proto: ComputerBroken entities: - - uid: 9695 + - uid: 5531 components: - type: Transform rot: -1.5707963267948966 rad @@ -36526,7 +36238,7 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 8497 + - uid: 5532 components: - type: Transform rot: 3.141592653589793 rad @@ -36534,45 +36246,45 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: - - uid: 9025 + - uid: 5533 components: - type: Transform pos: 3.5,-276.5 parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 9026 + - uid: 5534 components: - type: Transform pos: 2.5,-276.5 parent: 2 - proto: ComputerComms entities: - - uid: 54 + - uid: 5535 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 7211 + - uid: 5536 components: - type: Transform pos: -2.5,-9.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 50 + - uid: 5537 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - - uid: 7206 + - uid: 5538 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-202.5 parent: 2 - - uid: 8408 + - uid: 5539 components: - type: Transform rot: 3.141592653589793 rad @@ -36580,12 +36292,12 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 14300 + - uid: 5540 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 14804 + - uid: 5541 components: - type: Transform rot: -1.5707963267948966 rad @@ -36593,13 +36305,13 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 395 + - uid: 5542 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 9514 + - uid: 5543 components: - type: Transform rot: 1.5707963267948966 rad @@ -36607,20 +36319,20 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 9638 + - uid: 5544 components: - type: Transform pos: 21.5,-297.5 parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 7205 + - uid: 5545 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-203.5 parent: 2 - - uid: 7837 + - uid: 5546 components: - type: Transform rot: 3.141592653589793 rad @@ -36628,60 +36340,60 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 49 + - uid: 5547 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 5425 + - uid: 5548 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-231.5 parent: 2 - - uid: 5461 + - uid: 5549 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 6750 + - uid: 5550 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 8182 + - uid: 5551 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-252.5 parent: 2 - - uid: 9702 + - uid: 5552 components: - type: Transform pos: 23.5,-309.5 parent: 2 - proto: ComputerRadar entities: - - uid: 52 + - uid: 5553 components: - type: Transform pos: 2.5,2.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 9826 + - uid: 5554 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - - uid: 10033 + - uid: 5555 components: - type: Transform pos: -2.5,-300.5 parent: 2 - - uid: 10037 + - uid: 5556 components: - type: Transform rot: -1.5707963267948966 rad @@ -36689,7 +36401,7 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 6661 + - uid: 5557 components: - type: Transform rot: 1.5707963267948966 rad @@ -36697,7 +36409,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 8873 + - uid: 5558 components: - type: Transform rot: 1.5707963267948966 rad @@ -36705,7 +36417,7 @@ entities: parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 9022 + - uid: 5559 components: - type: Transform rot: -1.5707963267948966 rad @@ -36713,38 +36425,38 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 8890 + - uid: 5560 components: - type: Transform pos: -5.5,-270.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 4912 + - uid: 5561 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-231.5 parent: 2 - - uid: 5462 + - uid: 5562 components: - type: Transform pos: -2.5,-218.5 parent: 2 - proto: ComputerStationRecords entities: - - uid: 9396 + - uid: 5563 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 - - uid: 10709 + - uid: 5564 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 15750 + - uid: 5565 components: - type: Transform rot: 1.5707963267948966 rad @@ -36752,17 +36464,17 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 1172 + - uid: 5566 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 9682 + - uid: 5567 components: - type: Transform pos: 23.5,-315.5 parent: 2 - - uid: 14805 + - uid: 5568 components: - type: Transform rot: -1.5707963267948966 rad @@ -36770,192 +36482,150 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 12694 + - uid: 5569 components: - type: Transform pos: -2.5,-61.5 parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 5182 + - uid: 5570 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 6652 + - uid: 5571 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 7449 + - uid: 5572 components: - type: Transform pos: 19.5,-243.5 parent: 2 - - uid: 7771 + - uid: 5573 components: - type: Transform pos: 19.5,-242.5 parent: 2 - proto: ContrabassInstrument entities: - - uid: 14363 + - uid: 5574 components: - type: Transform pos: 13.5,-62.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 4899 + - uid: 5575 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 5450 + - uid: 5576 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-217.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 6589 + - uid: 5577 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-220.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7620 + - uid: 5578 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-216.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7644 + - uid: 5579 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7715 + - uid: 5580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-218.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 8990 + - uid: 5581 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8991 + - uid: 5582 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8992 + - uid: 5583 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8993 + - uid: 5584 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8994 + - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8995 + - uid: 5586 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8996 + - uid: 5587 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8997 + - uid: 5588 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - proto: CowToolboxFilled entities: - - uid: 5403 + - uid: 5589 components: - type: Transform pos: -2.6682575,-263.44592 parent: 2 - proto: CrateArtifactContainer entities: - - uid: 9825 + - uid: 5590 components: - type: Transform pos: -2.5,-320.5 parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 6862 + - uid: 5591 components: - type: Transform pos: 20.5,-251.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 8630 + - uid: 469 components: - type: Transform pos: 20.5,-252.5 @@ -36984,71 +36654,71 @@ entities: showEnts: False occludes: True ents: - - 8631 - - 8633 - - 8634 + - 470 + - 471 + - 472 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringCableHV entities: - - uid: 4903 + - uid: 5592 components: - type: Transform pos: -2.5,-231.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 2995 + - uid: 5593 components: - type: Transform pos: 6.5,-278.5 parent: 2 - - uid: 14094 + - uid: 5594 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 14095 + - uid: 5595 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 14096 + - uid: 5596 components: - type: Transform pos: 2.5,-280.5 parent: 2 - proto: CrateFreezer entities: - - uid: 1940 + - uid: 5597 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6953 + - uid: 5598 components: - type: Transform pos: 0.5,-196.5 parent: 2 - proto: CrateFunPirate entities: - - uid: 14570 + - uid: 5599 components: - type: Transform pos: -11.5,-299.5 parent: 2 - proto: CrateMedicalSecure entities: - - uid: 3241 + - uid: 5600 components: - type: Transform pos: -1.5,-177.5 parent: 2 - proto: CrateMedicalSurgery entities: - - uid: 6779 + - uid: 5601 components: - type: Transform pos: -14.5,-168.5 @@ -37071,28 +36741,28 @@ entities: - 0 - 0 - 0 - - uid: 8471 + - uid: 5602 components: - type: Transform pos: -0.5,-196.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 209 + - uid: 5603 components: - type: Transform pos: 6.5,-10.5 parent: 2 - proto: CratePlasma entities: - - uid: 9038 + - uid: 5604 components: - type: Transform pos: 6.5,-274.5 parent: 2 - proto: CrateSecure entities: - - uid: 12773 + - uid: 5605 components: - type: Transform pos: -4.5,-355.5 @@ -37121,75 +36791,75 @@ entities: showEnts: False occludes: True ents: - - 12774 - - 12775 - - 12776 - - 12777 + - 5609 + - 5608 + - 5606 + - 5607 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7829 + - uid: 5610 components: - type: Transform pos: 8.5,-342.5 parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 9069 + - uid: 5611 components: - type: Transform pos: 6.5,-270.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 1066 + - uid: 5612 components: - type: Transform pos: -3.5,-55.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 7622 + - uid: 5613 components: - type: Transform pos: 5.5,-220.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 5451 + - uid: 5614 components: - type: Transform pos: 5.5,-218.5 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 10864 + - uid: 5615 components: - type: Transform pos: -0.5,-55.5 parent: 2 - proto: CrayonBox entities: - - uid: 14730 + - uid: 5616 components: - type: Transform pos: -6.0386314,-189.32039 parent: 2 - proto: CrayonMime entities: - - uid: 11491 + - uid: 5485 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Crematorium entities: - - uid: 2692 + - uid: 5617 components: - type: Transform rot: 1.5707963267948966 rad @@ -37197,7 +36867,7 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 9394 + - uid: 5618 components: - type: Transform pos: 3.5,-201.5 @@ -37207,73 +36877,73 @@ entities: available: False - proto: Crowbar entities: - - uid: 12231 + - uid: 5619 components: - type: Transform pos: 15.588418,-247.49165 parent: 2 - proto: CrowbarRed entities: - - uid: 867 + - uid: 5620 components: - type: Transform rot: 3.141592653589793 rad pos: 17.447252,-148.35458 parent: 2 - - uid: 5020 + - uid: 5621 components: - type: Transform pos: 7.5092626,-245.4333 parent: 2 - - uid: 14645 + - uid: 5622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5097127,-260.45267 parent: 2 - - uid: 14646 + - uid: 5623 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.4304724,-260.42627 parent: 2 - - uid: 14649 + - uid: 5624 components: - type: Transform pos: 7.6104946,-245.51202 parent: 2 - - uid: 15266 + - uid: 5625 components: - type: Transform pos: 7.734223,-245.60197 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 1831 + - uid: 5626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-110.5 parent: 2 - - uid: 1987 + - uid: 5627 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-109.5 parent: 2 - - uid: 1988 + - uid: 5628 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-107.5 parent: 2 - - uid: 2075 + - uid: 5629 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - - uid: 10929 + - uid: 5630 components: - type: Transform rot: 1.5707963267948966 rad @@ -37281,7 +36951,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 1205 + - uid: 5631 components: - type: Transform rot: 1.5707963267948966 rad @@ -37289,7 +36959,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1242 + - uid: 5632 components: - type: Transform rot: -1.5707963267948966 rad @@ -37297,117 +36967,112 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 2924 + - uid: 5633 components: - type: Transform pos: -3.5,-168.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 2400 - components: - - type: Transform - pos: -1.6543152,-168.36696 - parent: 2 - - uid: 11894 + - uid: 16325 components: - type: Transform - pos: -1.7246923,-168.03389 + pos: -2.2571619,-168.41248 parent: 2 - proto: CrystalBlue entities: - - uid: 6833 + - uid: 5636 components: - type: Transform pos: 23.5,-258.5 parent: 2 - - uid: 7568 + - uid: 5637 components: - type: Transform pos: 29.5,-264.5 parent: 2 - - uid: 16501 + - uid: 5638 components: - type: Transform pos: -11.5,-163.5 parent: 2 - proto: CrystalCyan entities: - - uid: 5677 + - uid: 5639 components: - type: Transform pos: 2.5,-141.5 parent: 2 - - uid: 5685 + - uid: 5640 components: - type: Transform pos: 6.5,-141.5 parent: 2 - - uid: 6836 + - uid: 5641 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 6837 + - uid: 5642 components: - type: Transform pos: 27.5,-255.5 parent: 2 - - uid: 7570 + - uid: 5643 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 16504 + - uid: 5644 components: - type: Transform pos: -12.5,-161.5 parent: 2 - - uid: 16529 + - uid: 5645 components: - type: Transform pos: -14.5,-166.5 parent: 2 - proto: CrystalGreen entities: - - uid: 7233 + - uid: 5646 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-144.5 parent: 2 - - uid: 7247 + - uid: 5647 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-149.5 parent: 2 - - uid: 7248 + - uid: 5648 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-147.5 parent: 2 - - uid: 7250 + - uid: 5649 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-145.5 parent: 2 - - uid: 7313 + - uid: 5650 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-153.5 parent: 2 - - uid: 7416 + - uid: 5651 components: - type: Transform pos: 17.5,-163.5 parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 9949 + - uid: 5652 components: - type: Transform rot: 3.141592653589793 rad @@ -37415,14 +37080,14 @@ entities: parent: 2 - proto: d20Dice entities: - - uid: 14461 + - uid: 5653 components: - type: Transform pos: 17.02164,-78.62984 parent: 2 - proto: d4Dice entities: - - uid: 14634 + - uid: 5654 components: - type: Transform rot: -1.5707963267948966 rad @@ -37430,7 +37095,7 @@ entities: parent: 2 - proto: Dart entities: - - uid: 2207 + - uid: 5655 components: - type: Transform rot: 0.09166564047336578 rad @@ -37438,395 +37103,395 @@ entities: parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 11450 + - uid: 5656 components: - type: Transform pos: 22.5,-307.5 parent: 2 - proto: DefaultStationBeaconAME entities: - - uid: 13472 + - uid: 5657 components: - type: Transform pos: 18.5,-252.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 11458 + - uid: 5658 components: - type: Transform pos: 5.5,-301.5 parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 11455 + - uid: 5659 components: - type: Transform pos: 5.5,-340.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 11459 + - uid: 5660 components: - type: Transform pos: 6.5,-40.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 11460 + - uid: 5661 components: - type: Transform pos: -6.5,-315.5 parent: 2 - proto: DefaultStationBeaconBar entities: - - uid: 11461 + - uid: 5662 components: - type: Transform pos: -0.5,-63.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 11462 + - uid: 5663 components: - type: Transform pos: -6.5,-86.5 parent: 2 - proto: DefaultStationBeaconBridge entities: - - uid: 11466 + - uid: 5664 components: - type: Transform pos: 0.5,1.5 parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 11463 + - uid: 5665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 11476 + - uid: 5666 components: - type: Transform pos: -2.5,-14.5 parent: 2 - proto: DefaultStationBeaconCargoBay entities: - - uid: 11479 + - uid: 5667 components: - type: Transform pos: 7.5,-279.5 parent: 2 - proto: DefaultStationBeaconCargoReception entities: - - uid: 11480 + - uid: 5668 components: - type: Transform pos: 4.5,-272.5 parent: 2 - proto: DefaultStationBeaconCERoom entities: - - uid: 13992 + - uid: 5669 components: - type: Transform pos: 10.5,-252.5 parent: 2 - proto: DefaultStationBeaconChapel entities: - - uid: 11481 + - uid: 5670 components: - type: Transform pos: 4.5,-142.5 parent: 2 - proto: DefaultStationBeaconChemistry entities: - - uid: 11482 + - uid: 5671 components: - type: Transform pos: 6.5,-167.5 parent: 2 - proto: DefaultStationBeaconCryonics entities: - - uid: 8934 + - uid: 5672 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 16494 + - uid: 5673 components: - type: Transform pos: -2.5,-169.5 parent: 2 - proto: DefaultStationBeaconCryosleep entities: - - uid: 11465 + - uid: 5674 components: - type: Transform pos: -7.5,-108.5 parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 11492 + - uid: 5675 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: DefaultStationBeaconDorms entities: - - uid: 11493 + - uid: 5676 components: - type: Transform pos: -7.5,-117.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 7431 + - uid: 5677 components: - type: Transform pos: 3.5,-252.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - - uid: 11329 + - uid: 5678 components: - type: Transform pos: -4.5,-30.5 parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 11494 + - uid: 5679 components: - type: Transform pos: 8.5,-114.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7434 + - uid: 5680 components: - type: Transform pos: 18.5,-264.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: - - uid: 11499 + - uid: 5681 components: - type: Transform pos: 0.5,-119.5 parent: 2 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 11500 + - uid: 5682 components: - type: Transform pos: -3.5,-345.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 11501 + - uid: 5683 components: - type: Transform pos: -4.5,-54.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: - - uid: 11502 + - uid: 5684 components: - type: Transform pos: 0.5,-88.5 parent: 2 - proto: DefaultStationBeaconLawOffice entities: - - uid: 11503 + - uid: 5685 components: - type: Transform pos: 5.5,-330.5 parent: 2 - proto: DefaultStationBeaconLibrary entities: - - uid: 11508 + - uid: 5686 components: - type: Transform pos: -4.5,-144.5 parent: 2 - proto: DefaultStationBeaconMedical entities: - - uid: 11510 + - uid: 5687 components: - type: Transform pos: 4.5,-173.5 parent: 2 - proto: DefaultStationBeaconMorgue entities: - - uid: 11511 + - uid: 5688 components: - type: Transform pos: -3.5,-173.5 parent: 2 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 11512 + - uid: 5689 components: - type: Transform pos: 0.5,-372.5 parent: 2 - proto: DefaultStationBeaconPowerBank entities: - - uid: 7432 + - uid: 5690 components: - type: Transform pos: 14.5,-252.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 11513 + - uid: 5691 components: - type: Transform pos: 5.5,-285.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 11514 + - uid: 5692 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 11464 + - uid: 5693 components: - type: Transform pos: -5.5,-272.5 parent: 2 - proto: DefaultStationBeaconScience entities: - - uid: 11515 + - uid: 5694 components: - type: Transform pos: 0.5,-307.5 parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 11516 + - uid: 5695 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11518 + - uid: 5696 components: - type: Transform pos: 10.5,-225.5 parent: 2 - proto: DefaultStationBeaconSurgery entities: - - uid: 11520 + - uid: 5697 components: - type: Transform pos: 1.5,-201.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 11531 + - uid: 5698 components: - type: Transform pos: -2.5,-6.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 11523 + - uid: 5699 components: - type: Transform pos: 22.5,-298.5 parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 11526 + - uid: 5700 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: Defibrillator entities: - - uid: 12338 + - uid: 5701 components: - type: Transform pos: 3.2889383,-173.42052 parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 3719 + - uid: 5702 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-177.5 parent: 2 - - uid: 3720 + - uid: 5703 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 4181 + - uid: 5704 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 11234 + - uid: 5705 components: - type: Transform pos: -4.5,-359.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 1844 + - uid: 5706 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 10834 + - uid: 5707 components: - type: Transform pos: 4.5,-337.5 parent: 2 - - uid: 13044 + - uid: 5708 components: - type: Transform pos: 4.5,-335.5 parent: 2 - proto: DeskBell entities: - - uid: 2271 + - uid: 5709 components: - type: Transform pos: -0.2976312,-122.56093 parent: 2 - - uid: 3103 + - uid: 5710 components: - type: Transform pos: 2.5791457,-168.03862 parent: 2 - - uid: 6647 + - uid: 5711 components: - type: Transform pos: 1.5176499,-250.74234 parent: 2 - - uid: 9051 + - uid: 5712 components: - type: Transform pos: 2.3718603,-272.5842 parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 929 + - uid: 5713 components: - type: Transform pos: -4.5,-193.5 parent: 2 - proto: DiseaseSwab entities: - - uid: 3919 + - uid: 5714 components: - type: Transform rot: -1.5707963267948966 rad @@ -37834,203 +37499,203 @@ entities: parent: 2 - proto: DisposalBend entities: - - uid: 2366 + - uid: 5715 components: - type: Transform pos: 3.5,-179.5 parent: 2 - - uid: 4175 + - uid: 5716 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-287.5 parent: 2 - - uid: 5140 + - uid: 5717 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 5402 + - uid: 5718 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 7781 + - uid: 5719 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-287.5 parent: 2 - - uid: 7992 + - uid: 5720 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-250.5 parent: 2 - - uid: 8105 + - uid: 5721 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 8241 + - uid: 5722 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-308.5 parent: 2 - - uid: 8485 + - uid: 5723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-304.5 parent: 2 - - uid: 8773 + - uid: 5724 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-304.5 parent: 2 - - uid: 9422 + - uid: 5725 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 9873 + - uid: 5726 components: - type: Transform pos: -9.5,-194.5 parent: 2 - - uid: 9874 + - uid: 5727 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-190.5 parent: 2 - - uid: 10066 + - uid: 5728 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-194.5 parent: 2 - - uid: 12837 + - uid: 5729 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 13504 + - uid: 5730 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 13506 + - uid: 5731 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - - uid: 13767 + - uid: 5732 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - - uid: 13787 + - uid: 5733 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 14036 + - uid: 5734 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 14220 + - uid: 5735 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-340.5 parent: 2 - - uid: 14221 + - uid: 5736 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-340.5 parent: 2 - - uid: 14331 + - uid: 5737 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-339.5 parent: 2 - - uid: 15308 + - uid: 5738 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 - - uid: 15450 + - uid: 5739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-125.5 parent: 2 - - uid: 15550 + - uid: 5740 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 15565 + - uid: 5741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-356.5 parent: 2 - - uid: 15656 + - uid: 5742 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 15657 + - uid: 5743 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-286.5 parent: 2 - - uid: 15658 + - uid: 5744 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-284.5 parent: 2 - - uid: 15672 + - uid: 5745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-274.5 parent: 2 - - uid: 15675 + - uid: 5746 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-274.5 parent: 2 - - uid: 15744 + - uid: 5747 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 15745 + - uid: 5748 components: - type: Transform pos: 3.5,-219.5 parent: 2 - - uid: 17033 + - uid: 5749 components: - type: Transform rot: 3.141592653589793 rad @@ -38038,51 +37703,51 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 9420 + - uid: 5750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-337.5 parent: 2 - - uid: 15337 + - uid: 5751 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 15449 + - uid: 5752 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 15479 + - uid: 5753 components: - type: Transform pos: 0.5,-150.5 parent: 2 - - uid: 15492 + - uid: 5754 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 15610 + - uid: 5755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - - uid: 15620 + - uid: 5756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - - uid: 15679 + - uid: 5757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-270.5 parent: 2 - - uid: 15696 + - uid: 5758 components: - type: Transform rot: 3.141592653589793 rad @@ -38090,58 +37755,58 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 2404 + - uid: 5759 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6769 + - uid: 5760 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-259.5 parent: 2 - - uid: 15336 + - uid: 5761 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 15368 + - uid: 5762 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 15369 + - uid: 5763 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 15399 + - uid: 5764 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 15413 + - uid: 5765 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 15432 + - uid: 5766 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 15523 + - uid: 5767 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 15547 + - uid: 5768 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 15662 + - uid: 5769 components: - type: Transform rot: -1.5707963267948966 rad @@ -38149,7032 +37814,7032 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 1095 + - uid: 5770 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-283.5 parent: 2 - - uid: 1499 + - uid: 5771 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 1519 + - uid: 5772 components: - type: Transform pos: -9.5,-202.5 parent: 2 - - uid: 1573 + - uid: 5773 components: - type: Transform pos: -9.5,-203.5 parent: 2 - - uid: 1614 + - uid: 5774 components: - type: Transform pos: -9.5,-205.5 parent: 2 - - uid: 2153 + - uid: 5775 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 2167 + - uid: 5776 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 2257 + - uid: 5777 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-282.5 parent: 2 - - uid: 2375 + - uid: 5778 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - - uid: 2401 + - uid: 5779 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-179.5 parent: 2 - - uid: 2574 + - uid: 5780 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 2733 + - uid: 5781 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 3069 + - uid: 5782 components: - type: Transform pos: 15.5,-96.5 parent: 2 - - uid: 3070 + - uid: 5783 components: - type: Transform pos: 15.5,-115.5 parent: 2 - - uid: 3096 + - uid: 5784 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - - uid: 3394 + - uid: 5785 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - - uid: 3695 + - uid: 5786 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-284.5 parent: 2 - - uid: 4174 + - uid: 5787 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 - - uid: 4178 + - uid: 5788 components: - type: Transform pos: 15.5,-114.5 parent: 2 - - uid: 4526 + - uid: 5789 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5022 + - uid: 5790 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 5023 + - uid: 5791 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 5025 + - uid: 5792 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 5027 + - uid: 5793 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 5081 + - uid: 5794 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5087 + - uid: 5795 components: - type: Transform pos: -0.5,-244.5 parent: 2 - - uid: 5173 + - uid: 5796 components: - type: Transform pos: -0.5,-245.5 parent: 2 - - uid: 5177 + - uid: 5797 components: - type: Transform pos: -0.5,-246.5 parent: 2 - - uid: 5356 + - uid: 5798 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-341.5 parent: 2 - - uid: 5357 + - uid: 5799 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 6641 + - uid: 5800 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 6668 + - uid: 5801 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 6669 + - uid: 5802 components: - type: Transform pos: 15.5,-119.5 parent: 2 - - uid: 6749 + - uid: 5803 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 6767 + - uid: 5804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - - uid: 6768 + - uid: 5805 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 6772 + - uid: 5806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-246.5 parent: 2 - - uid: 6773 + - uid: 5807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-245.5 parent: 2 - - uid: 6787 + - uid: 5808 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 6788 + - uid: 5809 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 6789 + - uid: 5810 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 6790 + - uid: 5811 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 6791 + - uid: 5812 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 6792 + - uid: 5813 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 6793 + - uid: 5814 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 6817 + - uid: 5815 components: - type: Transform pos: 15.5,-117.5 parent: 2 - - uid: 6818 + - uid: 5816 components: - type: Transform pos: 15.5,-128.5 parent: 2 - - uid: 6884 + - uid: 5817 components: - type: Transform pos: 15.5,-130.5 parent: 2 - - uid: 6885 + - uid: 5818 components: - type: Transform pos: 15.5,-131.5 parent: 2 - - uid: 7421 + - uid: 5819 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-295.5 parent: 2 - - uid: 7422 + - uid: 5820 components: - type: Transform pos: -9.5,-228.5 parent: 2 - - uid: 7424 + - uid: 5821 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 7425 + - uid: 5822 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 7426 + - uid: 5823 components: - type: Transform pos: -9.5,-232.5 parent: 2 - - uid: 7446 + - uid: 5824 components: - type: Transform pos: 15.5,-129.5 parent: 2 - - uid: 7447 + - uid: 5825 components: - type: Transform pos: 15.5,-135.5 parent: 2 - - uid: 7456 + - uid: 5826 components: - type: Transform pos: 15.5,-134.5 parent: 2 - - uid: 7465 + - uid: 5827 components: - type: Transform pos: -9.5,-252.5 parent: 2 - - uid: 7468 + - uid: 5828 components: - type: Transform pos: -9.5,-238.5 parent: 2 - - uid: 7469 + - uid: 5829 components: - type: Transform pos: -9.5,-249.5 parent: 2 - - uid: 7470 + - uid: 5830 components: - type: Transform pos: -9.5,-243.5 parent: 2 - - uid: 7471 + - uid: 5831 components: - type: Transform pos: -9.5,-257.5 parent: 2 - - uid: 7472 + - uid: 5832 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 7473 + - uid: 5833 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 7474 + - uid: 5834 components: - type: Transform pos: -9.5,-233.5 parent: 2 - - uid: 7480 + - uid: 5835 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-298.5 parent: 2 - - uid: 7486 + - uid: 5836 components: - type: Transform pos: 15.5,-116.5 parent: 2 - - uid: 7505 + - uid: 5837 components: - type: Transform pos: 15.5,-133.5 parent: 2 - - uid: 7772 + - uid: 5838 components: - type: Transform pos: -9.5,-227.5 parent: 2 - - uid: 7785 + - uid: 5839 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-256.5 parent: 2 - - uid: 7786 + - uid: 5840 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-257.5 parent: 2 - - uid: 7830 + - uid: 5841 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-250.5 parent: 2 - - uid: 7868 + - uid: 5842 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-250.5 parent: 2 - - uid: 7910 + - uid: 5843 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-255.5 parent: 2 - - uid: 7946 + - uid: 5844 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7964 + - uid: 5845 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-252.5 parent: 2 - - uid: 7972 + - uid: 5846 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-258.5 parent: 2 - - uid: 7977 + - uid: 5847 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 7993 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-250.5 parent: 2 - - uid: 7995 + - uid: 5849 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-250.5 parent: 2 - - uid: 7996 + - uid: 5850 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-250.5 parent: 2 - - uid: 7997 + - uid: 5851 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-243.5 parent: 2 - - uid: 8106 + - uid: 5852 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-250.5 parent: 2 - - uid: 8109 + - uid: 5853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-249.5 parent: 2 - - uid: 8110 + - uid: 5854 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-250.5 parent: 2 - - uid: 8116 + - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-249.5 parent: 2 - - uid: 8218 + - uid: 5856 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 8221 + - uid: 5857 components: - type: Transform pos: -9.5,-207.5 parent: 2 - - uid: 8222 + - uid: 5858 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-308.5 parent: 2 - - uid: 8223 + - uid: 5859 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-303.5 parent: 2 - - uid: 8224 + - uid: 5860 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-301.5 parent: 2 - - uid: 8231 + - uid: 5861 components: - type: Transform pos: -9.5,-279.5 parent: 2 - - uid: 8233 + - uid: 5862 components: - type: Transform pos: -13.5,-305.5 parent: 2 - - uid: 8243 + - uid: 5863 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-308.5 parent: 2 - - uid: 8244 + - uid: 5864 components: - type: Transform pos: 15.5,-86.5 parent: 2 - - uid: 8245 + - uid: 5865 components: - type: Transform pos: -9.5,-262.5 parent: 2 - - uid: 8246 + - uid: 5866 components: - type: Transform pos: -9.5,-282.5 parent: 2 - - uid: 8247 + - uid: 5867 components: - type: Transform pos: -9.5,-266.5 parent: 2 - - uid: 8251 + - uid: 5868 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-299.5 parent: 2 - - uid: 8252 + - uid: 5869 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-193.5 parent: 2 - - uid: 8254 + - uid: 5870 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-190.5 parent: 2 - - uid: 8257 + - uid: 5871 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 8258 + - uid: 5872 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-191.5 parent: 2 - - uid: 8381 + - uid: 5873 components: - type: Transform pos: -9.5,-245.5 parent: 2 - - uid: 8396 + - uid: 5874 components: - type: Transform pos: 1.5,-318.5 parent: 2 - - uid: 8397 + - uid: 5875 components: - type: Transform pos: 15.5,-104.5 parent: 2 - - uid: 8398 + - uid: 5876 components: - type: Transform pos: 15.5,-110.5 parent: 2 - - uid: 8400 + - uid: 5877 components: - type: Transform pos: 15.5,-106.5 parent: 2 - - uid: 8401 + - uid: 5878 components: - type: Transform pos: 15.5,-108.5 parent: 2 - - uid: 8402 + - uid: 5879 components: - type: Transform pos: 15.5,-105.5 parent: 2 - - uid: 8403 + - uid: 5880 components: - type: Transform pos: 15.5,-123.5 parent: 2 - - uid: 8404 + - uid: 5881 components: - type: Transform pos: 15.5,-109.5 parent: 2 - - uid: 8407 + - uid: 5882 components: - type: Transform pos: -9.5,-244.5 parent: 2 - - uid: 8426 + - uid: 5883 components: - type: Transform pos: 15.5,-121.5 parent: 2 - - uid: 8429 + - uid: 5884 components: - type: Transform pos: 15.5,-122.5 parent: 2 - - uid: 8438 + - uid: 5885 components: - type: Transform pos: 15.5,-111.5 parent: 2 - - uid: 8453 + - uid: 5886 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-253.5 parent: 2 - - uid: 8460 + - uid: 5887 components: - type: Transform pos: -9.5,-251.5 parent: 2 - - uid: 8484 + - uid: 5888 components: - type: Transform pos: 15.5,-99.5 parent: 2 - - uid: 8486 + - uid: 5889 components: - type: Transform pos: -9.5,-284.5 parent: 2 - - uid: 8735 + - uid: 5890 components: - type: Transform pos: -9.5,-280.5 parent: 2 - - uid: 8737 + - uid: 5891 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-302.5 parent: 2 - - uid: 8739 + - uid: 5892 components: - type: Transform pos: -13.5,-306.5 parent: 2 - - uid: 8742 + - uid: 5893 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-300.5 parent: 2 - - uid: 8743 + - uid: 5894 components: - type: Transform pos: -13.5,-307.5 parent: 2 - - uid: 8771 + - uid: 5895 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-194.5 parent: 2 - - uid: 8772 + - uid: 5896 components: - type: Transform pos: 15.5,-87.5 parent: 2 - - uid: 8775 + - uid: 5897 components: - type: Transform pos: -9.5,-204.5 parent: 2 - - uid: 8776 + - uid: 5898 components: - type: Transform pos: -9.5,-209.5 parent: 2 - - uid: 8778 + - uid: 5899 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-190.5 parent: 2 - - uid: 8779 + - uid: 5900 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-190.5 parent: 2 - - uid: 8782 + - uid: 5901 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-194.5 parent: 2 - - uid: 8784 + - uid: 5902 components: - type: Transform pos: -9.5,-264.5 parent: 2 - - uid: 8785 + - uid: 5903 components: - type: Transform pos: -9.5,-267.5 parent: 2 - - uid: 8800 + - uid: 5904 components: - type: Transform pos: -9.5,-268.5 parent: 2 - - uid: 8813 + - uid: 5905 components: - type: Transform pos: 15.5,-124.5 parent: 2 - - uid: 8814 + - uid: 5906 components: - type: Transform pos: 15.5,-127.5 parent: 2 - - uid: 8817 + - uid: 5907 components: - type: Transform pos: 15.5,-125.5 parent: 2 - - uid: 8818 + - uid: 5908 components: - type: Transform pos: 15.5,-126.5 parent: 2 - - uid: 8827 + - uid: 5909 components: - type: Transform pos: 15.5,-118.5 parent: 2 - - uid: 8828 + - uid: 5910 components: - type: Transform pos: 15.5,-120.5 parent: 2 - - uid: 8846 + - uid: 5911 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 8847 + - uid: 5912 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-250.5 parent: 2 - - uid: 8848 + - uid: 5913 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-251.5 parent: 2 - - uid: 8849 + - uid: 5914 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-250.5 parent: 2 - - uid: 8868 + - uid: 5915 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-259.5 parent: 2 - - uid: 8869 + - uid: 5916 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8870 + - uid: 5917 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-308.5 parent: 2 - - uid: 8871 + - uid: 5918 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-308.5 parent: 2 - - uid: 8882 + - uid: 5919 components: - type: Transform pos: 15.5,-92.5 parent: 2 - - uid: 8919 + - uid: 5920 components: - type: Transform pos: 15.5,-132.5 parent: 2 - - uid: 8920 + - uid: 5921 components: - type: Transform pos: -9.5,-275.5 parent: 2 - - uid: 8935 + - uid: 5922 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-297.5 parent: 2 - - uid: 8938 + - uid: 5923 components: - type: Transform pos: -9.5,-281.5 parent: 2 - - uid: 8948 + - uid: 5924 components: - type: Transform pos: -9.5,-248.5 parent: 2 - - uid: 8949 + - uid: 5925 components: - type: Transform pos: -9.5,-270.5 parent: 2 - - uid: 8950 + - uid: 5926 components: - type: Transform pos: -9.5,-222.5 parent: 2 - - uid: 8951 + - uid: 5927 components: - type: Transform pos: -9.5,-255.5 parent: 2 - - uid: 8952 + - uid: 5928 components: - type: Transform pos: -9.5,-253.5 parent: 2 - - uid: 8953 + - uid: 5929 components: - type: Transform pos: -9.5,-254.5 parent: 2 - - uid: 8958 + - uid: 5930 components: - type: Transform pos: -9.5,-256.5 parent: 2 - - uid: 8959 + - uid: 5931 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 8960 + - uid: 5932 components: - type: Transform pos: -9.5,-261.5 parent: 2 - - uid: 8962 + - uid: 5933 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 8963 + - uid: 5934 components: - type: Transform pos: -9.5,-258.5 parent: 2 - - uid: 8964 + - uid: 5935 components: - type: Transform pos: -9.5,-250.5 parent: 2 - - uid: 8989 + - uid: 5936 components: - type: Transform pos: 15.5,-113.5 parent: 2 - - uid: 9037 + - uid: 5937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - - uid: 9076 + - uid: 5938 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 9079 + - uid: 5939 components: - type: Transform pos: 15.5,-93.5 parent: 2 - - uid: 9093 + - uid: 5940 components: - type: Transform pos: -9.5,-269.5 parent: 2 - - uid: 9419 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-337.5 parent: 2 - - uid: 9421 + - uid: 5942 components: - type: Transform pos: 2.5,-336.5 parent: 2 - - uid: 9803 + - uid: 5943 components: - type: Transform pos: 15.5,-94.5 parent: 2 - - uid: 9830 + - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-289.5 parent: 2 - - uid: 9851 + - uid: 5945 components: - type: Transform pos: -9.5,-283.5 parent: 2 - - uid: 9867 + - uid: 5946 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-287.5 parent: 2 - - uid: 9872 + - uid: 5947 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-287.5 parent: 2 - - uid: 9905 + - uid: 5948 components: - type: Transform pos: 15.5,-101.5 parent: 2 - - uid: 10074 + - uid: 5949 components: - type: Transform pos: -9.5,-285.5 parent: 2 - - uid: 10326 + - uid: 5950 components: - type: Transform pos: -9.5,-212.5 parent: 2 - - uid: 10327 + - uid: 5951 components: - type: Transform pos: -9.5,-210.5 parent: 2 - - uid: 10331 + - uid: 5952 components: - type: Transform pos: -9.5,-211.5 parent: 2 - - uid: 10334 + - uid: 5953 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-288.5 parent: 2 - - uid: 10335 + - uid: 5954 components: - type: Transform pos: -9.5,-217.5 parent: 2 - - uid: 10344 + - uid: 5955 components: - type: Transform pos: -9.5,-216.5 parent: 2 - - uid: 10345 + - uid: 5956 components: - type: Transform pos: -9.5,-215.5 parent: 2 - - uid: 10346 + - uid: 5957 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-290.5 parent: 2 - - uid: 10347 + - uid: 5958 components: - type: Transform pos: -9.5,-236.5 parent: 2 - - uid: 10352 + - uid: 5959 components: - type: Transform pos: -9.5,-241.5 parent: 2 - - uid: 10403 + - uid: 5960 components: - type: Transform pos: 15.5,-100.5 parent: 2 - - uid: 10404 + - uid: 5961 components: - type: Transform pos: 15.5,-97.5 parent: 2 - - uid: 10405 + - uid: 5962 components: - type: Transform pos: 15.5,-102.5 parent: 2 - - uid: 10406 + - uid: 5963 components: - type: Transform pos: 15.5,-103.5 parent: 2 - - uid: 10528 + - uid: 5964 components: - type: Transform pos: -9.5,-263.5 parent: 2 - - uid: 10570 + - uid: 5965 components: - type: Transform pos: -9.5,-265.5 parent: 2 - - uid: 10572 + - uid: 5966 components: - type: Transform pos: -9.5,-276.5 parent: 2 - - uid: 11454 + - uid: 5967 components: - type: Transform pos: 15.5,-88.5 parent: 2 - - uid: 11474 + - uid: 5968 components: - type: Transform pos: -9.5,-277.5 parent: 2 - - uid: 11490 + - uid: 5969 components: - type: Transform pos: -9.5,-278.5 parent: 2 - - uid: 11495 + - uid: 5970 components: - type: Transform pos: 15.5,-90.5 parent: 2 - - uid: 11497 + - uid: 5971 components: - type: Transform pos: 15.5,-89.5 parent: 2 - - uid: 11521 + - uid: 5972 components: - type: Transform pos: 15.5,-95.5 parent: 2 - - uid: 11525 + - uid: 5973 components: - type: Transform pos: 15.5,-98.5 parent: 2 - - uid: 11721 + - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-292.5 parent: 2 - - uid: 11729 + - uid: 5975 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-293.5 parent: 2 - - uid: 11737 + - uid: 5976 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-294.5 parent: 2 - - uid: 11738 + - uid: 5977 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-291.5 parent: 2 - - uid: 11739 + - uid: 5978 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11743 + - uid: 5979 components: - type: Transform pos: -9.5,-234.5 parent: 2 - - uid: 11744 + - uid: 5980 components: - type: Transform pos: -9.5,-237.5 parent: 2 - - uid: 11745 + - uid: 5981 components: - type: Transform pos: -9.5,-239.5 parent: 2 - - uid: 11794 + - uid: 5982 components: - type: Transform pos: -9.5,-235.5 parent: 2 - - uid: 11802 + - uid: 5983 components: - type: Transform pos: -9.5,-240.5 parent: 2 - - uid: 11883 + - uid: 5984 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-296.5 parent: 2 - - uid: 11987 + - uid: 5985 components: - type: Transform pos: 15.5,-91.5 parent: 2 - - uid: 11992 + - uid: 5986 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 12008 + - uid: 5987 components: - type: Transform pos: -9.5,-208.5 parent: 2 - - uid: 12115 + - uid: 5988 components: - type: Transform pos: -9.5,-197.5 parent: 2 - - uid: 12122 + - uid: 5989 components: - type: Transform pos: -9.5,-198.5 parent: 2 - - uid: 12124 + - uid: 5990 components: - type: Transform pos: -9.5,-199.5 parent: 2 - - uid: 12125 + - uid: 5991 components: - type: Transform pos: -9.5,-200.5 parent: 2 - - uid: 12129 + - uid: 5992 components: - type: Transform pos: -9.5,-195.5 parent: 2 - - uid: 12133 + - uid: 5993 components: - type: Transform pos: -9.5,-201.5 parent: 2 - - uid: 12136 + - uid: 5994 components: - type: Transform pos: -9.5,-206.5 parent: 2 - - uid: 12144 + - uid: 5995 components: - type: Transform pos: -9.5,-246.5 parent: 2 - - uid: 12145 + - uid: 5996 components: - type: Transform pos: -9.5,-221.5 parent: 2 - - uid: 12158 + - uid: 5997 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 12170 + - uid: 5998 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 12173 + - uid: 5999 components: - type: Transform pos: -9.5,-224.5 parent: 2 - - uid: 12174 + - uid: 6000 components: - type: Transform pos: -9.5,-226.5 parent: 2 - - uid: 12182 + - uid: 6001 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 12192 + - uid: 6002 components: - type: Transform pos: -9.5,-273.5 parent: 2 - - uid: 12193 + - uid: 6003 components: - type: Transform pos: -9.5,-274.5 parent: 2 - - uid: 12194 + - uid: 6004 components: - type: Transform pos: -9.5,-214.5 parent: 2 - - uid: 12198 + - uid: 6005 components: - type: Transform pos: -9.5,-213.5 parent: 2 - - uid: 12203 + - uid: 6006 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-192.5 parent: 2 - - uid: 12206 + - uid: 6007 components: - type: Transform pos: -9.5,-196.5 parent: 2 - - uid: 12208 + - uid: 6008 components: - type: Transform pos: -9.5,-271.5 parent: 2 - - uid: 13376 + - uid: 6009 components: - type: Transform pos: -9.5,-286.5 parent: 2 - - uid: 13475 + - uid: 6010 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-28.5 parent: 2 - - uid: 13476 + - uid: 6011 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 13477 + - uid: 6012 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 13478 + - uid: 6013 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 13479 + - uid: 6014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - uid: 13480 + - uid: 6015 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-23.5 parent: 2 - - uid: 13481 + - uid: 6016 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 13482 + - uid: 6017 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 2 - - uid: 13483 + - uid: 6018 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 2 - - uid: 13484 + - uid: 6019 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 13485 + - uid: 6020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - - uid: 13486 + - uid: 6021 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-18.5 parent: 2 - - uid: 13487 + - uid: 6022 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 2 - - uid: 13488 + - uid: 6023 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 2 - - uid: 13489 + - uid: 6024 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-21.5 parent: 2 - - uid: 13490 + - uid: 6025 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 2 - - uid: 13491 + - uid: 6026 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 - - uid: 13492 + - uid: 6027 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 2 - - uid: 13493 + - uid: 6028 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 parent: 2 - - uid: 13494 + - uid: 6029 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - - uid: 13495 + - uid: 6030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - - uid: 13496 + - uid: 6031 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - - uid: 13497 + - uid: 6032 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13498 + - uid: 6033 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 2 - - uid: 13499 + - uid: 6034 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - - uid: 13500 + - uid: 6035 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 13501 + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - - uid: 13502 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 2 - - uid: 13505 + - uid: 6038 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 13507 + - uid: 6039 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 13508 + - uid: 6040 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 13509 + - uid: 6041 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 13510 + - uid: 6042 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 13511 + - uid: 6043 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 13512 + - uid: 6044 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 13513 + - uid: 6045 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 13519 + - uid: 6046 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 13520 + - uid: 6047 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 13521 + - uid: 6048 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 13522 + - uid: 6049 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 13523 + - uid: 6050 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 13524 + - uid: 6051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 13525 + - uid: 6052 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 13526 + - uid: 6053 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 13527 + - uid: 6054 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 13528 + - uid: 6055 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 13529 + - uid: 6056 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 13530 + - uid: 6057 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 13531 + - uid: 6058 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 13532 + - uid: 6059 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 13533 + - uid: 6060 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 13534 + - uid: 6061 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 13535 + - uid: 6062 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 13536 + - uid: 6063 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 13537 + - uid: 6064 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 13538 + - uid: 6065 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 13539 + - uid: 6066 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 13540 + - uid: 6067 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 13541 + - uid: 6068 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 13542 + - uid: 6069 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 13543 + - uid: 6070 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 13544 + - uid: 6071 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 13545 + - uid: 6072 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 13546 + - uid: 6073 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 13547 + - uid: 6074 components: - type: Transform pos: 1.5,-41.5 parent: 2 - - uid: 13548 + - uid: 6075 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 13549 + - uid: 6076 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 13550 + - uid: 6077 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 13551 + - uid: 6078 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 13552 + - uid: 6079 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 13553 + - uid: 6080 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 13554 + - uid: 6081 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 13555 + - uid: 6082 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 13556 + - uid: 6083 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 13557 + - uid: 6084 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 13558 + - uid: 6085 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 13559 + - uid: 6086 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 13560 + - uid: 6087 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 13561 + - uid: 6088 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 13562 + - uid: 6089 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 13563 + - uid: 6090 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 13564 + - uid: 6091 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 13565 + - uid: 6092 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 13566 + - uid: 6093 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 13567 + - uid: 6094 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 13568 + - uid: 6095 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 13569 + - uid: 6096 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 13570 + - uid: 6097 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 13571 + - uid: 6098 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 13572 + - uid: 6099 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 13573 + - uid: 6100 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 13574 + - uid: 6101 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 13575 + - uid: 6102 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 13576 + - uid: 6103 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 13577 + - uid: 6104 components: - type: Transform pos: -0.5,-59.5 parent: 2 - - uid: 13578 + - uid: 6105 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - uid: 13579 + - uid: 6106 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 13580 + - uid: 6107 components: - type: Transform pos: -0.5,-62.5 parent: 2 - - uid: 13581 + - uid: 6108 components: - type: Transform pos: -0.5,-63.5 parent: 2 - - uid: 13582 + - uid: 6109 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 13583 + - uid: 6110 components: - type: Transform pos: -0.5,-65.5 parent: 2 - - uid: 13584 + - uid: 6111 components: - type: Transform pos: -0.5,-66.5 parent: 2 - - uid: 13585 + - uid: 6112 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 13586 + - uid: 6113 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 13587 + - uid: 6114 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 13588 + - uid: 6115 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 13589 + - uid: 6116 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 13590 + - uid: 6117 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 13592 + - uid: 6118 components: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 13593 + - uid: 6119 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 13594 + - uid: 6120 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 13595 + - uid: 6121 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 13596 + - uid: 6122 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 13597 + - uid: 6123 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 13598 + - uid: 6124 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 13599 + - uid: 6125 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 13600 + - uid: 6126 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 13601 + - uid: 6127 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 13602 + - uid: 6128 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 13603 + - uid: 6129 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 13604 + - uid: 6130 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 13605 + - uid: 6131 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 13606 + - uid: 6132 components: - type: Transform pos: 1.5,-76.5 parent: 2 - - uid: 13607 + - uid: 6133 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 13608 + - uid: 6134 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 13609 + - uid: 6135 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 13610 + - uid: 6136 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 13611 + - uid: 6137 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 13612 + - uid: 6138 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 13613 + - uid: 6139 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 13614 + - uid: 6140 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 13615 + - uid: 6141 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 13616 + - uid: 6142 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 13617 + - uid: 6143 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 13618 + - uid: 6144 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 13619 + - uid: 6145 components: - type: Transform pos: -0.5,-76.5 parent: 2 - - uid: 13620 + - uid: 6146 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 13621 + - uid: 6147 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 13622 + - uid: 6148 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 13623 + - uid: 6149 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 13624 + - uid: 6150 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 13628 + - uid: 6151 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 13629 + - uid: 6152 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 13630 + - uid: 6153 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 13631 + - uid: 6154 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 13632 + - uid: 6155 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 13633 + - uid: 6156 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 13634 + - uid: 6157 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 13635 + - uid: 6158 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 13638 + - uid: 6159 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-92.5 parent: 2 - - uid: 13639 + - uid: 6160 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-93.5 parent: 2 - - uid: 13640 + - uid: 6161 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-94.5 parent: 2 - - uid: 13641 + - uid: 6162 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-95.5 parent: 2 - - uid: 13642 + - uid: 6163 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-95.5 parent: 2 - - uid: 13643 + - uid: 6164 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-94.5 parent: 2 - - uid: 13644 + - uid: 6165 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-93.5 parent: 2 - - uid: 13645 + - uid: 6166 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-92.5 parent: 2 - - uid: 13646 + - uid: 6167 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-91.5 parent: 2 - - uid: 13647 + - uid: 6168 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-90.5 parent: 2 - - uid: 13648 + - uid: 6169 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-89.5 parent: 2 - - uid: 13649 + - uid: 6170 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-88.5 parent: 2 - - uid: 13650 + - uid: 6171 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-87.5 parent: 2 - - uid: 13651 + - uid: 6172 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-86.5 parent: 2 - - uid: 13652 + - uid: 6173 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-85.5 parent: 2 - - uid: 13653 + - uid: 6174 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 - - uid: 13654 + - uid: 6175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-83.5 parent: 2 - - uid: 13655 + - uid: 6176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-82.5 parent: 2 - - uid: 13656 + - uid: 6177 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-96.5 parent: 2 - - uid: 13657 + - uid: 6178 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-97.5 parent: 2 - - uid: 13658 + - uid: 6179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-98.5 parent: 2 - - uid: 13659 + - uid: 6180 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-99.5 parent: 2 - - uid: 13660 + - uid: 6181 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-100.5 parent: 2 - - uid: 13661 + - uid: 6182 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-101.5 parent: 2 - - uid: 13662 + - uid: 6183 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-102.5 parent: 2 - - uid: 13663 + - uid: 6184 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-103.5 parent: 2 - - uid: 13664 + - uid: 6185 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-104.5 parent: 2 - - uid: 13665 + - uid: 6186 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-105.5 parent: 2 - - uid: 13666 + - uid: 6187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-106.5 parent: 2 - - uid: 13667 + - uid: 6188 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 13668 + - uid: 6189 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - - uid: 13669 + - uid: 6190 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-109.5 parent: 2 - - uid: 13670 + - uid: 6191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-109.5 parent: 2 - - uid: 13671 + - uid: 6192 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-108.5 parent: 2 - - uid: 13672 + - uid: 6193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-107.5 parent: 2 - - uid: 13673 + - uid: 6194 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-106.5 parent: 2 - - uid: 13674 + - uid: 6195 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-105.5 parent: 2 - - uid: 13675 + - uid: 6196 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-104.5 parent: 2 - - uid: 13676 + - uid: 6197 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-103.5 parent: 2 - - uid: 13677 + - uid: 6198 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-102.5 parent: 2 - - uid: 13678 + - uid: 6199 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-101.5 parent: 2 - - uid: 13679 + - uid: 6200 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 13680 + - uid: 6201 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-99.5 parent: 2 - - uid: 13681 + - uid: 6202 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 13682 + - uid: 6203 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-97.5 parent: 2 - - uid: 13683 + - uid: 6204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-96.5 parent: 2 - - uid: 13687 + - uid: 6205 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-118.5 parent: 2 - - uid: 13688 + - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-117.5 parent: 2 - - uid: 13689 + - uid: 6207 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-116.5 parent: 2 - - uid: 13690 + - uid: 6208 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-115.5 parent: 2 - - uid: 13691 + - uid: 6209 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-114.5 parent: 2 - - uid: 13692 + - uid: 6210 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-113.5 parent: 2 - - uid: 13693 + - uid: 6211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-112.5 parent: 2 - - uid: 13694 + - uid: 6212 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-111.5 parent: 2 - - uid: 13695 + - uid: 6213 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-110.5 parent: 2 - - uid: 13696 + - uid: 6214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-110.5 parent: 2 - - uid: 13697 + - uid: 6215 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-111.5 parent: 2 - - uid: 13698 + - uid: 6216 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-112.5 parent: 2 - - uid: 13699 + - uid: 6217 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-113.5 parent: 2 - - uid: 13700 + - uid: 6218 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-114.5 parent: 2 - - uid: 13701 + - uid: 6219 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-115.5 parent: 2 - - uid: 13702 + - uid: 6220 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-116.5 parent: 2 - - uid: 13703 + - uid: 6221 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-117.5 parent: 2 - - uid: 13704 + - uid: 6222 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - - uid: 13705 + - uid: 6223 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-119.5 parent: 2 - - uid: 13706 + - uid: 6224 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - - uid: 13707 + - uid: 6225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-121.5 parent: 2 - - uid: 13708 + - uid: 6226 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 13709 + - uid: 6227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-123.5 parent: 2 - - uid: 13710 + - uid: 6228 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 13711 + - uid: 6229 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-120.5 parent: 2 - - uid: 13712 + - uid: 6230 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-121.5 parent: 2 - - uid: 13713 + - uid: 6231 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-122.5 parent: 2 - - uid: 13714 + - uid: 6232 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-123.5 parent: 2 - - uid: 13715 + - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 13716 + - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-125.5 parent: 2 - - uid: 13717 + - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-126.5 parent: 2 - - uid: 13718 + - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-127.5 parent: 2 - - uid: 13719 + - uid: 6237 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-128.5 parent: 2 - - uid: 13720 + - uid: 6238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-129.5 parent: 2 - - uid: 13721 + - uid: 6239 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-130.5 parent: 2 - - uid: 13722 + - uid: 6240 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-131.5 parent: 2 - - uid: 13723 + - uid: 6241 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-132.5 parent: 2 - - uid: 13724 + - uid: 6242 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-133.5 parent: 2 - - uid: 13725 + - uid: 6243 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - - uid: 13726 + - uid: 6244 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - - uid: 13727 + - uid: 6245 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-135.5 parent: 2 - - uid: 13728 + - uid: 6246 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 13729 + - uid: 6247 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-133.5 parent: 2 - - uid: 13730 + - uid: 6248 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-132.5 parent: 2 - - uid: 13731 + - uid: 6249 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-131.5 parent: 2 - - uid: 13732 + - uid: 6250 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-130.5 parent: 2 - - uid: 13733 + - uid: 6251 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-129.5 parent: 2 - - uid: 13734 + - uid: 6252 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-128.5 parent: 2 - - uid: 13735 + - uid: 6253 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 13736 + - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-126.5 parent: 2 - - uid: 13737 + - uid: 6255 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-125.5 parent: 2 - - uid: 13738 + - uid: 6256 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-136.5 parent: 2 - - uid: 13739 + - uid: 6257 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-137.5 parent: 2 - - uid: 13740 + - uid: 6258 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-138.5 parent: 2 - - uid: 13741 + - uid: 6259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-139.5 parent: 2 - - uid: 13742 + - uid: 6260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-140.5 parent: 2 - - uid: 13743 + - uid: 6261 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13744 + - uid: 6262 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-142.5 parent: 2 - - uid: 13745 + - uid: 6263 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-143.5 parent: 2 - - uid: 13746 + - uid: 6264 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-144.5 parent: 2 - - uid: 13747 + - uid: 6265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-145.5 parent: 2 - - uid: 13748 + - uid: 6266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-146.5 parent: 2 - - uid: 13749 + - uid: 6267 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-147.5 parent: 2 - - uid: 13750 + - uid: 6268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-148.5 parent: 2 - - uid: 13751 + - uid: 6269 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-148.5 parent: 2 - - uid: 13752 + - uid: 6270 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - - uid: 13753 + - uid: 6271 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - - uid: 13754 + - uid: 6272 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - - uid: 13755 + - uid: 6273 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - - uid: 13756 + - uid: 6274 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - - uid: 13757 + - uid: 6275 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - - uid: 13758 + - uid: 6276 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - - uid: 13760 + - uid: 6277 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - - uid: 13761 + - uid: 6278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - - uid: 13762 + - uid: 6279 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-137.5 parent: 2 - - uid: 13763 + - uid: 6280 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - - uid: 13765 + - uid: 6281 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - - uid: 13766 + - uid: 6282 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - - uid: 13768 + - uid: 6283 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-148.5 parent: 2 - - uid: 13769 + - uid: 6284 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-147.5 parent: 2 - - uid: 13770 + - uid: 6285 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-146.5 parent: 2 - - uid: 13771 + - uid: 6286 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-145.5 parent: 2 - - uid: 13772 + - uid: 6287 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-144.5 parent: 2 - - uid: 13773 + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-143.5 parent: 2 - - uid: 13774 + - uid: 6289 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-142.5 parent: 2 - - uid: 13775 + - uid: 6290 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-141.5 parent: 2 - - uid: 13776 + - uid: 6291 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-140.5 parent: 2 - - uid: 13777 + - uid: 6292 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-139.5 parent: 2 - - uid: 13778 + - uid: 6293 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-138.5 parent: 2 - - uid: 13780 + - uid: 6294 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 13781 + - uid: 6295 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - - uid: 13782 + - uid: 6296 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - - uid: 13783 + - uid: 6297 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-140.5 parent: 2 - - uid: 13784 + - uid: 6298 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 13786 + - uid: 6299 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-141.5 parent: 2 - - uid: 13788 + - uid: 6300 components: - type: Transform pos: 1.5,-150.5 parent: 2 - - uid: 13789 + - uid: 6301 components: - type: Transform pos: 1.5,-151.5 parent: 2 - - uid: 13790 + - uid: 6302 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 13791 + - uid: 6303 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 13792 + - uid: 6304 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 13793 + - uid: 6305 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 13794 + - uid: 6306 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 13795 + - uid: 6307 components: - type: Transform pos: 1.5,-157.5 parent: 2 - - uid: 13796 + - uid: 6308 components: - type: Transform pos: 1.5,-158.5 parent: 2 - - uid: 13797 + - uid: 6309 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 13798 + - uid: 6310 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 13799 + - uid: 6311 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 13800 + - uid: 6312 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 13801 + - uid: 6313 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 13802 + - uid: 6314 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 13803 + - uid: 6315 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 13804 + - uid: 6316 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 13805 + - uid: 6317 components: - type: Transform pos: -0.5,-158.5 parent: 2 - - uid: 13806 + - uid: 6318 components: - type: Transform pos: -0.5,-157.5 parent: 2 - - uid: 13807 + - uid: 6319 components: - type: Transform pos: -0.5,-156.5 parent: 2 - - uid: 13808 + - uid: 6320 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 13809 + - uid: 6321 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 13810 + - uid: 6322 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 13811 + - uid: 6323 components: - type: Transform pos: -0.5,-152.5 parent: 2 - - uid: 13812 + - uid: 6324 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 13813 + - uid: 6325 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 13814 + - uid: 6326 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 13815 + - uid: 6327 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 13816 + - uid: 6328 components: - type: Transform pos: -0.5,-279.5 parent: 2 - - uid: 13817 + - uid: 6329 components: - type: Transform pos: -0.5,-280.5 parent: 2 - - uid: 13818 + - uid: 6330 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 13822 + - uid: 6331 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-164.5 parent: 2 - - uid: 13823 + - uid: 6332 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-165.5 parent: 2 - - uid: 13824 + - uid: 6333 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-166.5 parent: 2 - - uid: 13825 + - uid: 6334 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-167.5 parent: 2 - - uid: 13826 + - uid: 6335 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-168.5 parent: 2 - - uid: 13827 + - uid: 6336 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-169.5 parent: 2 - - uid: 13828 + - uid: 6337 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-170.5 parent: 2 - - uid: 13829 + - uid: 6338 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-171.5 parent: 2 - - uid: 13830 + - uid: 6339 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-172.5 parent: 2 - - uid: 13831 + - uid: 6340 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-173.5 parent: 2 - - uid: 13832 + - uid: 6341 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-174.5 parent: 2 - - uid: 13833 + - uid: 6342 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-175.5 parent: 2 - - uid: 13834 + - uid: 6343 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-176.5 parent: 2 - - uid: 13835 + - uid: 6344 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-177.5 parent: 2 - - uid: 13836 + - uid: 6345 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 13838 + - uid: 6346 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-176.5 parent: 2 - - uid: 13839 + - uid: 6347 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-176.5 parent: 2 - - uid: 13840 + - uid: 6348 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-176.5 parent: 2 - - uid: 13841 + - uid: 6349 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-176.5 parent: 2 - - uid: 13843 + - uid: 6350 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - - uid: 13844 + - uid: 6351 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-177.5 parent: 2 - - uid: 13845 + - uid: 6352 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-175.5 parent: 2 - - uid: 13846 + - uid: 6353 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-174.5 parent: 2 - - uid: 13847 + - uid: 6354 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-173.5 parent: 2 - - uid: 13848 + - uid: 6355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-172.5 parent: 2 - - uid: 13849 + - uid: 6356 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-171.5 parent: 2 - - uid: 13850 + - uid: 6357 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-170.5 parent: 2 - - uid: 13851 + - uid: 6358 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-169.5 parent: 2 - - uid: 13852 + - uid: 6359 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-168.5 parent: 2 - - uid: 13853 + - uid: 6360 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-167.5 parent: 2 - - uid: 13854 + - uid: 6361 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-166.5 parent: 2 - - uid: 13855 + - uid: 6362 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-165.5 parent: 2 - - uid: 13856 + - uid: 6363 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - - uid: 13857 + - uid: 6364 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - - uid: 13858 + - uid: 6365 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 13859 + - uid: 6366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-180.5 parent: 2 - - uid: 13860 + - uid: 6367 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-181.5 parent: 2 - - uid: 13861 + - uid: 6368 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-182.5 parent: 2 - - uid: 13862 + - uid: 6369 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-183.5 parent: 2 - - uid: 13863 + - uid: 6370 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-184.5 parent: 2 - - uid: 13864 + - uid: 6371 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-185.5 parent: 2 - - uid: 13865 + - uid: 6372 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-186.5 parent: 2 - - uid: 13866 + - uid: 6373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-187.5 parent: 2 - - uid: 13867 + - uid: 6374 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-188.5 parent: 2 - - uid: 13868 + - uid: 6375 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-189.5 parent: 2 - - uid: 13869 + - uid: 6376 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-189.5 parent: 2 - - uid: 13870 + - uid: 6377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13871 + - uid: 6378 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-187.5 parent: 2 - - uid: 13872 + - uid: 6379 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-186.5 parent: 2 - - uid: 13873 + - uid: 6380 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-185.5 parent: 2 - - uid: 13874 + - uid: 6381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-184.5 parent: 2 - - uid: 13875 + - uid: 6382 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-183.5 parent: 2 - - uid: 13876 + - uid: 6383 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-182.5 parent: 2 - - uid: 13877 + - uid: 6384 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 13878 + - uid: 6385 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-180.5 parent: 2 - - uid: 13879 + - uid: 6386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 13880 + - uid: 6387 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-190.5 parent: 2 - - uid: 13881 + - uid: 6388 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-191.5 parent: 2 - - uid: 13882 + - uid: 6389 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-192.5 parent: 2 - - uid: 13883 + - uid: 6390 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-193.5 parent: 2 - - uid: 13884 + - uid: 6391 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-194.5 parent: 2 - - uid: 13885 + - uid: 6392 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-195.5 parent: 2 - - uid: 13886 + - uid: 6393 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-196.5 parent: 2 - - uid: 13887 + - uid: 6394 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-197.5 parent: 2 - - uid: 13888 + - uid: 6395 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-198.5 parent: 2 - - uid: 13889 + - uid: 6396 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-199.5 parent: 2 - - uid: 13890 + - uid: 6397 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-200.5 parent: 2 - - uid: 13891 + - uid: 6398 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-201.5 parent: 2 - - uid: 13892 + - uid: 6399 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-202.5 parent: 2 - - uid: 13893 + - uid: 6400 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-203.5 parent: 2 - - uid: 13894 + - uid: 6401 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-204.5 parent: 2 - - uid: 13895 + - uid: 6402 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-205.5 parent: 2 - - uid: 13896 + - uid: 6403 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - - uid: 13897 + - uid: 6404 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - - uid: 13898 + - uid: 6405 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 13899 + - uid: 6406 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - - uid: 13900 + - uid: 6407 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 13901 + - uid: 6408 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-200.5 parent: 2 - - uid: 13902 + - uid: 6409 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - - uid: 13903 + - uid: 6410 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - - uid: 13904 + - uid: 6411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - - uid: 13905 + - uid: 6412 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - - uid: 13906 + - uid: 6413 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 13907 + - uid: 6414 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - - uid: 13908 + - uid: 6415 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-193.5 parent: 2 - - uid: 13909 + - uid: 6416 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - - uid: 13910 + - uid: 6417 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - - uid: 13911 + - uid: 6418 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-190.5 parent: 2 - - uid: 13912 + - uid: 6419 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-206.5 parent: 2 - - uid: 13913 + - uid: 6420 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - - uid: 13914 + - uid: 6421 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 13915 + - uid: 6422 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-209.5 parent: 2 - - uid: 13916 + - uid: 6423 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-210.5 parent: 2 - - uid: 13917 + - uid: 6424 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-211.5 parent: 2 - - uid: 13918 + - uid: 6425 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-212.5 parent: 2 - - uid: 13919 + - uid: 6426 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-213.5 parent: 2 - - uid: 13920 + - uid: 6427 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-214.5 parent: 2 - - uid: 13921 + - uid: 6428 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-215.5 parent: 2 - - uid: 13922 + - uid: 6429 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-216.5 parent: 2 - - uid: 13923 + - uid: 6430 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-217.5 parent: 2 - - uid: 13924 + - uid: 6431 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-217.5 parent: 2 - - uid: 13925 + - uid: 6432 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-216.5 parent: 2 - - uid: 13926 + - uid: 6433 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-215.5 parent: 2 - - uid: 13927 + - uid: 6434 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-214.5 parent: 2 - - uid: 13928 + - uid: 6435 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-213.5 parent: 2 - - uid: 13929 + - uid: 6436 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-212.5 parent: 2 - - uid: 13930 + - uid: 6437 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-211.5 parent: 2 - - uid: 13931 + - uid: 6438 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-210.5 parent: 2 - - uid: 13932 + - uid: 6439 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-209.5 parent: 2 - - uid: 13933 + - uid: 6440 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-208.5 parent: 2 - - uid: 13934 + - uid: 6441 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-207.5 parent: 2 - - uid: 13935 + - uid: 6442 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 13936 + - uid: 6443 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-218.5 parent: 2 - - uid: 13937 + - uid: 6444 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-219.5 parent: 2 - - uid: 13938 + - uid: 6445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-220.5 parent: 2 - - uid: 13939 + - uid: 6446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-221.5 parent: 2 - - uid: 13940 + - uid: 6447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-222.5 parent: 2 - - uid: 13941 + - uid: 6448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-223.5 parent: 2 - - uid: 13942 + - uid: 6449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-224.5 parent: 2 - - uid: 13943 + - uid: 6450 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-225.5 parent: 2 - - uid: 13944 + - uid: 6451 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-226.5 parent: 2 - - uid: 13945 + - uid: 6452 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-227.5 parent: 2 - - uid: 13946 + - uid: 6453 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-228.5 parent: 2 - - uid: 13947 + - uid: 6454 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-229.5 parent: 2 - - uid: 13948 + - uid: 6455 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - - uid: 13949 + - uid: 6456 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - - uid: 13950 + - uid: 6457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - - uid: 13951 + - uid: 6458 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 13952 + - uid: 6459 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - - uid: 13953 + - uid: 6460 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 13954 + - uid: 6461 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-236.5 parent: 2 - - uid: 13955 + - uid: 6462 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-237.5 parent: 2 - - uid: 13956 + - uid: 6463 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-238.5 parent: 2 - - uid: 13957 + - uid: 6464 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-239.5 parent: 2 - - uid: 13958 + - uid: 6465 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-240.5 parent: 2 - - uid: 13959 + - uid: 6466 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-241.5 parent: 2 - - uid: 13960 + - uid: 6467 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 13963 + - uid: 6468 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-242.5 parent: 2 - - uid: 13964 + - uid: 6469 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-241.5 parent: 2 - - uid: 13965 + - uid: 6470 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-240.5 parent: 2 - - uid: 13966 + - uid: 6471 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-239.5 parent: 2 - - uid: 13967 + - uid: 6472 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-238.5 parent: 2 - - uid: 13968 + - uid: 6473 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-237.5 parent: 2 - - uid: 13969 + - uid: 6474 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-236.5 parent: 2 - - uid: 13970 + - uid: 6475 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-235.5 parent: 2 - - uid: 13971 + - uid: 6476 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-234.5 parent: 2 - - uid: 13972 + - uid: 6477 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-233.5 parent: 2 - - uid: 13973 + - uid: 6478 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-232.5 parent: 2 - - uid: 13974 + - uid: 6479 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-231.5 parent: 2 - - uid: 13975 + - uid: 6480 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-230.5 parent: 2 - - uid: 13976 + - uid: 6481 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-229.5 parent: 2 - - uid: 13977 + - uid: 6482 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-228.5 parent: 2 - - uid: 13978 + - uid: 6483 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-227.5 parent: 2 - - uid: 13979 + - uid: 6484 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-226.5 parent: 2 - - uid: 13980 + - uid: 6485 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-225.5 parent: 2 - - uid: 13981 + - uid: 6486 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-224.5 parent: 2 - - uid: 13982 + - uid: 6487 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-223.5 parent: 2 - - uid: 13983 + - uid: 6488 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-222.5 parent: 2 - - uid: 13984 + - uid: 6489 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-221.5 parent: 2 - - uid: 13985 + - uid: 6490 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-220.5 parent: 2 - - uid: 13986 + - uid: 6491 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-219.5 parent: 2 - - uid: 13987 + - uid: 6492 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-218.5 parent: 2 - - uid: 14011 + - uid: 6493 components: - type: Transform pos: 15.5,-107.5 parent: 2 - - uid: 14014 + - uid: 6494 components: - type: Transform pos: 15.5,-112.5 parent: 2 - - uid: 14018 + - uid: 6495 components: - type: Transform pos: -9.5,-223.5 parent: 2 - - uid: 14019 + - uid: 6496 components: - type: Transform pos: -9.5,-272.5 parent: 2 - - uid: 14028 + - uid: 6497 components: - type: Transform pos: -3.5,-286.5 parent: 2 - - uid: 14031 + - uid: 6498 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-283.5 parent: 2 - - uid: 14032 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-284.5 parent: 2 - - uid: 14034 + - uid: 6500 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-285.5 parent: 2 - - uid: 14035 + - uid: 6501 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 14051 + - uid: 6502 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 14052 + - uid: 6503 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 14053 + - uid: 6504 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-264.5 parent: 2 - - uid: 14054 + - uid: 6505 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-265.5 parent: 2 - - uid: 14055 + - uid: 6506 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-266.5 parent: 2 - - uid: 14056 + - uid: 6507 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-267.5 parent: 2 - - uid: 14057 + - uid: 6508 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-268.5 parent: 2 - - uid: 14058 + - uid: 6509 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-269.5 parent: 2 - - uid: 14059 + - uid: 6510 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-270.5 parent: 2 - - uid: 14060 + - uid: 6511 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-271.5 parent: 2 - - uid: 14061 + - uid: 6512 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-272.5 parent: 2 - - uid: 14062 + - uid: 6513 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-273.5 parent: 2 - - uid: 14063 + - uid: 6514 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - - uid: 14064 + - uid: 6515 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-272.5 parent: 2 - - uid: 14065 + - uid: 6516 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-271.5 parent: 2 - - uid: 14066 + - uid: 6517 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-270.5 parent: 2 - - uid: 14067 + - uid: 6518 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-269.5 parent: 2 - - uid: 14068 + - uid: 6519 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-268.5 parent: 2 - - uid: 14069 + - uid: 6520 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-267.5 parent: 2 - - uid: 14070 + - uid: 6521 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-266.5 parent: 2 - - uid: 14071 + - uid: 6522 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-265.5 parent: 2 - - uid: 14072 + - uid: 6523 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-264.5 parent: 2 - - uid: 14073 + - uid: 6524 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-263.5 parent: 2 - - uid: 14074 + - uid: 6525 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-262.5 parent: 2 - - uid: 14075 + - uid: 6526 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-261.5 parent: 2 - - uid: 14080 + - uid: 6527 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-277.5 parent: 2 - - uid: 14081 + - uid: 6528 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-275.5 parent: 2 - - uid: 14082 + - uid: 6529 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-276.5 parent: 2 - - uid: 14083 + - uid: 6530 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - - uid: 14084 + - uid: 6531 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-274.5 parent: 2 - - uid: 14104 + - uid: 6532 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-279.5 parent: 2 - - uid: 14105 + - uid: 6533 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14107 + - uid: 6534 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-285.5 parent: 2 - - uid: 14108 + - uid: 6535 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-286.5 parent: 2 - - uid: 14109 + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-287.5 parent: 2 - - uid: 14110 + - uid: 6537 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-288.5 parent: 2 - - uid: 14111 + - uid: 6538 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-289.5 parent: 2 - - uid: 14112 + - uid: 6539 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-290.5 parent: 2 - - uid: 14113 + - uid: 6540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-291.5 parent: 2 - - uid: 14114 + - uid: 6541 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-292.5 parent: 2 - - uid: 14115 + - uid: 6542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-293.5 parent: 2 - - uid: 14116 + - uid: 6543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 14117 + - uid: 6544 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-295.5 parent: 2 - - uid: 14118 + - uid: 6545 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-296.5 parent: 2 - - uid: 14119 + - uid: 6546 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-297.5 parent: 2 - - uid: 14120 + - uid: 6547 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-298.5 parent: 2 - - uid: 14121 + - uid: 6548 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-298.5 parent: 2 - - uid: 14122 + - uid: 6549 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-297.5 parent: 2 - - uid: 14123 + - uid: 6550 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-296.5 parent: 2 - - uid: 14124 + - uid: 6551 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-295.5 parent: 2 - - uid: 14125 + - uid: 6552 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-294.5 parent: 2 - - uid: 14126 + - uid: 6553 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-293.5 parent: 2 - - uid: 14127 + - uid: 6554 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-292.5 parent: 2 - - uid: 14128 + - uid: 6555 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-291.5 parent: 2 - - uid: 14129 + - uid: 6556 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-290.5 parent: 2 - - uid: 14130 + - uid: 6557 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 14131 + - uid: 6558 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - - uid: 14132 + - uid: 6559 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - - uid: 14133 + - uid: 6560 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - - uid: 14135 + - uid: 6561 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-299.5 parent: 2 - - uid: 14136 + - uid: 6562 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - - uid: 14137 + - uid: 6563 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - - uid: 14138 + - uid: 6564 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - - uid: 14140 + - uid: 6565 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 14141 + - uid: 6566 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-303.5 parent: 2 - - uid: 14143 + - uid: 6567 components: - type: Transform pos: 1.5,-299.5 parent: 2 - - uid: 14144 + - uid: 6568 components: - type: Transform pos: 1.5,-300.5 parent: 2 - - uid: 14145 + - uid: 6569 components: - type: Transform pos: 1.5,-301.5 parent: 2 - - uid: 14146 + - uid: 6570 components: - type: Transform pos: 1.5,-302.5 parent: 2 - - uid: 14147 + - uid: 6571 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14148 + - uid: 6572 components: - type: Transform pos: 1.5,-304.5 parent: 2 - - uid: 14149 + - uid: 6573 components: - type: Transform pos: 1.5,-305.5 parent: 2 - - uid: 14150 + - uid: 6574 components: - type: Transform pos: 1.5,-306.5 parent: 2 - - uid: 14151 + - uid: 6575 components: - type: Transform pos: 1.5,-307.5 parent: 2 - - uid: 14152 + - uid: 6576 components: - type: Transform pos: 1.5,-308.5 parent: 2 - - uid: 14153 + - uid: 6577 components: - type: Transform pos: 1.5,-309.5 parent: 2 - - uid: 14154 + - uid: 6578 components: - type: Transform pos: 1.5,-310.5 parent: 2 - - uid: 14155 + - uid: 6579 components: - type: Transform pos: 1.5,-311.5 parent: 2 - - uid: 14156 + - uid: 6580 components: - type: Transform pos: 1.5,-312.5 parent: 2 - - uid: 14157 + - uid: 6581 components: - type: Transform pos: 1.5,-313.5 parent: 2 - - uid: 14158 + - uid: 6582 components: - type: Transform pos: 1.5,-314.5 parent: 2 - - uid: 14159 + - uid: 6583 components: - type: Transform pos: 1.5,-315.5 parent: 2 - - uid: 14160 + - uid: 6584 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 14161 + - uid: 6585 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 14162 + - uid: 6586 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 14163 + - uid: 6587 components: - type: Transform pos: -0.5,-316.5 parent: 2 - - uid: 14164 + - uid: 6588 components: - type: Transform pos: -0.5,-315.5 parent: 2 - - uid: 14165 + - uid: 6589 components: - type: Transform pos: -0.5,-314.5 parent: 2 - - uid: 14166 + - uid: 6590 components: - type: Transform pos: -0.5,-313.5 parent: 2 - - uid: 14167 + - uid: 6591 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 14168 + - uid: 6592 components: - type: Transform pos: -0.5,-311.5 parent: 2 - - uid: 14169 + - uid: 6593 components: - type: Transform pos: -0.5,-310.5 parent: 2 - - uid: 14170 + - uid: 6594 components: - type: Transform pos: -0.5,-309.5 parent: 2 - - uid: 14171 + - uid: 6595 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 14172 + - uid: 6596 components: - type: Transform pos: -0.5,-307.5 parent: 2 - - uid: 14173 + - uid: 6597 components: - type: Transform pos: -0.5,-306.5 parent: 2 - - uid: 14174 + - uid: 6598 components: - type: Transform pos: -0.5,-305.5 parent: 2 - - uid: 14175 + - uid: 6599 components: - type: Transform pos: -0.5,-304.5 parent: 2 - - uid: 14176 + - uid: 6600 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 14177 + - uid: 6601 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 14178 + - uid: 6602 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 14179 + - uid: 6603 components: - type: Transform pos: 1.5,-322.5 parent: 2 - - uid: 14180 + - uid: 6604 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 14181 + - uid: 6605 components: - type: Transform pos: 1.5,-324.5 parent: 2 - - uid: 14182 + - uid: 6606 components: - type: Transform pos: 1.5,-325.5 parent: 2 - - uid: 14183 + - uid: 6607 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 14184 + - uid: 6608 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 14185 + - uid: 6609 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 14186 + - uid: 6610 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 14187 + - uid: 6611 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 14188 + - uid: 6612 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 14189 + - uid: 6613 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 14190 + - uid: 6614 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 14191 + - uid: 6615 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 14192 + - uid: 6616 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 14193 + - uid: 6617 components: - type: Transform pos: -0.5,-325.5 parent: 2 - - uid: 14194 + - uid: 6618 components: - type: Transform pos: -0.5,-324.5 parent: 2 - - uid: 14195 + - uid: 6619 components: - type: Transform pos: -0.5,-323.5 parent: 2 - - uid: 14196 + - uid: 6620 components: - type: Transform pos: -0.5,-322.5 parent: 2 - - uid: 14197 + - uid: 6621 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 14198 + - uid: 6622 components: - type: Transform pos: -0.5,-320.5 parent: 2 - - uid: 14199 + - uid: 6623 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14200 + - uid: 6624 components: - type: Transform pos: -0.5,-318.5 parent: 2 - - uid: 14202 + - uid: 6625 components: - type: Transform pos: -0.5,-331.5 parent: 2 - - uid: 14203 + - uid: 6626 components: - type: Transform pos: -0.5,-332.5 parent: 2 - - uid: 14204 + - uid: 6627 components: - type: Transform pos: -0.5,-333.5 parent: 2 - - uid: 14205 + - uid: 6628 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 14206 + - uid: 6629 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 14207 + - uid: 6630 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 14208 + - uid: 6631 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 14209 + - uid: 6632 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 14211 + - uid: 6633 components: - type: Transform pos: 1.5,-339.5 parent: 2 - - uid: 14212 + - uid: 6634 components: - type: Transform pos: 1.5,-338.5 parent: 2 - - uid: 14213 + - uid: 6635 components: - type: Transform pos: 1.5,-337.5 parent: 2 - - uid: 14214 + - uid: 6636 components: - type: Transform pos: 1.5,-336.5 parent: 2 - - uid: 14215 + - uid: 6637 components: - type: Transform pos: 1.5,-335.5 parent: 2 - - uid: 14216 + - uid: 6638 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 14217 + - uid: 6639 components: - type: Transform pos: 1.5,-333.5 parent: 2 - - uid: 14218 + - uid: 6640 components: - type: Transform pos: 1.5,-332.5 parent: 2 - - uid: 14219 + - uid: 6641 components: - type: Transform pos: 1.5,-331.5 parent: 2 - - uid: 14222 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - - uid: 14224 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-339.5 parent: 2 - - uid: 14226 + - uid: 6644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-340.5 parent: 2 - - uid: 14719 + - uid: 6645 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 15302 + - uid: 6646 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - - uid: 15303 + - uid: 6647 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - - uid: 15304 + - uid: 6648 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - - uid: 15305 + - uid: 6649 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 15306 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 15309 + - uid: 6651 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 15310 + - uid: 6652 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 15311 + - uid: 6653 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 15312 + - uid: 6654 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 15313 + - uid: 6655 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 15314 + - uid: 6656 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 15315 + - uid: 6657 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 15316 + - uid: 6658 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 15317 + - uid: 6659 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 15318 + - uid: 6660 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 15319 + - uid: 6661 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 15320 + - uid: 6662 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 15321 + - uid: 6663 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 15322 + - uid: 6664 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 15323 + - uid: 6665 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 15324 + - uid: 6666 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 15325 + - uid: 6667 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 15326 + - uid: 6668 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 15327 + - uid: 6669 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 15328 + - uid: 6670 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 15329 + - uid: 6671 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 15330 + - uid: 6672 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 15331 + - uid: 6673 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 15332 + - uid: 6674 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 15338 + - uid: 6675 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 15339 + - uid: 6676 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 15340 + - uid: 6677 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 15341 + - uid: 6678 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 15342 + - uid: 6679 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 15343 + - uid: 6680 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 15344 + - uid: 6681 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 15345 + - uid: 6682 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 15346 + - uid: 6683 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 15347 + - uid: 6684 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 15348 + - uid: 6685 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 15349 + - uid: 6686 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 15350 + - uid: 6687 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 15351 + - uid: 6688 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 15352 + - uid: 6689 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 15353 + - uid: 6690 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 15354 + - uid: 6691 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 15355 + - uid: 6692 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 15356 + - uid: 6693 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 15357 + - uid: 6694 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 15358 + - uid: 6695 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 15359 + - uid: 6696 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 15360 + - uid: 6697 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 15361 + - uid: 6698 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 15363 + - uid: 6699 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-32.5 parent: 2 - - uid: 15366 + - uid: 6700 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - - uid: 15367 + - uid: 6701 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 - - uid: 15370 + - uid: 6702 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 15371 + - uid: 6703 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 15372 + - uid: 6704 components: - type: Transform pos: 0.5,-66.5 parent: 2 - - uid: 15373 + - uid: 6705 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 15374 + - uid: 6706 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 15375 + - uid: 6707 components: - type: Transform pos: 0.5,-63.5 parent: 2 - - uid: 15376 + - uid: 6708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 15377 + - uid: 6709 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 15378 + - uid: 6710 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 15379 + - uid: 6711 components: - type: Transform pos: 0.5,-59.5 parent: 2 - - uid: 15380 + - uid: 6712 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 15381 + - uid: 6713 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 15382 + - uid: 6714 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 15383 + - uid: 6715 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 15384 + - uid: 6716 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 15385 + - uid: 6717 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 15386 + - uid: 6718 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 15387 + - uid: 6719 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 15388 + - uid: 6720 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 15389 + - uid: 6721 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 15390 + - uid: 6722 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 15391 + - uid: 6723 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 15392 + - uid: 6724 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 15393 + - uid: 6725 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 15394 + - uid: 6726 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 15397 + - uid: 6727 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 15398 + - uid: 6728 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 15401 + - uid: 6729 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - - uid: 15402 + - uid: 6730 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - - uid: 15403 + - uid: 6731 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - - uid: 15404 + - uid: 6732 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-88.5 parent: 2 - - uid: 15405 + - uid: 6733 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - - uid: 15406 + - uid: 6734 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-90.5 parent: 2 - - uid: 15407 + - uid: 6735 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-91.5 parent: 2 - - uid: 15408 + - uid: 6736 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - - uid: 15409 + - uid: 6737 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - - uid: 15410 + - uid: 6738 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - - uid: 15411 + - uid: 6739 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - - uid: 15412 + - uid: 6740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-96.5 parent: 2 - - uid: 15414 + - uid: 6741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - - uid: 15415 + - uid: 6742 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - - uid: 15416 + - uid: 6743 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - - uid: 15417 + - uid: 6744 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-97.5 parent: 2 - - uid: 15418 + - uid: 6745 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-97.5 parent: 2 - - uid: 15420 + - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - - uid: 15421 + - uid: 6747 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - - uid: 15422 + - uid: 6748 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-100.5 parent: 2 - - uid: 15423 + - uid: 6749 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - - uid: 15424 + - uid: 6750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-102.5 parent: 2 - - uid: 15425 + - uid: 6751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - - uid: 15426 + - uid: 6752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-104.5 parent: 2 - - uid: 15427 + - uid: 6753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - - uid: 15428 + - uid: 6754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-106.5 parent: 2 - - uid: 15429 + - uid: 6755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - - uid: 15433 + - uid: 6756 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 15434 + - uid: 6757 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 15435 + - uid: 6758 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 15436 + - uid: 6759 components: - type: Transform pos: 0.5,-112.5 parent: 2 - - uid: 15437 + - uid: 6760 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 15438 + - uid: 6761 components: - type: Transform pos: 0.5,-114.5 parent: 2 - - uid: 15439 + - uid: 6762 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 15440 + - uid: 6763 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 15441 + - uid: 6764 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 15442 + - uid: 6765 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 15443 + - uid: 6766 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 15444 + - uid: 6767 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 15445 + - uid: 6768 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 15446 + - uid: 6769 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 15447 + - uid: 6770 components: - type: Transform pos: 0.5,-123.5 parent: 2 - - uid: 15448 + - uid: 6771 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 15452 + - uid: 6772 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-125.5 parent: 2 - - uid: 15453 + - uid: 6773 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-125.5 parent: 2 - - uid: 15454 + - uid: 6774 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 15455 + - uid: 6775 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 15456 + - uid: 6776 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 15457 + - uid: 6777 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 15458 + - uid: 6778 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 15459 + - uid: 6779 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 15460 + - uid: 6780 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 15461 + - uid: 6781 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 15462 + - uid: 6782 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 15464 + - uid: 6783 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 15465 + - uid: 6784 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 15466 + - uid: 6785 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 15467 + - uid: 6786 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 15468 + - uid: 6787 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 15469 + - uid: 6788 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 15470 + - uid: 6789 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 15471 + - uid: 6790 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 15472 + - uid: 6791 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 15473 + - uid: 6792 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 15474 + - uid: 6793 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 15475 + - uid: 6794 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 15476 + - uid: 6795 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 15477 + - uid: 6796 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 15478 + - uid: 6797 components: - type: Transform pos: 0.5,-149.5 parent: 2 - - uid: 15481 + - uid: 6798 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 15482 + - uid: 6799 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 15483 + - uid: 6800 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 15484 + - uid: 6801 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 15485 + - uid: 6802 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 15486 + - uid: 6803 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 15487 + - uid: 6804 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 15488 + - uid: 6805 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 15489 + - uid: 6806 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 15490 + - uid: 6807 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 15491 + - uid: 6808 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 15496 + - uid: 6809 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 15497 + - uid: 6810 components: - type: Transform pos: 0.5,-164.5 parent: 2 - - uid: 15498 + - uid: 6811 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 15499 + - uid: 6812 components: - type: Transform pos: 0.5,-166.5 parent: 2 - - uid: 15500 + - uid: 6813 components: - type: Transform pos: 0.5,-167.5 parent: 2 - - uid: 15501 + - uid: 6814 components: - type: Transform pos: 0.5,-168.5 parent: 2 - - uid: 15502 + - uid: 6815 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 15503 + - uid: 6816 components: - type: Transform pos: 0.5,-170.5 parent: 2 - - uid: 15504 + - uid: 6817 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 15505 + - uid: 6818 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 15506 + - uid: 6819 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 15507 + - uid: 6820 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 15508 + - uid: 6821 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 15509 + - uid: 6822 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 15510 + - uid: 6823 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 15511 + - uid: 6824 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 15514 + - uid: 6825 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 15515 + - uid: 6826 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 15516 + - uid: 6827 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 15517 + - uid: 6828 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 15518 + - uid: 6829 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 15519 + - uid: 6830 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 15520 + - uid: 6831 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 15521 + - uid: 6832 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 15522 + - uid: 6833 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 15524 + - uid: 6834 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - - uid: 15525 + - uid: 6835 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - - uid: 15526 + - uid: 6836 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - - uid: 15527 + - uid: 6837 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-189.5 parent: 2 - - uid: 15528 + - uid: 6838 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-189.5 parent: 2 - - uid: 15531 + - uid: 6839 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - - uid: 15532 + - uid: 6840 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - - uid: 15533 + - uid: 6841 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - - uid: 15534 + - uid: 6842 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - - uid: 15535 + - uid: 6843 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-194.5 parent: 2 - - uid: 15536 + - uid: 6844 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 15537 + - uid: 6845 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - - uid: 15538 + - uid: 6846 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-197.5 parent: 2 - - uid: 15539 + - uid: 6847 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - - uid: 15540 + - uid: 6848 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - - uid: 15541 + - uid: 6849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - - uid: 15542 + - uid: 6850 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - - uid: 15543 + - uid: 6851 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-202.5 parent: 2 - - uid: 15544 + - uid: 6852 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - - uid: 15545 + - uid: 6853 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - - uid: 15546 + - uid: 6854 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-205.5 parent: 2 - - uid: 15548 + - uid: 6855 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-206.5 parent: 2 - - uid: 15549 + - uid: 6856 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - - uid: 15552 + - uid: 6857 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - - uid: 15553 + - uid: 6858 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-208.5 parent: 2 - - uid: 15554 + - uid: 6859 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - - uid: 15555 + - uid: 6860 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-210.5 parent: 2 - - uid: 15556 + - uid: 6861 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - - uid: 15557 + - uid: 6862 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-212.5 parent: 2 - - uid: 15558 + - uid: 6863 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - - uid: 15559 + - uid: 6864 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-214.5 parent: 2 - - uid: 15560 + - uid: 6865 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - - uid: 15561 + - uid: 6866 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - - uid: 15562 + - uid: 6867 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - - uid: 15566 + - uid: 6868 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-355.5 parent: 2 - - uid: 15567 + - uid: 6869 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-354.5 parent: 2 - - uid: 15568 + - uid: 6870 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-353.5 parent: 2 - - uid: 15569 + - uid: 6871 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-352.5 parent: 2 - - uid: 15570 + - uid: 6872 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-351.5 parent: 2 - - uid: 15571 + - uid: 6873 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-350.5 parent: 2 - - uid: 15572 + - uid: 6874 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-349.5 parent: 2 - - uid: 15573 + - uid: 6875 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-348.5 parent: 2 - - uid: 15574 + - uid: 6876 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-347.5 parent: 2 - - uid: 15575 + - uid: 6877 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-346.5 parent: 2 - - uid: 15576 + - uid: 6878 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-345.5 parent: 2 - - uid: 15577 + - uid: 6879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-344.5 parent: 2 - - uid: 15578 + - uid: 6880 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-343.5 parent: 2 - - uid: 15579 + - uid: 6881 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-342.5 parent: 2 - - uid: 15580 + - uid: 6882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-341.5 parent: 2 - - uid: 15581 + - uid: 6883 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-340.5 parent: 2 - - uid: 15582 + - uid: 6884 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-339.5 parent: 2 - - uid: 15583 + - uid: 6885 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-338.5 parent: 2 - - uid: 15589 + - uid: 6886 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 15590 + - uid: 6887 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 15591 + - uid: 6888 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 15592 + - uid: 6889 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 15593 + - uid: 6890 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 15594 + - uid: 6891 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 15595 + - uid: 6892 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 15596 + - uid: 6893 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 15597 + - uid: 6894 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 15598 + - uid: 6895 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 15599 + - uid: 6896 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 15600 + - uid: 6897 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 15601 + - uid: 6898 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 15602 + - uid: 6899 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 15603 + - uid: 6900 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 15604 + - uid: 6901 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 15605 + - uid: 6902 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 15606 + - uid: 6903 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 15611 + - uid: 6904 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - - uid: 15612 + - uid: 6905 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-318.5 parent: 2 - - uid: 15613 + - uid: 6906 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-315.5 parent: 2 - - uid: 15614 + - uid: 6907 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - - uid: 15615 + - uid: 6908 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - - uid: 15616 + - uid: 6909 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - - uid: 15617 + - uid: 6910 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - - uid: 15618 + - uid: 6911 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - - uid: 15619 + - uid: 6912 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - - uid: 15621 + - uid: 6913 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - - uid: 15622 + - uid: 6914 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - - uid: 15623 + - uid: 6915 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - - uid: 15624 + - uid: 6916 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - - uid: 15625 + - uid: 6917 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - - uid: 15626 + - uid: 6918 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-308.5 parent: 2 - - uid: 15627 + - uid: 6919 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - - uid: 15628 + - uid: 6920 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-308.5 parent: 2 - - uid: 15629 + - uid: 6921 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - - uid: 15631 + - uid: 6922 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-307.5 parent: 2 - - uid: 15632 + - uid: 6923 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-306.5 parent: 2 - - uid: 15633 + - uid: 6924 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-305.5 parent: 2 - - uid: 15634 + - uid: 6925 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - - uid: 15635 + - uid: 6926 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-303.5 parent: 2 - - uid: 15636 + - uid: 6927 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - - uid: 15637 + - uid: 6928 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - - uid: 15638 + - uid: 6929 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - - uid: 15639 + - uid: 6930 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - - uid: 15640 + - uid: 6931 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - - uid: 15641 + - uid: 6932 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-297.5 parent: 2 - - uid: 15642 + - uid: 6933 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - - uid: 15643 + - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-295.5 parent: 2 - - uid: 15644 + - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - - uid: 15645 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-293.5 parent: 2 - - uid: 15646 + - uid: 6937 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - - uid: 15647 + - uid: 6938 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-291.5 parent: 2 - - uid: 15648 + - uid: 6939 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - - uid: 15649 + - uid: 6940 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-289.5 parent: 2 - - uid: 15650 + - uid: 6941 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - - uid: 15651 + - uid: 6942 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-287.5 parent: 2 - - uid: 15659 + - uid: 6943 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 15660 + - uid: 6944 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 15661 + - uid: 6945 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-284.5 parent: 2 - - uid: 15663 + - uid: 6946 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-283.5 parent: 2 - - uid: 15664 + - uid: 6947 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-282.5 parent: 2 - - uid: 15665 + - uid: 6948 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-281.5 parent: 2 - - uid: 15666 + - uid: 6949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-280.5 parent: 2 - - uid: 15667 + - uid: 6950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-279.5 parent: 2 - - uid: 15668 + - uid: 6951 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-278.5 parent: 2 - - uid: 15669 + - uid: 6952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-277.5 parent: 2 - - uid: 15670 + - uid: 6953 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-276.5 parent: 2 - - uid: 15671 + - uid: 6954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-275.5 parent: 2 - - uid: 15673 + - uid: 6955 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-274.5 parent: 2 - - uid: 15674 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-274.5 parent: 2 - - uid: 15676 + - uid: 6957 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-273.5 parent: 2 - - uid: 15677 + - uid: 6958 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - - uid: 15678 + - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-271.5 parent: 2 - - uid: 15681 + - uid: 6960 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-269.5 parent: 2 - - uid: 15682 + - uid: 6961 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-268.5 parent: 2 - - uid: 15683 + - uid: 6962 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - - uid: 15684 + - uid: 6963 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-266.5 parent: 2 - - uid: 15685 + - uid: 6964 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - - uid: 15686 + - uid: 6965 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-264.5 parent: 2 - - uid: 15687 + - uid: 6966 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-263.5 parent: 2 - - uid: 15688 + - uid: 6967 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-262.5 parent: 2 - - uid: 15689 + - uid: 6968 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-261.5 parent: 2 - - uid: 15690 + - uid: 6969 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-260.5 parent: 2 - - uid: 15693 + - uid: 6970 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-258.5 parent: 2 - - uid: 15694 + - uid: 6971 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-257.5 parent: 2 - - uid: 15695 + - uid: 6972 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - - uid: 15698 + - uid: 6973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-254.5 parent: 2 - - uid: 15699 + - uid: 6974 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-253.5 parent: 2 - - uid: 15700 + - uid: 6975 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-252.5 parent: 2 - - uid: 15701 + - uid: 6976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-251.5 parent: 2 - - uid: 15702 + - uid: 6977 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-250.5 parent: 2 - - uid: 15703 + - uid: 6978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-249.5 parent: 2 - - uid: 15704 + - uid: 6979 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-248.5 parent: 2 - - uid: 15705 + - uid: 6980 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-247.5 parent: 2 - - uid: 15706 + - uid: 6981 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-246.5 parent: 2 - - uid: 15707 + - uid: 6982 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-245.5 parent: 2 - - uid: 15708 + - uid: 6983 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-244.5 parent: 2 - - uid: 15709 + - uid: 6984 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-243.5 parent: 2 - - uid: 15710 + - uid: 6985 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - - uid: 15711 + - uid: 6986 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-241.5 parent: 2 - - uid: 15712 + - uid: 6987 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - - uid: 15713 + - uid: 6988 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-239.5 parent: 2 - - uid: 15714 + - uid: 6989 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - - uid: 15715 + - uid: 6990 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-237.5 parent: 2 - - uid: 15716 + - uid: 6991 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - - uid: 15717 + - uid: 6992 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-235.5 parent: 2 - - uid: 15718 + - uid: 6993 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - - uid: 15719 + - uid: 6994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - - uid: 15720 + - uid: 6995 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - - uid: 15726 + - uid: 6996 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - - uid: 15727 + - uid: 6997 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-230.5 parent: 2 - - uid: 15728 + - uid: 6998 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - - uid: 15729 + - uid: 6999 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-228.5 parent: 2 - - uid: 15730 + - uid: 7000 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-227.5 parent: 2 - - uid: 15731 + - uid: 7001 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - - uid: 15732 + - uid: 7002 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - - uid: 15733 + - uid: 7003 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - - uid: 15734 + - uid: 7004 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - - uid: 15735 + - uid: 7005 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - - uid: 15736 + - uid: 7006 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-221.5 parent: 2 - - uid: 15737 + - uid: 7007 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-220.5 parent: 2 - - uid: 15739 + - uid: 7008 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 15740 + - uid: 7009 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - - uid: 15741 + - uid: 7010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 15742 + - uid: 7011 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-220.5 parent: 2 - - uid: 17002 + - uid: 7012 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 17007 + - uid: 7013 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-261.5 parent: 2 - - uid: 17008 + - uid: 7014 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - - uid: 17009 + - uid: 7015 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-261.5 parent: 2 - - uid: 17010 + - uid: 7016 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 17011 + - uid: 7017 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 17012 + - uid: 7018 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-261.5 parent: 2 - - uid: 17013 + - uid: 7019 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-261.5 parent: 2 - - uid: 17014 + - uid: 7020 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-261.5 parent: 2 - - uid: 17015 + - uid: 7021 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-261.5 parent: 2 - - uid: 17016 + - uid: 7022 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-261.5 parent: 2 - - uid: 17017 + - uid: 7023 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-261.5 parent: 2 - - uid: 17019 + - uid: 7024 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-259.5 parent: 2 - - uid: 17020 + - uid: 7025 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 17021 + - uid: 7026 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 17022 + - uid: 7027 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-259.5 parent: 2 - - uid: 17023 + - uid: 7028 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-259.5 parent: 2 - - uid: 17024 + - uid: 7029 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-259.5 parent: 2 - - uid: 17025 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 17026 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 17027 + - uid: 7032 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-259.5 parent: 2 - - uid: 17028 + - uid: 7033 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - - uid: 17029 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - - uid: 17030 + - uid: 7035 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - - uid: 17031 + - uid: 7036 components: - type: Transform rot: 1.5707963267948966 rad @@ -45182,7 +44847,7 @@ entities: parent: 2 - proto: DisposalRouter entities: - - uid: 6797 + - uid: 7037 components: - type: Transform rot: 3.141592653589793 rad @@ -45191,7 +44856,7 @@ entities: - type: DisposalRouter tags: - Engineering - - uid: 9846 + - uid: 7038 components: - type: Transform pos: -0.5,-261.5 @@ -45199,7 +44864,7 @@ entities: - type: DisposalRouter tags: - Atmos - - uid: 13503 + - uid: 7039 components: - type: Transform rot: 3.141592653589793 rad @@ -45208,7 +44873,7 @@ entities: - type: DisposalRouter tags: - Bridge - - uid: 13636 + - uid: 7040 components: - type: Transform rot: 3.141592653589793 rad @@ -45217,7 +44882,7 @@ entities: - type: DisposalRouter tags: - Kitchen - - uid: 13685 + - uid: 7041 components: - type: Transform rot: 3.141592653589793 rad @@ -45226,7 +44891,7 @@ entities: - type: DisposalRouter tags: - HoP Office - - uid: 13759 + - uid: 7042 components: - type: Transform pos: -0.5,-140.5 @@ -45234,13 +44899,13 @@ entities: - type: DisposalRouter tags: - Library - - uid: 13764 + - uid: 7043 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-149.5 parent: 2 - - uid: 13842 + - uid: 7044 components: - type: Transform rot: 3.141592653589793 rad @@ -45249,7 +44914,7 @@ entities: - type: DisposalRouter tags: - Medical - - uid: 14033 + - uid: 7045 components: - type: Transform pos: -0.5,-285.5 @@ -45257,7 +44922,7 @@ entities: - type: DisposalRouter tags: - Salvage - - uid: 14139 + - uid: 7046 components: - type: Transform pos: -0.5,-303.5 @@ -45265,7 +44930,7 @@ entities: - type: DisposalRouter tags: - Science - - uid: 14210 + - uid: 7047 components: - type: Transform pos: -0.5,-339.5 @@ -45275,7 +44940,7 @@ entities: - Brig - proto: DisposalRouterFlipped entities: - - uid: 13591 + - uid: 7048 components: - type: Transform rot: 3.141592653589793 rad @@ -45284,7 +44949,7 @@ entities: - type: DisposalRouter tags: - Bar - - uid: 14090 + - uid: 7049 components: - type: Transform rot: 3.141592653589793 rad @@ -45295,387 +44960,387 @@ entities: - Cargo - proto: DisposalTrunk entities: - - uid: 2378 + - uid: 7050 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-180.5 parent: 2 - - uid: 5417 + - uid: 7051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 2 - - uid: 6714 + - uid: 7052 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-342.5 parent: 2 - - uid: 7831 + - uid: 7053 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 8225 + - uid: 7054 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8769 + - uid: 7055 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-137.5 parent: 2 - - uid: 8921 + - uid: 7056 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-308.5 parent: 2 - - uid: 11928 + - uid: 7057 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 13219 + - uid: 7058 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 - - uid: 13378 + - uid: 7059 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-190.5 parent: 2 - - uid: 13637 + - uid: 7060 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-91.5 parent: 2 - - uid: 13686 + - uid: 7061 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-119.5 parent: 2 - - uid: 13779 + - uid: 7062 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 13785 + - uid: 7063 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 13837 + - uid: 7064 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-176.5 parent: 2 - - uid: 14106 + - uid: 7065 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-288.5 parent: 2 - - uid: 14142 + - uid: 7066 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-303.5 parent: 2 - - uid: 14568 + - uid: 7067 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 15307 + - uid: 7068 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 - - uid: 15335 + - uid: 7069 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 2 - - uid: 15362 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 2 - - uid: 15364 + - uid: 7071 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 - - uid: 15365 + - uid: 7072 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 15400 + - uid: 7073 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15419 + - uid: 7074 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-97.5 parent: 2 - - uid: 15430 + - uid: 7075 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-108.5 parent: 2 - - uid: 15451 + - uid: 7076 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-126.5 parent: 2 - - uid: 15480 + - uid: 7077 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-150.5 parent: 2 - - uid: 15495 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-162.5 parent: 2 - - uid: 15530 + - uid: 7079 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-189.5 parent: 2 - - uid: 15551 + - uid: 7080 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-207.5 parent: 2 - - uid: 15564 + - uid: 7081 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-356.5 parent: 2 - - uid: 15609 + - uid: 7082 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-316.5 parent: 2 - - uid: 15630 + - uid: 7083 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - - uid: 15655 + - uid: 7084 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - - uid: 15680 + - uid: 7085 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 15697 + - uid: 7086 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-255.5 parent: 2 - - uid: 15743 + - uid: 7087 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-221.5 parent: 2 - - uid: 15800 + - uid: 7088 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 17034 + - uid: 7089 components: - type: Transform pos: -13.5,-258.5 parent: 2 - proto: DisposalUnit entities: - - uid: 197 + - uid: 7090 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 837 + - uid: 7091 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 1421 + - uid: 7092 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 1563 + - uid: 7093 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 1724 + - uid: 7094 components: - type: Transform pos: -2.5,-55.5 parent: 2 - - uid: 2374 + - uid: 7095 components: - type: Transform pos: 3.5,-180.5 parent: 2 - - uid: 2377 + - uid: 7096 components: - type: Transform pos: 1.5,-270.5 parent: 2 - - uid: 4199 + - uid: 7097 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 6759 + - uid: 7098 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 7759 + - uid: 7099 components: - type: Transform pos: -2.5,-126.5 parent: 2 - - uid: 7801 + - uid: 7100 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 7906 + - uid: 7101 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8380 + - uid: 7102 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 9050 + - uid: 7103 components: - type: Transform pos: 3.5,-207.5 parent: 2 - - uid: 11006 + - uid: 7104 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 15333 + - uid: 7105 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 15334 + - uid: 7106 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 15395 + - uid: 7107 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 15396 + - uid: 7108 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 15431 + - uid: 7109 components: - type: Transform pos: 1.5,-108.5 parent: 2 - - uid: 15463 + - uid: 7110 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 15493 + - uid: 7111 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 15529 + - uid: 7112 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 15563 + - uid: 7113 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15607 + - uid: 7114 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 15608 + - uid: 7115 components: - type: Transform pos: 10.5,-308.5 parent: 2 - - uid: 15652 + - uid: 7116 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 15691 + - uid: 7117 components: - type: Transform pos: 1.5,-255.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 15738 + - uid: 7118 components: - type: Transform rot: 1.5707963267948966 rad @@ -45683,81 +45348,81 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 1804 + - uid: 7119 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 2235 + - uid: 7120 components: - type: Transform pos: 1.5,-117.5 parent: 2 - - uid: 2720 + - uid: 7121 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 3034 + - uid: 7122 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 11968 + - uid: 7123 components: - type: Transform pos: -0.5,-363.5 parent: 2 - - uid: 12153 + - uid: 7124 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 12156 + - uid: 7125 components: - type: Transform pos: -2.5,-305.5 parent: 2 - - uid: 12636 + - uid: 7126 components: - type: Transform pos: -8.5,-304.5 parent: 2 - - uid: 13397 + - uid: 7127 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 5404 + - uid: 7128 components: - type: Transform pos: 7.5,-200.5 parent: 2 - - uid: 8553 + - uid: 7129 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8558 + - uid: 7130 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 13399 + - uid: 7131 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14564 + - uid: 7132 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14601 + - uid: 7133 components: - type: Transform rot: 3.141592653589793 rad @@ -45765,140 +45430,140 @@ entities: parent: 2 - proto: DresserCaptainFilled entities: - - uid: 298 + - uid: 7134 components: - type: Transform pos: -0.5,-13.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 8443 + - uid: 7135 components: - type: Transform pos: 10.5,-254.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 3775 + - uid: 7136 components: - type: Transform pos: -0.5,-201.5 parent: 2 - proto: DresserFilled entities: - - uid: 923 + - uid: 7137 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2368 + - uid: 7138 components: - type: Transform pos: -2.5,-138.5 parent: 2 - - uid: 2724 + - uid: 7139 components: - type: Transform pos: -5.5,-136.5 parent: 2 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 2231 + - uid: 7140 components: - type: Transform pos: -1.5,-116.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 11097 + - uid: 7141 components: - type: Transform pos: -3.5,-344.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 9011 + - uid: 7142 components: - type: Transform pos: 4.5,-284.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 8459 + - uid: 7143 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DresserWardenFilled entities: - - uid: 11385 + - uid: 7144 components: - type: Transform pos: 1.5,-368.5 parent: 2 - proto: DrinkAleBottleFull entities: - - uid: 3036 + - uid: 7145 components: - type: Transform pos: -0.47690427,-60.402824 parent: 2 - - uid: 3038 + - uid: 7146 components: - type: Transform pos: -0.25679237,-60.35632 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 7891 + - uid: 7147 components: - type: Transform pos: 8.708858,-254.22014 parent: 2 - - uid: 8458 + - uid: 7148 components: - type: Transform pos: 8.616409,-254.0617 parent: 2 - proto: DrinkBeerGrowler entities: - - uid: 4800 + - uid: 7149 components: - type: Transform pos: 5.307968,-252.56429 parent: 2 - - uid: 6637 + - uid: 7150 components: - type: Transform pos: 5.6909623,-253.30362 parent: 2 - - uid: 8559 + - uid: 7151 components: - type: Transform pos: -3.847699,-286.55716 parent: 2 - - uid: 8560 + - uid: 7152 components: - type: Transform pos: -3.7202213,-286.6471 parent: 2 - proto: DrinkBlueCuracaoBottleFull entities: - - uid: 10993 + - uid: 7153 components: - type: Transform pos: -1.2898192,-65.33336 parent: 2 - proto: DrinkBottleOfNothingFull entities: - - uid: 2032 + - uid: 7154 components: - type: Transform pos: -8.723203,-122.26877 parent: 2 - proto: DrinkBottleVodka entities: - - uid: 4190 + - uid: 7155 components: - type: Transform rot: 1.5707963267948966 rad @@ -45906,587 +45571,587 @@ entities: parent: 2 - proto: DrinkBottleWhiskey entities: - - uid: 14924 + - uid: 7156 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.600952,-147.04173 parent: 2 - - uid: 14925 + - uid: 7157 components: - type: Transform pos: -6.690937,-147.61519 parent: 2 - - uid: 14927 + - uid: 7158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.4547286,-144.36557 parent: 2 - - uid: 14928 + - uid: 7159 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4097366,-145.63618 parent: 2 - - uid: 14929 + - uid: 7160 components: - type: Transform pos: -6.679689,-145.77112 parent: 2 - proto: DrinkFlask entities: - - uid: 317 + - uid: 7161 components: - type: Transform pos: -0.34037054,-11.441932 parent: 2 - proto: DrinkGlass entities: - - uid: 4172 + - uid: 7162 components: - type: Transform pos: -1.003649,-60.552048 parent: 2 - - uid: 4173 + - uid: 7163 components: - type: Transform pos: -1.5407214,-60.51684 parent: 2 - - uid: 10802 + - uid: 7164 components: - type: Transform pos: -2.020939,-65.49077 parent: 2 - - uid: 10826 + - uid: 7165 components: - type: Transform pos: -1.6722503,-65.53575 parent: 2 - - uid: 10995 + - uid: 7166 components: - type: Transform pos: -1.7622352,-65.288376 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 3749 + - uid: 7167 components: - type: Transform pos: -1.7968009,-1.2700026 parent: 2 - proto: DrinkGreenTeaGlass entities: - - uid: 12388 + - uid: 7168 components: - type: Transform pos: -4.4292135,-316.6871 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 9521 + - uid: 7169 components: - type: Transform pos: 22.915377,-317.35895 parent: 2 - proto: DrinkIceCreamGlass entities: - - uid: 2989 + - uid: 7170 components: - type: Transform pos: 3.657866,-72.56517 parent: 2 - - uid: 14371 + - uid: 7171 components: - type: Transform pos: 14.69894,-63.384167 parent: 2 - - uid: 14381 + - uid: 7172 components: - type: Transform pos: 14.407273,-63.384167 parent: 2 - proto: DrinkIcedTeaGlass entities: - - uid: 12387 + - uid: 7173 components: - type: Transform pos: -4.534867,-316.51547 parent: 2 - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14460 + - uid: 7174 components: - type: Transform pos: 17.602736,-78.352585 parent: 2 - proto: DrinkMopwataBottleRandom entities: - - uid: 1747 + - uid: 7175 components: - type: Transform pos: -5.7352834,-54.166782 parent: 2 - proto: DrinkMugDog entities: - - uid: 2234 + - uid: 7176 components: - type: Transform pos: 1.1724037,-117.232086 parent: 2 - - uid: 12838 + - uid: 7177 components: - type: Transform pos: -0.32982033,-365.28162 parent: 2 - proto: DrinkMugMetal entities: - - uid: 199 + - uid: 7178 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.952591,-12.591546 parent: 2 - - uid: 302 + - uid: 7179 components: - type: Transform pos: 5.957412,-12.479102 parent: 2 - - uid: 303 + - uid: 7180 components: - type: Transform pos: 5.8674273,-12.22423 parent: 2 - - uid: 304 + - uid: 7181 components: - type: Transform pos: 5.6124735,-12.531576 parent: 2 - proto: DrinkNothing entities: - - uid: 2033 + - uid: 7182 components: - type: Transform pos: -8.335806,-122.47121 parent: 2 - proto: DrinkShotGlass entities: - - uid: 442 + - uid: 7183 components: - type: Transform pos: -6.5079026,-63.4827 parent: 2 - - uid: 4192 + - uid: 7184 components: - type: Transform pos: -5.5391526,-63.4202 parent: 2 - - uid: 4193 + - uid: 7185 components: - type: Transform pos: -5.3672776,-62.342075 parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 2787 + - uid: 7186 components: - type: Transform pos: 7.572414,-197.48143 parent: 2 - - uid: 7556 + - uid: 7187 components: - type: Transform pos: 7.766112,-197.4022 parent: 2 - proto: DrinkTeaJug entities: - - uid: 2213 + - uid: 7188 components: - type: Transform pos: -1.5308492,-120.70999 parent: 2 - - uid: 2270 + - uid: 7189 components: - type: Transform pos: -1.355068,-120.780304 parent: 2 - proto: DrinkTeapot entities: - - uid: 2267 + - uid: 7190 components: - type: Transform pos: -1.5341585,-120.30812 parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 1486 + - uid: 7191 components: - type: Transform pos: 7.686127,-56.08689 parent: 2 - - uid: 4189 + - uid: 7192 components: - type: Transform pos: -6.1016526,-62.51395 parent: 2 - - uid: 11208 + - uid: 7193 components: - type: Transform pos: -3.0426478,-346.08514 parent: 2 - proto: DrinkVodkaGlass entities: - - uid: 11209 + - uid: 7194 components: - type: Transform pos: -3.2451503,-346.4724 parent: 2 - proto: DrinkWhiskeyBottleFull entities: - - uid: 14566 + - uid: 7195 components: - type: Transform pos: 14.124506,-63.392555 parent: 2 - - uid: 14919 + - uid: 7196 components: - type: Transform pos: -6.274761,-147.46901 parent: 2 - - uid: 14926 + - uid: 7197 components: - type: Transform pos: -6.2410164,-148.00874 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 64 + - uid: 7198 components: - type: Transform pos: 5.8253236,-7.014749 parent: 2 - - uid: 221 + - uid: 7199 components: - type: Transform pos: 5.4743247,-6.6932936 parent: 2 - proto: DrinkWineGlass entities: - - uid: 220 + - uid: 7200 components: - type: Transform pos: 4.979412,-6.412184 parent: 2 - - uid: 222 + - uid: 7201 components: - type: Transform pos: 4.0908213,-7.3229785 parent: 2 - proto: EggSpider entities: - - uid: 14780 + - uid: 7202 components: - type: Transform pos: 3.6699882,-35.680645 parent: 2 - proto: EmergencyLight entities: - - uid: 6795 + - uid: 7203 components: - type: Transform pos: 1.5,-216.5 parent: 2 - - uid: 7315 + - uid: 7204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 7815 + - uid: 7205 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 8975 + - uid: 7206 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 10705 + - uid: 7207 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-69.5 parent: 2 - - uid: 15207 + - uid: 7208 components: - type: Transform pos: 1.5,-237.5 parent: 2 - - uid: 15208 + - uid: 7209 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 15209 + - uid: 7210 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 2 - - uid: 15210 + - uid: 7211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 15211 + - uid: 7212 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 15212 + - uid: 7213 components: - type: Transform pos: -1.5,-27.5 parent: 2 - - uid: 15213 + - uid: 7214 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 - - uid: 15214 + - uid: 7215 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 15215 + - uid: 7216 components: - type: Transform pos: -1.5,-57.5 parent: 2 - - uid: 15217 + - uid: 7217 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 15218 + - uid: 7218 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15219 + - uid: 7219 components: - type: Transform pos: 1.5,-102.5 parent: 2 - - uid: 15220 + - uid: 7220 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-92.5 parent: 2 - - uid: 15221 + - uid: 7221 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-114.5 parent: 2 - - uid: 15222 + - uid: 7222 components: - type: Transform pos: 2.5,-123.5 parent: 2 - - uid: 15223 + - uid: 7223 components: - type: Transform pos: 1.5,-129.5 parent: 2 - - uid: 15224 + - uid: 7224 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-142.5 parent: 2 - - uid: 15225 + - uid: 7225 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - - uid: 15227 + - uid: 7226 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - - uid: 15228 + - uid: 7227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-177.5 parent: 2 - - uid: 15229 + - uid: 7228 components: - type: Transform pos: 1.5,-183.5 parent: 2 - - uid: 15230 + - uid: 7229 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-192.5 parent: 2 - - uid: 15231 + - uid: 7230 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-203.5 parent: 2 - - uid: 15232 + - uid: 7231 components: - type: Transform pos: 1.5,-210.5 parent: 2 - - uid: 15236 + - uid: 7232 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 15237 + - uid: 7233 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-253.5 parent: 2 - - uid: 15238 + - uid: 7234 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-250.5 parent: 2 - - uid: 15239 + - uid: 7235 components: - type: Transform pos: 1.5,-264.5 parent: 2 - - uid: 15240 + - uid: 7236 components: - type: Transform pos: 1.5,-291.5 parent: 2 - - uid: 15241 + - uid: 7237 components: - type: Transform pos: 6.5,-276.5 parent: 2 - - uid: 15243 + - uid: 7238 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-283.5 parent: 2 - - uid: 15244 + - uid: 7239 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-275.5 parent: 2 - - uid: 15245 + - uid: 7240 components: - type: Transform pos: 10.5,-306.5 parent: 2 - - uid: 15246 + - uid: 7241 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-318.5 parent: 2 - - uid: 15247 + - uid: 7242 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-298.5 parent: 2 - - uid: 15248 + - uid: 7243 components: - type: Transform pos: -2.5,-307.5 parent: 2 - - uid: 15249 + - uid: 7244 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 15250 + - uid: 7245 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 15251 + - uid: 7246 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-342.5 parent: 2 - - uid: 15252 + - uid: 7247 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15253 + - uid: 7248 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-366.5 parent: 2 - - uid: 15254 + - uid: 7249 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-366.5 parent: 2 - - uid: 15255 + - uid: 7250 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 15256 + - uid: 7251 components: - type: Transform pos: 2.5,-370.5 parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - - uid: 5497 + - uid: 7252 components: - type: Transform pos: -4.5664425,-165.51636 parent: 2 - proto: Emitter entities: - - uid: 4991 + - uid: 7253 components: - type: Transform pos: 23.5,-253.5 parent: 2 - - uid: 6653 + - uid: 7254 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-255.5 parent: 2 - - uid: 8797 + - uid: 7255 components: - type: Transform pos: 31.5,-253.5 parent: 2 - - uid: 13034 + - uid: 7256 components: - type: Transform rot: 3.141592653589793 rad @@ -46494,288 +46159,288 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 1344 + - uid: 7258 components: - type: Transform - parent: 1343 + parent: 7257 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 3583 + - uid: 7260 components: - type: Transform - parent: 3149 + parent: 7259 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 1341 + - uid: 7262 components: - type: Transform - parent: 1333 + parent: 7261 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 2910 + - uid: 7264 components: - type: Transform - parent: 1345 + parent: 7263 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 3033 + - uid: 7266 components: - type: Transform - parent: 3023 + parent: 7265 - type: Physics canCollide: False - proto: EncryptionKeyMedicalScience entities: - - uid: 9693 + - uid: 7267 components: - type: Transform pos: 21.672514,-299.37094 parent: 2 - proto: EncryptionKeyRobo entities: - - uid: 9691 + - uid: 7268 components: - type: Transform pos: 21.332075,-299.4883 parent: 2 - proto: EncryptionKeyScience entities: - - uid: 2912 + - uid: 7270 components: - type: Transform - parent: 2911 + parent: 7269 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 3071 + - uid: 7272 components: - type: Transform - parent: 3054 + parent: 7271 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 1285 + - uid: 7274 components: - type: Transform - parent: 1192 + parent: 7273 - type: Physics canCollide: False - proto: ExosuitFabricator entities: - - uid: 9968 + - uid: 7275 components: - type: Transform pos: 7.5,-311.5 parent: 2 - proto: ExtendedEmergencyNitrogenTankFilled entities: - - uid: 558 + - uid: 7276 components: - type: Transform pos: -6.4656725,-2.5658867 parent: 2 - - uid: 14754 + - uid: 7277 components: - type: Transform pos: -3.619395,-18.40879 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 53 + - uid: 7278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 2 - - uid: 918 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - - uid: 2703 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-80.5 parent: 2 - - uid: 2868 + - uid: 7281 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - - uid: 2869 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-140.5 parent: 2 - - uid: 2870 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 - - uid: 2871 + - uid: 7284 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 2 - - uid: 2890 + - uid: 7285 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-117.5 parent: 2 - - uid: 2891 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - - uid: 4004 + - uid: 7287 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 4177 + - uid: 7288 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 5468 + - uid: 7289 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 8598 + - uid: 7290 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 8911 + - uid: 7291 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 8977 + - uid: 7292 components: - type: Transform pos: -1.5,-319.5 parent: 2 - - uid: 8978 + - uid: 7293 components: - type: Transform pos: -6.5,-281.5 parent: 2 - - uid: 9397 + - uid: 7294 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 12187 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 12250 + - uid: 7296 components: - type: Transform pos: -4.5,-276.5 parent: 2 - - uid: 12320 + - uid: 7297 components: - type: Transform pos: 3.5,-356.5 parent: 2 - - uid: 12334 + - uid: 7298 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 12335 + - uid: 7299 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 12336 + - uid: 7300 components: - type: Transform pos: -0.5,-171.5 parent: 2 - proto: FaxMachineBase entities: - - uid: 60 + - uid: 7301 components: - type: Transform pos: -0.5,2.5 parent: 2 - type: FaxMachine name: Bridge - - uid: 2697 + - uid: 7302 components: - type: Transform pos: -5.5,-141.5 parent: 2 - type: FaxMachine name: Library - - uid: 7202 + - uid: 7303 components: - type: Transform pos: 1.5,-201.5 parent: 2 - type: FaxMachine name: CMO Office - - uid: 8691 + - uid: 7304 components: - type: Transform pos: 10.5,-254.5 parent: 2 - type: FaxMachine name: Chief Engineer - - uid: 9164 + - uid: 7305 components: - type: Transform pos: 4.5,-284.5 parent: 2 - type: FaxMachine name: Quartermaster - - uid: 9209 + - uid: 7306 components: - type: Transform pos: -1.5,-116.5 parent: 2 - type: FaxMachine name: Head of Personnel - - uid: 10166 + - uid: 7307 components: - type: Transform pos: -9.5,-303.5 parent: 2 - type: FaxMachine name: Research Director - - uid: 11094 + - uid: 7308 components: - type: Transform pos: 6.5,-331.5 parent: 2 - type: FaxMachine name: Lawyer - - uid: 11141 + - uid: 7309 components: - type: Transform pos: -2.5,-346.5 @@ -46784,26 +46449,26 @@ entities: name: Head of Security - proto: FaxMachineCaptain entities: - - uid: 300 + - uid: 7310 components: - type: Transform pos: -1.5,-13.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 3894 + - uid: 7311 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 12869 + - uid: 7312 components: - type: Transform pos: 1.5,-364.5 parent: 2 - proto: FireAxeCabinetFilled entities: - - uid: 107 + - uid: 7313 components: - type: Transform rot: 3.141592653589793 rad @@ -46811,25 +46476,25 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 17000 + - uid: 7314 components: - type: Transform pos: -3.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 + - 67 - proto: FirelockEdge entities: - - uid: 610 + - uid: 7315 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 637 + - 15 + - uid: 7316 components: - type: Transform rot: 3.141592653589793 rad @@ -46837,8 +46502,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 638 + - 14 + - uid: 7317 components: - type: Transform rot: 3.141592653589793 rad @@ -46846,16 +46511,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 639 + - 14 + - uid: 7318 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 1725 + - 15 + - uid: 7319 components: - type: Transform rot: 1.5707963267948966 rad @@ -46863,8 +46528,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1726 + - 23 + - uid: 7320 components: - type: Transform rot: -1.5707963267948966 rad @@ -46872,44 +46537,44 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 8242 + - 24 + - uid: 7321 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-150.5 parent: 2 - - uid: 8255 + - uid: 7322 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-162.5 parent: 2 - - uid: 8256 + - uid: 7323 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-162.5 parent: 2 - - uid: 8353 + - uid: 7324 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-150.5 parent: 2 - - uid: 8354 + - uid: 7325 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-141.5 parent: 2 - - uid: 8355 + - uid: 7326 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 9085 + - uid: 7327 components: - type: Transform rot: -1.5707963267948966 rad @@ -46917,9 +46582,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 9425 + - 67 + - 69 + - uid: 7328 components: - type: Transform rot: -1.5707963267948966 rad @@ -46927,8 +46592,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 9426 + - 61 + - uid: 7329 components: - type: Transform rot: -1.5707963267948966 rad @@ -46936,8 +46601,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 10870 + - 61 + - uid: 7330 components: - type: Transform rot: -1.5707963267948966 rad @@ -46945,8 +46610,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 12324 + - 61 + - uid: 7331 components: - type: Transform rot: -1.5707963267948966 rad @@ -46954,9 +46619,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 13111 + - 67 + - 69 + - uid: 7332 components: - type: Transform rot: -1.5707963267948966 rad @@ -46964,9 +46629,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13112 + - 16 + - 18 + - uid: 7333 components: - type: Transform rot: -1.5707963267948966 rad @@ -46974,9 +46639,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13113 + - 16 + - 18 + - uid: 7334 components: - type: Transform rot: -1.5707963267948966 rad @@ -46984,9 +46649,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13114 + - 16 + - 18 + - uid: 7335 components: - type: Transform rot: -1.5707963267948966 rad @@ -46994,9 +46659,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13127 + - 16 + - 18 + - uid: 7336 components: - type: Transform rot: 1.5707963267948966 rad @@ -47004,9 +46669,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13128 + - 20 + - 23 + - uid: 7337 components: - type: Transform rot: 1.5707963267948966 rad @@ -47014,9 +46679,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13129 + - 20 + - 23 + - uid: 7338 components: - type: Transform rot: 1.5707963267948966 rad @@ -47024,9 +46689,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13155 + - 20 + - 23 + - uid: 7339 components: - type: Transform rot: 1.5707963267948966 rad @@ -47034,8 +46699,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13156 + - 26 + - uid: 7340 components: - type: Transform rot: 1.5707963267948966 rad @@ -47043,8 +46708,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13157 + - 26 + - uid: 7341 components: - type: Transform rot: 1.5707963267948966 rad @@ -47052,8 +46717,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13192 + - 26 + - uid: 7342 components: - type: Transform rot: -1.5707963267948966 rad @@ -47061,9 +46726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13193 + - 38 + - 41 + - uid: 7343 components: - type: Transform rot: -1.5707963267948966 rad @@ -47071,9 +46736,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13194 + - 38 + - 41 + - uid: 7344 components: - type: Transform rot: -1.5707963267948966 rad @@ -47081,27 +46746,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13201 + - 38 + - 41 + - uid: 7345 components: - type: Transform pos: 5.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13202 + - 7 + - 41 + - uid: 7346 components: - type: Transform pos: 4.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13311 + - 7 + - 41 + - uid: 7347 components: - type: Transform rot: -1.5707963267948966 rad @@ -47109,9 +46774,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13312 + - 50 + - 51 + - uid: 7348 components: - type: Transform rot: -1.5707963267948966 rad @@ -47119,9 +46784,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13355 + - 50 + - 51 + - uid: 7349 components: - type: Transform rot: 1.5707963267948966 rad @@ -47129,9 +46794,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13356 + - 55 + - 59 + - uid: 7350 components: - type: Transform rot: 1.5707963267948966 rad @@ -47139,9 +46804,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13357 + - 55 + - 59 + - uid: 7351 components: - type: Transform rot: 1.5707963267948966 rad @@ -47149,9 +46814,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 15285 + - 55 + - 59 + - uid: 7352 components: - type: Transform rot: -1.5707963267948966 rad @@ -47159,8 +46824,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15286 + - 70 + - uid: 7353 components: - type: Transform rot: -1.5707963267948966 rad @@ -47168,8 +46833,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15287 + - 70 + - uid: 7354 components: - type: Transform rot: -1.5707963267948966 rad @@ -47177,8 +46842,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 16682 + - 70 + - uid: 7355 components: - type: Transform rot: 1.5707963267948966 rad @@ -47186,15 +46851,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - proto: FirelockGlass entities: - - uid: 113 + - uid: 7356 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 146 + - uid: 7357 components: - type: Transform rot: 3.141592653589793 rad @@ -47202,9 +46867,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 13105 - - uid: 387 + - 12 + - 13 + - uid: 7358 components: - type: Transform rot: 3.141592653589793 rad @@ -47212,14 +46877,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 389 + - 12 + - uid: 7359 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 2 - - uid: 390 + - uid: 7360 components: - type: Transform rot: 3.141592653589793 rad @@ -47227,8 +46892,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 391 + - 12 + - uid: 7361 components: - type: Transform rot: 3.141592653589793 rad @@ -47236,15 +46901,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 12935 - - uid: 392 + - 12 + - 11 + - uid: 7362 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - - uid: 393 + - uid: 7363 components: - type: Transform rot: 3.141592653589793 rad @@ -47252,8 +46917,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 396 + - 11 + - uid: 7364 components: - type: Transform rot: 3.141592653589793 rad @@ -47261,51 +46926,51 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 621 + - 13 + - uid: 7365 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-40.5 parent: 2 - - uid: 623 + - uid: 7366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-35.5 parent: 2 - - uid: 707 + - uid: 7367 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-34.5 parent: 2 - - uid: 1372 + - uid: 7368 components: - type: Transform pos: -4.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13124 - - uid: 1408 + - 16 + - 19 + - uid: 7369 components: - type: Transform pos: 3.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1427 + - 16 + - uid: 7370 components: - type: Transform pos: 3.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1429 + - 16 + - uid: 7371 components: - type: Transform rot: -1.5707963267948966 rad @@ -47313,16 +46978,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1431 + - 18 + - uid: 7372 components: - type: Transform pos: 5.5,-63.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1498 + - 18 + - uid: 7373 components: - type: Transform rot: 3.141592653589793 rad @@ -47330,8 +46995,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 1544 + - 38 + - uid: 7374 components: - type: Transform rot: -1.5707963267948966 rad @@ -47339,8 +47004,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 1701 + - 22 + - uid: 7375 components: - type: Transform rot: -1.5707963267948966 rad @@ -47348,9 +47013,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - 13150 - - uid: 1702 + - 21 + - 23 + - uid: 7376 components: - type: Transform rot: -1.5707963267948966 rad @@ -47358,14 +47023,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 1705 + - 21 + - uid: 7377 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-85.5 parent: 2 - - uid: 1715 + - uid: 7378 components: - type: Transform rot: 1.5707963267948966 rad @@ -47373,8 +47038,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1723 + - 23 + - uid: 7379 components: - type: Transform rot: 1.5707963267948966 rad @@ -47382,8 +47047,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 2256 + - 24 + - uid: 7380 components: - type: Transform rot: 3.141592653589793 rad @@ -47391,8 +47056,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2405 + - 29 + - uid: 7381 components: - type: Transform rot: 3.141592653589793 rad @@ -47400,8 +47065,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2406 + - 29 + - uid: 7382 components: - type: Transform rot: 3.141592653589793 rad @@ -47409,8 +47074,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2407 + - 29 + - uid: 7383 components: - type: Transform rot: 3.141592653589793 rad @@ -47418,8 +47083,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2408 + - 26 + - uid: 7384 components: - type: Transform rot: 3.141592653589793 rad @@ -47427,8 +47092,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2409 + - 26 + - uid: 7385 components: - type: Transform rot: 3.141592653589793 rad @@ -47436,8 +47101,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2410 + - 26 + - uid: 7386 components: - type: Transform rot: 3.141592653589793 rad @@ -47445,9 +47110,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 2411 + - 27 + - 29 + - uid: 7387 components: - type: Transform rot: 3.141592653589793 rad @@ -47455,8 +47120,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2412 + - 30 + - uid: 7388 components: - type: Transform rot: 3.141592653589793 rad @@ -47464,217 +47129,217 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2826 + - 30 + - uid: 7389 components: - type: Transform pos: -1.5,-151.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13189 - - uid: 2827 + - 32 + - 37 + - uid: 7390 components: - type: Transform pos: 2.5,-152.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 2828 + - 32 + - uid: 7391 components: - type: Transform pos: 5.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2829 + - 32 + - 33 + - uid: 7392 components: - type: Transform pos: 4.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2830 + - 32 + - 33 + - uid: 7393 components: - type: Transform pos: 3.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2831 + - 32 + - 33 + - uid: 7394 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - 13182 - - uid: 2832 + - 33 + - 34 + - uid: 7395 components: - type: Transform pos: 7.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 2833 + - 34 + - uid: 7396 components: - type: Transform pos: 2.5,-135.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - uid: 2834 + - 31 + - uid: 7397 components: - type: Transform pos: -1.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2835 + - 31 + - 35 + - uid: 7398 components: - type: Transform pos: -1.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2836 + - 31 + - 35 + - uid: 7399 components: - type: Transform pos: -1.5,-141.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2837 + - 31 + - 35 + - uid: 7400 components: - type: Transform pos: -4.5,-137.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - 13187 - - uid: 4359 + - 35 + - 36 + - uid: 7401 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 5128 + - uid: 7402 components: - type: Transform pos: 4.5,-197.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5129 + - 43 + - 46 + - uid: 7403 components: - type: Transform pos: 4.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5130 + - 43 + - 46 + - uid: 7404 components: - type: Transform pos: -1.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13251 - - uid: 5131 + - 46 + - 48 + - uid: 7405 components: - type: Transform pos: -2.5,-199.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - 13252 - - uid: 5133 + - 48 + - 49 + - uid: 7406 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 5134 + - uid: 7407 components: - type: Transform pos: 0.5,-191.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 13249 - - uid: 5135 + - 44 + - 47 + - uid: 7408 components: - type: Transform pos: 2.5,-195.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13249 - - uid: 6726 + - 46 + - 47 + - uid: 7409 components: - type: Transform pos: 2.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 6855 + - 70 + - uid: 7410 components: - type: Transform pos: 18.5,-244.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6856 + - 71 + - uid: 7411 components: - type: Transform pos: 14.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6857 + - 71 + - uid: 7412 components: - type: Transform pos: 9.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 6858 + - 69 + - uid: 7413 components: - type: Transform pos: 9.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 7798 + - 69 + - uid: 7414 components: - type: Transform rot: -1.5707963267948966 rad @@ -47682,8 +47347,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7799 + - 8 + - uid: 7415 components: - type: Transform rot: -1.5707963267948966 rad @@ -47691,8 +47356,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7800 + - 8 + - 57 + - uid: 7416 components: - type: Transform rot: -1.5707963267948966 rad @@ -47700,24 +47366,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7820 + - 8 + - 57 + - uid: 7417 components: - type: Transform pos: -1.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 7821 + - 70 + - uid: 7418 components: - type: Transform pos: 14.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 7879 + - 71 + - uid: 7419 components: - type: Transform rot: 3.141592653589793 rad @@ -47725,9 +47392,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 7885 + - 67 + - 68 + - uid: 7420 components: - type: Transform rot: 3.141592653589793 rad @@ -47735,35 +47402,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - 15280 - - uid: 8009 + - 68 + - 69 + - uid: 7421 components: - type: Transform pos: -1.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 8012 + - 67 + - uid: 7422 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 8037 + - 67 + - 70 + - uid: 7423 components: - type: Transform pos: 2.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - 15282 - - uid: 8213 + - 69 + - 70 + - uid: 7424 components: - type: Transform rot: 3.141592653589793 rad @@ -47771,9 +47438,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8483 + - 67 + - 68 + - uid: 7425 components: - type: Transform rot: 3.141592653589793 rad @@ -47781,27 +47448,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8852 + - 67 + - 68 + - uid: 7426 components: - type: Transform pos: -0.5,-189.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 9827 + - 44 + - 66 + - uid: 7427 components: - type: Transform pos: -0.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 10538 + - 44 + - 66 + - uid: 7428 components: - type: Transform rot: 3.141592653589793 rad @@ -47809,8 +47476,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 10757 + - 54 + - uid: 7429 components: - type: Transform rot: -1.5707963267948966 rad @@ -47818,9 +47485,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - 13115 - - uid: 12306 + - 17 + - 16 + - uid: 7430 components: - type: Transform rot: -1.5707963267948966 rad @@ -47828,8 +47495,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 5925 - - uid: 12954 + - 6 + - uid: 7431 components: - type: Transform rot: 1.5707963267948966 rad @@ -47837,18 +47504,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13108 + - 20 + - 21 + - uid: 7432 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 13132 + - 67 + - 70 + - uid: 7433 components: - type: Transform rot: 1.5707963267948966 rad @@ -47856,9 +47523,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13133 + - 20 + - 21 + - uid: 7434 components: - type: Transform rot: 1.5707963267948966 rad @@ -47866,9 +47533,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13134 + - 20 + - 21 + - uid: 7435 components: - type: Transform rot: 1.5707963267948966 rad @@ -47876,9 +47543,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13135 + - 20 + - 22 + - uid: 7436 components: - type: Transform rot: 1.5707963267948966 rad @@ -47886,9 +47553,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13136 + - 20 + - 22 + - uid: 7437 components: - type: Transform rot: 1.5707963267948966 rad @@ -47896,9 +47563,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13158 + - 20 + - 22 + - uid: 7438 components: - type: Transform rot: 1.5707963267948966 rad @@ -47906,9 +47573,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13159 + - 26 + - 29 + - uid: 7439 components: - type: Transform rot: 1.5707963267948966 rad @@ -47916,9 +47583,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13160 + - 26 + - 29 + - uid: 7440 components: - type: Transform rot: 1.5707963267948966 rad @@ -47926,8 +47593,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13163 + - 26 + - uid: 7441 components: - type: Transform rot: 3.141592653589793 rad @@ -47935,9 +47602,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 13172 + - 27 + - 29 + - uid: 7442 components: - type: Transform rot: -1.5707963267948966 rad @@ -47945,9 +47612,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13173 + - 31 + - 32 + - uid: 7443 components: - type: Transform rot: -1.5707963267948966 rad @@ -47955,9 +47622,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13174 + - 31 + - 32 + - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad @@ -47965,8 +47632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 13190 + - 32 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad @@ -47974,8 +47641,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13191 + - 39 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad @@ -47983,8 +47650,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13196 + - 39 + - uid: 7447 components: - type: Transform rot: -1.5707963267948966 rad @@ -47992,8 +47659,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13197 + - 40 + - uid: 7448 components: - type: Transform rot: -1.5707963267948966 rad @@ -48001,8 +47668,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13199 + - 40 + - uid: 7449 components: - type: Transform rot: -1.5707963267948966 rad @@ -48010,8 +47677,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13200 + - 39 + - uid: 7450 components: - type: Transform rot: -1.5707963267948966 rad @@ -48019,33 +47686,33 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13203 + - 7 + - 41 + - uid: 7451 components: - type: Transform pos: 6.5,-164.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13204 + - 41 + - uid: 7452 components: - type: Transform pos: 2.5,-162.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13205 + - 38 + - uid: 7453 components: - type: Transform pos: -1.5,-163.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13223 + - 38 + - uid: 7454 components: - type: Transform rot: 3.141592653589793 rad @@ -48053,9 +47720,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13224 + - 43 + - 44 + - uid: 7455 components: - type: Transform rot: 3.141592653589793 rad @@ -48063,9 +47730,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13225 + - 43 + - 44 + - uid: 7456 components: - type: Transform rot: 3.141592653589793 rad @@ -48073,9 +47740,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13226 + - 43 + - 45 + - uid: 7457 components: - type: Transform rot: 3.141592653589793 rad @@ -48083,42 +47750,42 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13242 + - 43 + - 45 + - uid: 7458 components: - type: Transform pos: -1.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - 13252 - - uid: 13264 + - 45 + - 49 + - uid: 7459 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - uid: 13265 + - uid: 7460 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - uid: 13266 + - uid: 7461 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - uid: 13267 + - uid: 7462 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 13310 + - uid: 7463 components: - type: Transform rot: 3.141592653589793 rad @@ -48126,9 +47793,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 2277 - - uid: 13313 + - 50 + - 5 + - uid: 7464 components: - type: Transform rot: -1.5707963267948966 rad @@ -48136,9 +47803,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13314 + - 50 + - 51 + - uid: 7465 components: - type: Transform rot: -1.5707963267948966 rad @@ -48146,9 +47813,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13315 + - 50 + - 52 + - uid: 7466 components: - type: Transform rot: -1.5707963267948966 rad @@ -48156,35 +47823,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13319 + - 50 + - 52 + - uid: 7467 components: - type: Transform pos: 4.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13320 + - 51 + - 54 + - uid: 7468 components: - type: Transform pos: 5.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13321 + - 51 + - 54 + - uid: 7469 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13324 + - 51 + - uid: 7470 components: - type: Transform rot: 1.5707963267948966 rad @@ -48192,25 +47859,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13328 + - 5 + - uid: 7471 components: - type: Transform pos: 1.5,-285.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13332 + - 52 + - uid: 7472 components: - type: Transform pos: -5.5,-282.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - 13335 - - uid: 13338 + - 52 + - 53 + - uid: 7473 components: - type: Transform rot: 3.141592653589793 rad @@ -48218,8 +47885,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13339 + - 54 + - uid: 7474 components: - type: Transform rot: 3.141592653589793 rad @@ -48227,8 +47894,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13340 + - 54 + - uid: 7475 components: - type: Transform rot: 3.141592653589793 rad @@ -48236,8 +47903,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13342 + - 54 + - uid: 7476 components: - type: Transform rot: 3.141592653589793 rad @@ -48245,9 +47912,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13343 + - 56 + - 8 + - uid: 7477 components: - type: Transform rot: 3.141592653589793 rad @@ -48255,9 +47922,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13344 + - 56 + - 8 + - uid: 7478 components: - type: Transform rot: 3.141592653589793 rad @@ -48265,9 +47932,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13345 + - 56 + - 8 + - uid: 7479 components: - type: Transform rot: 3.141592653589793 rad @@ -48275,9 +47942,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13346 + - 55 + - 8 + - uid: 7480 components: - type: Transform rot: 3.141592653589793 rad @@ -48285,9 +47952,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13347 + - 55 + - 8 + - uid: 7481 components: - type: Transform rot: 3.141592653589793 rad @@ -48295,9 +47962,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13353 + - 55 + - 8 + - uid: 7482 components: - type: Transform rot: 3.141592653589793 rad @@ -48305,8 +47972,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13354 + - 55 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad @@ -48314,8 +47981,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13360 + - 55 + - uid: 7484 components: - type: Transform rot: -1.5707963267948966 rad @@ -48323,9 +47990,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 13383 - - uid: 13361 + - 56 + - 60 + - uid: 7485 components: - type: Transform rot: -1.5707963267948966 rad @@ -48333,8 +48000,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13362 + - 56 + - uid: 7486 components: - type: Transform rot: -1.5707963267948966 rad @@ -48342,8 +48009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13363 + - 56 + - uid: 7487 components: - type: Transform rot: -1.5707963267948966 rad @@ -48351,8 +48018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13364 + - 56 + - uid: 7488 components: - type: Transform rot: -1.5707963267948966 rad @@ -48360,25 +48027,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13367 + - 56 + - uid: 7489 components: - type: Transform pos: -1.5,-317.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 - - 13374 - - uid: 13368 + - 57 + - 58 + - uid: 7490 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13372 + - uid: 7491 components: - type: Transform rot: 1.5707963267948966 rad @@ -48386,9 +48050,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - 8432 - - uid: 13373 + - 58 + - 8 + - uid: 7492 components: - type: Transform rot: 1.5707963267948966 rad @@ -48396,8 +48060,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13377 + - 58 + - uid: 7493 components: - type: Transform rot: 1.5707963267948966 rad @@ -48405,9 +48069,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - 13382 - - uid: 13381 + - 8 + - 59 + - uid: 7494 components: - type: Transform rot: 1.5707963267948966 rad @@ -48415,8 +48079,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13386 + - 59 + - uid: 7495 components: - type: Transform rot: 3.141592653589793 rad @@ -48424,10 +48088,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13387 + - 61 + - 10 + - 6 + - uid: 7496 components: - type: Transform rot: 3.141592653589793 rad @@ -48435,10 +48099,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13390 + - 61 + - 10 + - 6 + - uid: 7497 components: - type: Transform rot: 1.5707963267948966 rad @@ -48446,28 +48110,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13395 + - 61 + - 10 + - uid: 7498 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13396 + - 10 + - 6 + - uid: 7499 components: - type: Transform pos: -4.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 13402 - - 5925 - - uid: 13412 + - 10 + - 62 + - 6 + - uid: 7500 components: - type: Transform rot: 3.141592653589793 rad @@ -48475,8 +48139,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13413 + - 63 + - uid: 7501 components: - type: Transform rot: 3.141592653589793 rad @@ -48484,8 +48148,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13414 + - 63 + - uid: 7502 components: - type: Transform rot: 3.141592653589793 rad @@ -48493,8 +48157,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13415 + - 63 + - uid: 7503 components: - type: Transform rot: 3.141592653589793 rad @@ -48502,8 +48166,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13416 + - 63 + - uid: 7504 components: - type: Transform rot: 3.141592653589793 rad @@ -48511,8 +48175,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13417 + - 63 + - uid: 7505 components: - type: Transform rot: 3.141592653589793 rad @@ -48520,8 +48184,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13418 + - 63 + - uid: 7506 components: - type: Transform rot: 3.141592653589793 rad @@ -48529,9 +48193,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13419 + - 63 + - 64 + - uid: 7507 components: - type: Transform rot: 3.141592653589793 rad @@ -48539,9 +48203,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13420 + - 63 + - 64 + - uid: 7508 components: - type: Transform rot: 3.141592653589793 rad @@ -48549,8 +48213,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 14728 + - 63 + - uid: 7509 components: - type: Transform rot: 3.141592653589793 rad @@ -48558,24 +48222,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15086 + - 66 + - uid: 7510 components: - type: Transform pos: 7.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 15087 + - 44 + - uid: 7511 components: - type: Transform pos: 7.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 15281 + - 45 + - uid: 7512 components: - type: Transform rot: -1.5707963267948966 rad @@ -48583,8 +48247,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15290 + - 69 + - uid: 7513 components: - type: Transform rot: -1.5707963267948966 rad @@ -48592,8 +48256,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15291 + - 71 + - uid: 7514 components: - type: Transform rot: -1.5707963267948966 rad @@ -48601,62 +48265,62 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 16995 + - 71 + - uid: 7515 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 16996 + - uid: 7516 components: - type: Transform pos: -12.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 16971 - - uid: 16997 + - 72 + - uid: 7517 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: Fireplace entities: - - uid: 289 + - uid: 7518 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 2838 + - uid: 7519 components: - type: Transform pos: -3.5,-138.5 parent: 2 - proto: Flash entities: - - uid: 409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.435971,-12.5018215 - parent: 2 - - uid: 12776 + - uid: 5606 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.435971,-12.5018215 + parent: 2 - proto: FlashlightLantern entities: - - uid: 3675 + - uid: 7521 components: - type: Transform pos: -2.459197,-144.20804 parent: 2 - proto: FloorDrain entities: - - uid: 2316 + - uid: 7522 components: - type: Transform rot: 1.5707963267948966 rad @@ -48664,7 +48328,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2317 + - uid: 7523 components: - type: Transform rot: 1.5707963267948966 rad @@ -48672,7 +48336,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2926 + - uid: 7524 components: - type: Transform rot: 3.141592653589793 rad @@ -48680,7 +48344,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 3090 + - uid: 7525 components: - type: Transform rot: 1.5707963267948966 rad @@ -48688,14 +48352,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14375 + - uid: 7526 components: - type: Transform pos: 15.5,-61.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 16519 + - uid: 7527 components: - type: Transform pos: -1.5,-172.5 @@ -48704,7 +48368,7 @@ entities: fixtures: {} - proto: FloraTree01 entities: - - uid: 11690 + - uid: 7528 components: - type: Transform rot: 3.141592653589793 rad @@ -48712,79 +48376,79 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 15092 + - uid: 7529 components: - type: Transform pos: 11.2466135,-200.43379 parent: 2 - proto: FloraTree06 entities: - - uid: 15094 + - uid: 7530 components: - type: Transform pos: 9.820292,-197.55566 parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 15088 + - uid: 7531 components: - type: Transform pos: 10.625899,-194.5191 parent: 2 - proto: FloraTreeStump entities: - - uid: 710 + - uid: 7532 components: - type: Transform pos: 4.1898217,-41.37392 parent: 2 - proto: FoodBanana entities: - - uid: 8946 + - uid: 5471 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10018 + - uid: 5472 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10091 + - uid: 5473 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 215 + - uid: 7533 components: - type: Transform pos: 6.6280804,-11.907726 parent: 2 - proto: FoodBurgerBacon entities: - - uid: 7583 + - uid: 7534 components: - type: Transform pos: 7.422054,-197.01524 parent: 2 - proto: FoodBurgerRobot entities: - - uid: 9974 + - uid: 7535 components: - type: Transform pos: -1.5525827,-302.4798 parent: 2 - proto: FoodCarrot entities: - - uid: 2308 + - uid: 7536 components: - type: Transform rot: -1.5707963267948966 rad @@ -48792,7 +48456,7 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 12368 + - uid: 7537 components: - type: Transform rot: -1.5707963267948966 rad @@ -48800,7 +48464,7 @@ entities: parent: 2 - proto: FoodCartHot entities: - - uid: 2319 + - uid: 7538 components: - type: Transform rot: -1.5707963267948966 rad @@ -48808,114 +48472,114 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 26570 + - uid: 7539 components: - type: Transform pos: 1.0586631,-370.32172 parent: 2 - proto: FoodDonutCaramel entities: - - uid: 11522 + - uid: 7540 components: - type: Transform pos: -0.40804732,-345.55585 parent: 2 - proto: FoodDonutChaos entities: - - uid: 5382 + - uid: 7541 components: - type: Transform pos: -0.61935514,-345.2918 parent: 2 - proto: FoodEggBoiled entities: - - uid: 4194 + - uid: 7542 components: - type: Transform pos: -0.6405136,-11.597754 parent: 2 - proto: FoodEggplant entities: - - uid: 14357 + - uid: 7543 components: - type: Transform pos: 16.665325,-82.4353 parent: 2 - proto: FoodMealPotatoYaki entities: - - uid: 15037 + - uid: 7544 components: - type: Transform pos: -10.433084,-134.28047 parent: 2 - proto: FoodPieBananaCream entities: - - uid: 2006 - components: - - type: Transform - pos: -7.22454,-124.50731 - parent: 2 - - uid: 10014 + - uid: 5474 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10781 + - uid: 5475 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7545 + components: + - type: Transform + pos: -7.22454,-124.50731 + parent: 2 - proto: FoodPoppy entities: - - uid: 97 + - uid: 7546 components: - type: Transform pos: -1.3108504,-1.6374404 parent: 2 - - uid: 993 + - uid: 7547 components: - type: Transform rot: 3.141592653589793 rad pos: 3.308499,-40.737587 parent: 2 - - uid: 4106 + - uid: 7548 components: - type: Transform pos: -4.616196,-20.118092 parent: 2 - proto: FoodPotato entities: - - uid: 2306 + - uid: 7549 components: - type: Transform pos: 1.3938253,-87.1436 parent: 2 - - uid: 2307 + - uid: 7550 components: - type: Transform pos: 1.6579595,-87.28883 parent: 2 - proto: FoodSaladCitrus entities: - - uid: 14742 + - uid: 7551 components: - type: Transform pos: -6.285258,-307.37143 parent: 2 - proto: FoodSoupTomatoBlood entities: - - uid: 367 + - uid: 7552 components: - type: Transform pos: -3.4185836,2.6839163 parent: 2 - proto: ForkPlastic entities: - - uid: 9985 + - uid: 7553 components: - type: Transform rot: 3.141592653589793 rad @@ -48923,61 +48587,51 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 16898 + - uid: 7554 components: - type: Transform pos: -4.5,-306.5 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 14639 + - uid: 7555 components: - type: Transform pos: -5.5,-259.5 parent: 2 - proto: GasFilter entities: - - uid: 8509 + - uid: 9218 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 8512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - proto: GasFilterFlipped entities: - - uid: 6673 + - uid: 7558 components: - type: Transform pos: -17.5,-257.5 parent: 2 - - uid: 8816 + - uid: 7559 components: - type: Transform pos: -17.5,-253.5 parent: 2 - - uid: 8917 + - uid: 7560 components: - type: Transform pos: -17.5,-255.5 parent: 2 - - uid: 11901 + - uid: 7561 components: - type: Transform pos: -17.5,-251.5 parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 13271 + - uid: 7562 components: - type: Transform rot: -1.5707963267948966 rad @@ -48985,21 +48639,21 @@ entities: parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 7546 + - uid: 7563 components: - type: Transform pos: -20.5,-257.5 parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 8202 + - uid: 7564 components: - type: Transform pos: -20.5,-255.5 parent: 2 - proto: GasMixer entities: - - uid: 11211 + - uid: 7565 components: - type: Transform pos: 5.5,-356.5 @@ -49008,25 +48662,25 @@ entities: color: '#FFD800FF' - proto: GasOutletInjector entities: - - uid: 3760 + - uid: 7566 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 4021 + - uid: 7567 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 7237 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 7924 + - uid: 7569 components: - type: Transform rot: 1.5707963267948966 rad @@ -49034,7 +48688,7 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 545 + - uid: 7570 components: - type: Transform rot: -1.5707963267948966 rad @@ -49042,37 +48696,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 618 + - uid: 7571 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 938 + color: '#990000FF' + - uid: 7572 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1102 + color: '#990000FF' + - uid: 7573 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3114 + color: '#990000FF' + - uid: 7574 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-253.5 parent: 2 - - uid: 3256 + - uid: 7575 components: - type: Transform rot: 1.5707963267948966 rad @@ -49080,45 +48734,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3405 + - uid: 7576 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3500 + color: '#990000FF' + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3961 + color: '#990000FF' + - uid: 7578 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4049 + color: '#990000FF' + - uid: 7579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 4154 + - uid: 7580 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5014 + color: '#990000FF' + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad @@ -49126,15 +48780,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5026 + - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5171 + color: '#990000FF' + - uid: 7583 components: - type: Transform rot: 1.5707963267948966 rad @@ -49142,7 +48796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5175 + - uid: 7584 components: - type: Transform rot: 1.5707963267948966 rad @@ -49150,13 +48804,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5320 + - uid: 7585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-249.5 parent: 2 - - uid: 5367 + - uid: 7586 components: - type: Transform rot: -1.5707963267948966 rad @@ -49164,50 +48818,50 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6796 + - uid: 7587 components: - type: Transform pos: -19.5,-257.5 parent: 2 - - uid: 8789 + - uid: 7588 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-251.5 parent: 2 - - uid: 10694 + - uid: 7589 components: - type: Transform pos: -7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10928 + color: '#990000FF' + - uid: 7590 components: - type: Transform pos: 8.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11916 + color: '#990000FF' + - uid: 7591 components: - type: Transform pos: -19.5,-255.5 parent: 2 - - uid: 12016 + - uid: 7592 components: - type: Transform pos: -19.5,-260.5 parent: 2 - - uid: 12218 + - uid: 7593 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12389 + color: '#990000FF' + - uid: 7594 components: - type: Transform rot: 1.5707963267948966 rad @@ -49215,7 +48869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12405 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad @@ -49223,15 +48877,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12517 + - uid: 7596 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12907 + color: '#990000FF' + - uid: 7597 components: - type: Transform rot: -1.5707963267948966 rad @@ -49239,29 +48893,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13103 + - uid: 7598 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13104 + color: '#990000FF' + - uid: 7599 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14298 + color: '#990000FF' + - uid: 7600 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-263.5 parent: 2 - - uid: 14451 + - uid: 7601 components: - type: Transform rot: -1.5707963267948966 rad @@ -49271,443 +48925,410 @@ entities: color: '#FF0000FF' - proto: GasPipeBend entities: - - uid: 735 + - uid: 7602 components: - type: Transform pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 738 + color: '#990000FF' + - uid: 7603 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 853 + color: '#990000FF' + - uid: 7604 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 854 + color: '#0055CCFF' + - uid: 7605 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 869 + color: '#0055CCFF' + - uid: 7606 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 873 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 930 + color: '#0055CCFF' + - uid: 7607 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 981 + color: '#990000FF' + - uid: 7608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1021 + color: '#0055CCFF' + - uid: 7609 components: - type: Transform pos: 3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1107 + color: '#990000FF' + - uid: 7610 components: - type: Transform pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1149 + color: '#990000FF' + - uid: 7611 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1200 + color: '#990000FF' + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7613 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1202 + color: '#990000FF' + - uid: 7614 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1396 + color: '#990000FF' + - uid: 7615 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1670 + color: '#990000FF' + - uid: 7616 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1994 + color: '#0055CCFF' + - uid: 7617 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2925 + color: '#990000FF' + - uid: 7619 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-243.5 parent: 2 - - uid: 2957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-170.5 - parent: 2 - - uid: 3361 + - uid: 7621 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3409 + color: '#0055CCFF' + - uid: 7622 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3450 + color: '#0055CCFF' + - uid: 7623 components: - type: Transform pos: 5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3505 + color: '#0055CCFF' + - uid: 7624 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3506 + color: '#990000FF' + - uid: 7625 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3531 + color: '#990000FF' + - uid: 7626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3562 + color: '#990000FF' + - uid: 7627 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3610 + color: '#990000FF' + - uid: 7628 components: - type: Transform pos: 6.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3636 + color: '#990000FF' + - uid: 7629 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3882 + color: '#990000FF' + - uid: 7630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-17.5 parent: 2 - - uid: 3955 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7631 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4054 + color: '#990000FF' + - uid: 7632 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4113 + color: '#990000FF' + - uid: 7633 components: - type: Transform pos: -17.5,-249.5 parent: 2 - - uid: 4547 + - uid: 7634 components: - type: Transform pos: 4.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4984 + color: '#990000FF' + - uid: 7635 components: - type: Transform pos: 16.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5101 + color: '#990000FF' + - uid: 7636 components: - type: Transform - pos: -4.5,-197.5 + rot: 3.141592653589793 rad + pos: -2.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5311 + color: '#990000FF' + - uid: 7637 components: - type: Transform - pos: 5.5,-162.5 + pos: -4.5,-197.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5318 - components: - - type: Transform - pos: 5.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5345 + - uid: 7638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-172.5 + pos: 5.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5379 + color: '#990000FF' + - uid: 7639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-220.5 + pos: 5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5381 + color: '#0055CCFF' + - uid: 7640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-229.5 + pos: 4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5502 + color: '#990000FF' + - uid: 7641 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-247.5 parent: 2 - - uid: 5959 + - uid: 7642 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-247.5 parent: 2 - - uid: 6069 + - uid: 7643 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-247.5 parent: 2 - - uid: 6630 + - uid: 7644 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6694 + color: '#0055CCFF' + - uid: 7645 components: - type: Transform pos: 17.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6888 + color: '#990000FF' + - uid: 7646 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-250.5 parent: 2 - - uid: 7197 + - uid: 7647 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 7360 + - uid: 7648 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-258.5 parent: 2 - - uid: 7433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-249.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7485 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7813 + color: '#0055CCFF' + - uid: 7650 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-256.5 parent: 2 - - uid: 7905 + - uid: 7651 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8047 + color: '#990000FF' + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8086 + color: '#990000FF' + - uid: 7653 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8090 + color: '#990000FF' + - uid: 7654 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8267 + color: '#990000FF' + - uid: 7655 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-261.5 parent: 2 - - uid: 8480 + - uid: 7656 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-247.5 parent: 2 - - uid: 9520 + - uid: 7657 components: - type: Transform pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10079 + color: '#0055CCFF' + - uid: 7658 components: - type: Transform pos: 9.5,-114.5 parent: 2 - - uid: 11214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7659 components: - type: Transform rot: 3.141592653589793 rad @@ -49715,101 +49336,101 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 11253 + - uid: 7660 components: - type: Transform pos: 7.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12062 + color: '#0055CCFF' + - uid: 7661 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12150 + color: '#990000FF' + - uid: 7662 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12244 + color: '#990000FF' + - uid: 7663 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12245 + color: '#990000FF' + - uid: 7664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12383 + color: '#990000FF' + - uid: 7665 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12521 + color: '#0055CCFF' + - uid: 7666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-314.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7667 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12529 + color: '#990000FF' + - uid: 7668 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12565 + color: '#990000FF' + - uid: 7669 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12566 + color: '#0055CCFF' + - uid: 7670 components: - type: Transform pos: 8.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-298.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12623 + color: '#990000FF' + - uid: 7671 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12712 + color: '#990000FF' + - uid: 7672 components: - type: Transform rot: 3.141592653589793 rad @@ -49817,107 +49438,108 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12807 + - uid: 7673 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12831 + color: '#990000FF' + - uid: 7674 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12842 + color: '#990000FF' + - uid: 7675 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12843 + color: '#0055CCFF' + - uid: 7676 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12844 + color: '#0055CCFF' + - uid: 7677 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12879 + color: '#0055CCFF' + - uid: 7678 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-360.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12981 + color: '#0055CCFF' + - uid: 7679 components: - type: Transform - pos: 1.5,-359.5 + rot: -1.5707963267948966 rad + pos: 7.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12982 + color: '#990000FF' + - uid: 7680 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-359.5 + pos: 1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13035 + color: '#0055CCFF' + - uid: 7681 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13143 + color: '#990000FF' + - uid: 7682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14306 + color: '#0055CCFF' + - uid: 7683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7684 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-263.5 parent: 2 - - uid: 14423 + - uid: 7685 components: - type: Transform pos: 18.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14425 + - uid: 7686 components: - type: Transform rot: 3.141592653589793 rad @@ -49925,7 +49547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14437 + - uid: 7687 components: - type: Transform rot: 3.141592653589793 rad @@ -49933,7 +49555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14442 + - uid: 7688 components: - type: Transform rot: 3.141592653589793 rad @@ -49941,1069 +49563,1074 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14607 + - uid: 7689 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-252.5 parent: 2 - - uid: 14815 + - uid: 7690 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14816 + color: '#0055CCFF' + - uid: 7691 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14836 + color: '#0055CCFF' + - uid: 7692 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14864 + color: '#0055CCFF' + - uid: 7693 components: - type: Transform pos: -3.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14865 + color: '#0055CCFF' + - uid: 7694 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14895 + color: '#0055CCFF' + - uid: 7695 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15042 + color: '#0055CCFF' + - uid: 7696 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15101 + color: '#0055CCFF' + - uid: 7697 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15102 + color: '#0055CCFF' + - uid: 7698 components: - type: Transform pos: 5.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15111 + color: '#0055CCFF' + - uid: 7699 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15126 + color: '#0055CCFF' + - uid: 7700 components: - type: Transform pos: 5.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15200 + color: '#0055CCFF' + - uid: 7701 components: - type: Transform pos: 5.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16488 + color: '#0055CCFF' + - uid: 7702 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16489 + color: '#990000FF' + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16687 + color: '#990000FF' + - uid: 7704 components: - type: Transform pos: -3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 8124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8138 + components: + - type: Transform + pos: -2.5,-169.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-170.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-170.5 + parent: 2 - proto: GasPipeFourway entities: - - uid: 615 + - uid: 7705 components: - type: Transform pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 846 + color: '#990000FF' + - uid: 7706 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 860 + color: '#0055CCFF' + - uid: 7707 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1261 + color: '#0055CCFF' + - uid: 7708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1302 + color: '#0055CCFF' + - uid: 7709 components: - type: Transform pos: -0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1370 + color: '#990000FF' + - uid: 7710 components: - type: Transform pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3273 + color: '#0055CCFF' + - uid: 7711 components: - type: Transform pos: -3.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3335 + color: '#990000FF' + - uid: 7712 components: - type: Transform pos: 0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3350 + color: '#0055CCFF' + - uid: 7713 components: - type: Transform pos: 0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3375 + color: '#0055CCFF' + - uid: 7714 components: - type: Transform pos: 0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3419 + color: '#0055CCFF' + - uid: 7715 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3957 + color: '#0055CCFF' + - uid: 7716 components: - type: Transform pos: 4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4011 + color: '#990000FF' + - uid: 7717 components: - type: Transform pos: -0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4119 + color: '#990000FF' + - uid: 7718 components: - type: Transform pos: 0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4529 + color: '#0055CCFF' + - uid: 7719 components: - type: Transform pos: 0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4615 + color: '#0055CCFF' + - uid: 7720 components: - type: Transform pos: 0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4666 + color: '#0055CCFF' + - uid: 7721 components: - type: Transform pos: 0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4748 + color: '#0055CCFF' + - uid: 7722 components: - type: Transform pos: -4.5,-200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5052 + - uid: 7723 components: - type: Transform pos: 0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5084 + color: '#0055CCFF' + - uid: 7724 components: - type: Transform pos: 1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5263 + color: '#990000FF' + - uid: 7725 components: - type: Transform pos: 1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5304 + color: '#990000FF' + - uid: 7726 components: - type: Transform pos: 0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5926 + color: '#0055CCFF' + - uid: 7727 components: - type: Transform pos: 0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6693 + color: '#0055CCFF' + - uid: 7728 components: - type: Transform pos: 0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7204 + color: '#0055CCFF' + - uid: 7729 components: - type: Transform pos: 0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7822 + color: '#0055CCFF' + - uid: 7730 + components: + - type: Transform + pos: 1.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 components: - type: Transform pos: 0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7956 + color: '#0055CCFF' + - uid: 7732 components: - type: Transform pos: -3.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9809 + color: '#990000FF' + - uid: 7733 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7734 components: - type: Transform pos: 0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9816 + color: '#0055CCFF' + - uid: 7735 components: - type: Transform pos: -3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12441 + color: '#0055CCFF' + - uid: 7736 + components: + - type: Transform + pos: 17.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7737 components: - type: Transform pos: -0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12722 + color: '#990000FF' + - uid: 7738 components: - type: Transform pos: 1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12746 + color: '#990000FF' + - uid: 7739 components: - type: Transform pos: 0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12755 + color: '#0055CCFF' + - uid: 7740 components: - type: Transform pos: 1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12768 + color: '#990000FF' + - uid: 7741 components: - type: Transform pos: -4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12796 + color: '#990000FF' + - uid: 7742 components: - type: Transform pos: 1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 + color: '#990000FF' + - uid: 7743 components: - type: Transform pos: -4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12949 + color: '#990000FF' + - uid: 7744 components: - type: Transform pos: 4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12968 + color: '#0055CCFF' + - uid: 7745 components: - type: Transform pos: 1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 444 + - uid: 7618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 1.5,-359.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7747 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 533 + color: '#990000FF' + - uid: 7748 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 594 + color: '#990000FF' + - uid: 7749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 595 + color: '#990000FF' + - uid: 7750 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 602 + color: '#990000FF' + - uid: 7751 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 612 + color: '#990000FF' + - uid: 7752 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 624 + color: '#990000FF' + - uid: 7753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 628 + color: '#990000FF' + - uid: 7754 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 629 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7755 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 630 + color: '#990000FF' + - uid: 7756 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 635 + color: '#990000FF' + - uid: 7757 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 660 + color: '#990000FF' + - uid: 7758 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 673 + color: '#990000FF' + - uid: 7759 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 685 + color: '#990000FF' + - uid: 7760 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 686 + color: '#990000FF' + - uid: 7761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 709 + color: '#990000FF' + - uid: 7762 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 715 + color: '#990000FF' + - uid: 7763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 717 + color: '#990000FF' + - uid: 7764 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 718 + color: '#990000FF' + - uid: 7765 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 719 + color: '#990000FF' + - uid: 7766 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 721 + color: '#990000FF' + - uid: 7767 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 722 + color: '#990000FF' + - uid: 7768 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 723 + color: '#990000FF' + - uid: 7769 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 724 + color: '#990000FF' + - uid: 7770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 725 + color: '#990000FF' + - uid: 7771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 731 + color: '#990000FF' + - uid: 7772 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 732 + color: '#990000FF' + - uid: 7773 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 733 + color: '#990000FF' + - uid: 7774 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 736 + color: '#990000FF' + - uid: 7775 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 739 + color: '#990000FF' + - uid: 7776 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 740 + color: '#990000FF' + - uid: 7777 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 743 + color: '#990000FF' + - uid: 7778 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 744 + color: '#990000FF' + - uid: 7779 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 748 + color: '#990000FF' + - uid: 7780 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 749 + color: '#990000FF' + - uid: 7781 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 765 + color: '#990000FF' + - uid: 7782 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 766 + color: '#990000FF' + - uid: 7783 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 767 + color: '#990000FF' + - uid: 7784 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 768 + color: '#990000FF' + - uid: 7785 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 789 + color: '#990000FF' + - uid: 7786 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 794 + color: '#0055CCFF' + - uid: 7787 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 812 + color: '#0055CCFF' + - uid: 7788 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 813 + color: '#0055CCFF' + - uid: 7789 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 814 + color: '#0055CCFF' + - uid: 7790 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#0055CCFF' + - uid: 7791 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 819 + color: '#0055CCFF' + - uid: 7792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 820 + color: '#0055CCFF' + - uid: 7793 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 823 + color: '#0055CCFF' + - uid: 7794 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 840 + color: '#0055CCFF' + - uid: 7795 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 841 + color: '#0055CCFF' + - uid: 7796 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 842 + color: '#0055CCFF' + - uid: 7797 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 847 + color: '#0055CCFF' + - uid: 7798 components: - type: Transform pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 848 + color: '#0055CCFF' + - uid: 7799 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 849 + color: '#0055CCFF' + - uid: 7800 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 850 + color: '#0055CCFF' + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 + color: '#0055CCFF' + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 852 + color: '#0055CCFF' + - uid: 7803 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 858 + color: '#0055CCFF' + - uid: 7804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 859 + color: '#0055CCFF' + - uid: 7805 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 861 + color: '#0055CCFF' + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 862 + color: '#0055CCFF' + - uid: 7807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 863 + color: '#0055CCFF' + - uid: 7808 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 864 + color: '#0055CCFF' + - uid: 7809 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 865 + color: '#0055CCFF' + - uid: 7810 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 868 + color: '#0055CCFF' + - uid: 7811 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 872 + color: '#0055CCFF' + - uid: 7812 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 874 + color: '#0055CCFF' + - uid: 7813 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 877 + color: '#0055CCFF' + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 878 + color: '#0055CCFF' + - uid: 7815 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 920 + color: '#0055CCFF' + - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 922 + color: '#990000FF' + - uid: 7817 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 933 + color: '#0055CCFF' + - uid: 7818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 973 + color: '#990000FF' + - uid: 7819 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 988 + color: '#990000FF' + - uid: 7820 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 990 + - uid: 7821 components: - type: Transform - pos: 0.5,-23.5 + rot: 3.141592653589793 rad + pos: 0.5,-228.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 992 + color: '#0055CCFF' + - uid: 7822 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 995 + color: '#0055CCFF' + - uid: 7823 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1005 + color: '#0055CCFF' + - uid: 7824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-271.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7825 components: - type: Transform rot: -1.5707963267948966 rad @@ -51011,3989 +50638,3749 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1038 + - uid: 7826 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1039 + color: '#0055CCFF' + - uid: 7827 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1040 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1041 + color: '#0055CCFF' + - uid: 7828 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1042 + color: '#990000FF' + - uid: 7829 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1043 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1044 + color: '#0055CCFF' + - uid: 7830 components: - type: Transform - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1045 + color: '#0055CCFF' + - uid: 7831 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1046 + color: '#0055CCFF' + - uid: 7832 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1047 + color: '#0055CCFF' + - uid: 7833 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1048 + color: '#0055CCFF' + - uid: 7834 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1049 + color: '#0055CCFF' + - uid: 7835 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1051 + color: '#0055CCFF' + - uid: 7836 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1054 + color: '#0055CCFF' + - uid: 7837 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1055 + color: '#0055CCFF' + - uid: 7838 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1056 + color: '#0055CCFF' + - uid: 7839 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1058 + color: '#0055CCFF' + - uid: 7840 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1059 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1060 + color: '#0055CCFF' + - uid: 7841 components: - type: Transform pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1061 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1062 + color: '#0055CCFF' + - uid: 7842 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1065 + color: '#0055CCFF' + - uid: 7843 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1069 + color: '#0055CCFF' + - uid: 7844 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1109 + color: '#990000FF' + - uid: 7845 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1118 + color: '#990000FF' + - uid: 7846 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1135 + color: '#0055CCFF' + - uid: 7847 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1136 + color: '#990000FF' + - uid: 7848 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1137 + color: '#990000FF' + - uid: 7849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1147 + color: '#0055CCFF' + - uid: 7850 components: - type: Transform pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1150 + color: '#990000FF' + - uid: 7851 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1151 + color: '#990000FF' + - uid: 7852 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1152 + color: '#990000FF' + - uid: 7853 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1153 + color: '#990000FF' + - uid: 7854 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1154 + color: '#990000FF' + - uid: 7855 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1157 + color: '#990000FF' + - uid: 7856 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1159 + color: '#990000FF' + - uid: 7857 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1160 + color: '#990000FF' + - uid: 7858 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1161 + color: '#990000FF' + - uid: 7859 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1162 + color: '#990000FF' + - uid: 7860 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1163 + color: '#0055CCFF' + - uid: 7861 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1164 + color: '#0055CCFF' + - uid: 7862 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1165 + color: '#0055CCFF' + - uid: 7863 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1166 + color: '#0055CCFF' + - uid: 7864 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1168 + color: '#0055CCFF' + - uid: 7865 components: - type: Transform pos: -0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1170 + color: '#990000FF' + - uid: 7866 components: - type: Transform pos: -0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1171 + color: '#990000FF' + - uid: 7867 components: - type: Transform pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1173 + color: '#990000FF' + - uid: 7868 components: - type: Transform pos: -0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1175 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1176 + color: '#990000FF' + - uid: 7869 components: - type: Transform pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1182 + color: '#990000FF' + - uid: 7870 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1183 + color: '#0055CCFF' + - uid: 7871 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1184 + color: '#0055CCFF' + - uid: 7872 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1185 + color: '#0055CCFF' + - uid: 7873 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1187 + color: '#0055CCFF' + - uid: 7874 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1189 + color: '#0055CCFF' + - uid: 7875 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1190 + color: '#990000FF' + - uid: 7876 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1193 + color: '#990000FF' + - uid: 7877 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1194 + color: '#990000FF' + - uid: 7878 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1195 + color: '#990000FF' + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1196 + color: '#990000FF' + - uid: 7880 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1197 + color: '#990000FF' + - uid: 7881 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1198 + color: '#990000FF' + - uid: 7882 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1199 + color: '#990000FF' + - uid: 7883 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1203 + color: '#990000FF' + - uid: 7884 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1204 + color: '#990000FF' + - uid: 7885 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1206 + color: '#990000FF' + - uid: 7886 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1208 + color: '#990000FF' + - uid: 7887 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1214 + color: '#990000FF' + - uid: 7888 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1217 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1219 + color: '#990000FF' + - uid: 7889 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1220 + color: '#990000FF' + - uid: 7890 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1232 + color: '#990000FF' + - uid: 7891 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1233 + color: '#0055CCFF' + - uid: 7892 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1234 + color: '#0055CCFF' + - uid: 7893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1235 + color: '#0055CCFF' + - uid: 7894 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1236 + color: '#0055CCFF' + - uid: 7895 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1251 + color: '#990000FF' + - uid: 7896 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1252 + color: '#990000FF' + - uid: 7897 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1253 + color: '#990000FF' + - uid: 7898 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1254 + color: '#990000FF' + - uid: 7899 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1255 + color: '#990000FF' + - uid: 7900 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1258 + color: '#990000FF' + - uid: 7901 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1260 + color: '#990000FF' + - uid: 7902 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1263 + color: '#990000FF' + - uid: 7903 components: - type: Transform pos: -4.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1265 + color: '#990000FF' + - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1268 + color: '#0055CCFF' + - uid: 7905 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1271 + color: '#990000FF' + - uid: 7906 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1275 + color: '#990000FF' + - uid: 7907 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1280 + color: '#0055CCFF' + - uid: 7908 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1281 + color: '#990000FF' + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1282 + color: '#0055CCFF' + - uid: 7910 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1284 + color: '#0055CCFF' + - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1287 + color: '#990000FF' + - uid: 7912 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1290 + color: '#990000FF' + - uid: 7913 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1291 + color: '#990000FF' + - uid: 7914 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1293 + color: '#0055CCFF' + - uid: 7915 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1294 + color: '#990000FF' + - uid: 7916 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1295 + color: '#990000FF' + - uid: 7917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1296 + color: '#990000FF' + - uid: 7918 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1297 + color: '#990000FF' + - uid: 7919 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1298 + color: '#990000FF' + - uid: 7920 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1300 + color: '#990000FF' + - uid: 7921 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1303 + color: '#990000FF' + - uid: 7922 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1304 + color: '#990000FF' + - uid: 7923 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1305 + color: '#990000FF' + - uid: 7924 components: - type: Transform pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1306 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1307 + color: '#0055CCFF' + - uid: 7925 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1308 + color: '#0055CCFF' + - uid: 7926 components: - type: Transform pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1309 + color: '#0055CCFF' + - uid: 7927 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1310 + color: '#990000FF' + - uid: 7928 components: - type: Transform pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1311 + color: '#0055CCFF' + - uid: 7929 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1312 + color: '#0055CCFF' + - uid: 7930 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1313 + color: '#0055CCFF' + - uid: 7931 components: - type: Transform pos: 0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1314 + color: '#0055CCFF' + - uid: 7932 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1317 + color: '#0055CCFF' + - uid: 7933 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1318 + color: '#0055CCFF' + - uid: 7934 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1319 + color: '#0055CCFF' + - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1320 + color: '#0055CCFF' + - uid: 7936 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1321 + color: '#990000FF' + - uid: 7937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1322 + color: '#990000FF' + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1330 + color: '#990000FF' + - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1331 + color: '#990000FF' + - uid: 7940 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1338 + color: '#990000FF' + - uid: 7941 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1340 + color: '#990000FF' + - uid: 7942 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1346 + color: '#0055CCFF' + - uid: 7943 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1356 + color: '#990000FF' + - uid: 7944 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1357 + color: '#990000FF' + - uid: 7945 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1361 + color: '#990000FF' + - uid: 7946 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1363 + color: '#0055CCFF' + - uid: 7947 components: - type: Transform pos: 0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1364 + color: '#0055CCFF' + - uid: 7948 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1366 + color: '#0055CCFF' + - uid: 7949 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1371 + color: '#0055CCFF' + - uid: 7950 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1376 + color: '#0055CCFF' + - uid: 7951 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1377 + color: '#990000FF' + - uid: 7952 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1379 + color: '#0055CCFF' + - uid: 7953 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1387 + color: '#0055CCFF' + - uid: 7954 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1388 + color: '#990000FF' + - uid: 7955 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1390 + color: '#990000FF' + - uid: 7956 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1391 + color: '#990000FF' + - uid: 7957 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1392 + color: '#990000FF' + - uid: 7958 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1393 + color: '#0055CCFF' + - uid: 7959 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1395 + color: '#0055CCFF' + - uid: 7960 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1397 + color: '#0055CCFF' + - uid: 7961 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1404 + color: '#0055CCFF' + - uid: 7962 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1405 + color: '#990000FF' + - uid: 7963 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1410 + color: '#990000FF' + - uid: 7964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1411 + color: '#0055CCFF' + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1412 + color: '#0055CCFF' + - uid: 7966 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1414 + color: '#0055CCFF' + - uid: 7967 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1424 + color: '#0055CCFF' + - uid: 7968 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1512 + color: '#0055CCFF' + - uid: 7969 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7970 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1575 + color: '#0055CCFF' + - uid: 7971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1680 + color: '#990000FF' + - uid: 7972 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1770 + color: '#0055CCFF' + - uid: 7973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1841 + color: '#0055CCFF' + - uid: 7974 components: - type: Transform pos: -4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1961 + color: '#0055CCFF' + - uid: 7975 components: - type: Transform pos: -4.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2170 + color: '#0055CCFF' + - uid: 7976 components: - type: Transform pos: -4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2357 + color: '#0055CCFF' + - uid: 7977 components: - type: Transform pos: -17.5,-258.5 parent: 2 - - uid: 2399 + - uid: 7978 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2403 + - uid: 7979 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2481 + - uid: 7980 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-245.5 parent: 2 - - uid: 2919 + - uid: 7981 components: - type: Transform pos: -17.5,-250.5 parent: 2 - - uid: 3025 + - uid: 7982 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3028 + color: '#990000FF' + - uid: 7983 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-258.5 parent: 2 - - uid: 3039 + - uid: 7984 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3041 + color: '#990000FF' + - uid: 7985 components: - type: Transform pos: -4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3135 + color: '#990000FF' + - uid: 7986 components: - type: Transform - pos: -9.5,-253.5 + rot: 3.141592653589793 rad + pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3144 + color: '#0055CCFF' + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-260.5 + pos: -9.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3145 + color: '#990000FF' + - uid: 7988 components: - type: Transform - pos: 0.5,-168.5 + rot: -1.5707963267948966 rad + pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3165 + color: '#0055CCFF' + - uid: 7989 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 3197 + - uid: 7990 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 3198 + - uid: 7991 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 3215 + - uid: 7992 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 3251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3258 + - uid: 7993 components: - type: Transform pos: -4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3265 + color: '#990000FF' + - uid: 7994 components: - type: Transform pos: -7.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3266 + color: '#990000FF' + - uid: 7995 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3267 + color: '#990000FF' + - uid: 7996 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3268 + color: '#990000FF' + - uid: 7997 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3269 + color: '#990000FF' + - uid: 7998 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3275 + color: '#990000FF' + - uid: 7999 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3276 + color: '#990000FF' + - uid: 8000 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3277 + color: '#990000FF' + - uid: 8001 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3280 + color: '#990000FF' + - uid: 8002 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3282 + color: '#990000FF' + - uid: 8003 components: - type: Transform pos: -4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3286 + color: '#990000FF' + - uid: 8004 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3287 + color: '#990000FF' + - uid: 8005 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3289 + color: '#990000FF' + - uid: 8006 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3290 + color: '#990000FF' + - uid: 8007 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3291 + color: '#990000FF' + - uid: 8008 components: - type: Transform pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3292 + color: '#990000FF' + - uid: 8009 components: - type: Transform pos: 1.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3294 + color: '#990000FF' + - uid: 8010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3295 + color: '#990000FF' + - uid: 8011 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3296 + color: '#990000FF' + - uid: 8012 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3297 + color: '#990000FF' + - uid: 8013 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3298 + color: '#990000FF' + - uid: 8014 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3299 + color: '#990000FF' + - uid: 8015 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3300 + color: '#990000FF' + - uid: 8016 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3301 + color: '#990000FF' + - uid: 8017 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3302 + color: '#990000FF' + - uid: 8018 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3303 + color: '#990000FF' + - uid: 8019 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3304 + color: '#990000FF' + - uid: 8020 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3305 + color: '#990000FF' + - uid: 8021 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-86.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3308 + color: '#990000FF' + - uid: 8022 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3312 + color: '#990000FF' + - uid: 8023 components: - type: Transform pos: -4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3313 + color: '#990000FF' + - uid: 8024 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3315 + color: '#990000FF' + - uid: 8025 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3316 + color: '#990000FF' + - uid: 8026 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3317 + color: '#990000FF' + - uid: 8027 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3318 + color: '#990000FF' + - uid: 8028 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3320 + color: '#990000FF' + - uid: 8029 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3321 + color: '#990000FF' + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3322 + color: '#990000FF' + - uid: 8031 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3324 + color: '#990000FF' + - uid: 8032 components: - type: Transform pos: -0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3325 + color: '#990000FF' + - uid: 8033 components: - type: Transform pos: -0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3327 + color: '#990000FF' + - uid: 8034 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3328 + color: '#0055CCFF' + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-77.5 + pos: 4.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3329 + color: '#990000FF' + - uid: 8036 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3330 + color: '#0055CCFF' + - uid: 8037 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3336 + color: '#0055CCFF' + - uid: 8038 components: - type: Transform pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3337 + color: '#0055CCFF' + - uid: 8039 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3338 + color: '#0055CCFF' + - uid: 8040 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3339 + color: '#0055CCFF' + - uid: 8041 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3340 + color: '#0055CCFF' + - uid: 8042 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 + color: '#0055CCFF' + - uid: 8043 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 + color: '#0055CCFF' + - uid: 8044 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 + color: '#0055CCFF' + - uid: 8045 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 + color: '#0055CCFF' + - uid: 8046 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 + color: '#0055CCFF' + - uid: 8047 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 + color: '#0055CCFF' + - uid: 8048 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 + color: '#0055CCFF' + - uid: 8049 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 + color: '#0055CCFF' + - uid: 8050 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3349 + color: '#0055CCFF' + - uid: 8051 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3356 + color: '#0055CCFF' + - uid: 8052 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 + color: '#0055CCFF' + - uid: 8053 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3358 + color: '#0055CCFF' + - uid: 8054 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3359 + color: '#0055CCFF' + - uid: 8055 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3360 + color: '#0055CCFF' + - uid: 8056 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3362 + color: '#0055CCFF' + - uid: 8057 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3365 + color: '#0055CCFF' + - uid: 8058 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3366 + color: '#0055CCFF' + - uid: 8059 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3367 + color: '#0055CCFF' + - uid: 8060 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3368 + color: '#0055CCFF' + - uid: 8061 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3369 + color: '#0055CCFF' + - uid: 8062 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3370 + color: '#0055CCFF' + - uid: 8063 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3376 + color: '#0055CCFF' + - uid: 8064 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3377 + color: '#0055CCFF' + - uid: 8065 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3378 + color: '#0055CCFF' + - uid: 8066 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3379 + color: '#0055CCFF' + - uid: 8067 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3380 + color: '#0055CCFF' + - uid: 8068 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3381 + color: '#0055CCFF' + - uid: 8069 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3382 + color: '#0055CCFF' + - uid: 8070 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-102.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3384 + color: '#0055CCFF' + - uid: 8071 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-104.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3387 + color: '#0055CCFF' + - uid: 8072 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3388 + color: '#0055CCFF' + - uid: 8073 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3389 + color: '#0055CCFF' + - uid: 8074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3390 + color: '#0055CCFF' + - uid: 8075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3402 + color: '#0055CCFF' + - uid: 8076 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3404 + color: '#0055CCFF' + - uid: 8077 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 + color: '#0055CCFF' + - uid: 8078 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3411 + color: '#0055CCFF' + - uid: 8079 components: - type: Transform pos: 1.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3412 + color: '#0055CCFF' + - uid: 8080 components: - type: Transform pos: 1.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3413 + color: '#0055CCFF' + - uid: 8081 components: - type: Transform pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3414 + color: '#0055CCFF' + - uid: 8082 components: - type: Transform pos: 1.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3416 + color: '#0055CCFF' + - uid: 8083 components: - type: Transform pos: 1.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3417 + color: '#0055CCFF' + - uid: 8084 components: - type: Transform pos: 1.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3418 + color: '#0055CCFF' + - uid: 8085 components: - type: Transform pos: 1.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3420 + color: '#0055CCFF' + - uid: 8086 components: - type: Transform pos: 1.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3421 + color: '#0055CCFF' + - uid: 8087 components: - type: Transform pos: 1.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3422 + color: '#0055CCFF' + - uid: 8088 components: - type: Transform pos: 1.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3423 + color: '#0055CCFF' + - uid: 8089 components: - type: Transform pos: 1.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3424 + color: '#0055CCFF' + - uid: 8090 components: - type: Transform pos: 1.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3425 + color: '#0055CCFF' + - uid: 8091 components: - type: Transform pos: 1.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3427 + color: '#0055CCFF' + - uid: 8092 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3428 - components: - - type: Transform - pos: 0.5,-129.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3429 + color: '#0055CCFF' + - uid: 8093 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3430 + color: '#0055CCFF' + - uid: 8094 components: - type: Transform pos: 0.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3431 - components: - - type: Transform - pos: 0.5,-131.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3432 + color: '#0055CCFF' + - uid: 8095 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3433 + color: '#0055CCFF' + - uid: 8096 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3434 + color: '#0055CCFF' + - uid: 8097 components: - type: Transform pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3440 + color: '#0055CCFF' + - uid: 8098 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3442 + color: '#0055CCFF' + - uid: 8099 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3443 + color: '#0055CCFF' + - uid: 8100 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3445 + color: '#0055CCFF' + - uid: 8101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3446 + color: '#0055CCFF' + - uid: 8102 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3447 + color: '#0055CCFF' + - uid: 8103 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3449 + color: '#0055CCFF' + - uid: 8104 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3453 + color: '#0055CCFF' + - uid: 8105 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3454 + color: '#0055CCFF' + - uid: 8106 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3455 + color: '#0055CCFF' + - uid: 8107 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3456 + color: '#0055CCFF' + - uid: 8108 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3458 + color: '#0055CCFF' + - uid: 8109 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3459 + color: '#0055CCFF' + - uid: 8110 components: - type: Transform pos: -6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3460 + color: '#0055CCFF' + - uid: 8111 components: - type: Transform pos: -6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3461 - components: - - type: Transform - pos: -6.5,-112.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3462 + color: '#0055CCFF' + - uid: 8113 components: - type: Transform pos: -6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3463 + color: '#0055CCFF' + - uid: 8114 components: - type: Transform pos: -6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3464 - components: - - type: Transform - pos: -6.5,-115.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3465 + color: '#0055CCFF' + - uid: 8116 components: - type: Transform pos: -6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3466 + color: '#0055CCFF' + - uid: 8117 components: - type: Transform pos: -6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3467 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3468 + color: '#0055CCFF' + - uid: 8119 components: - type: Transform pos: -6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3469 + color: '#0055CCFF' + - uid: 8120 components: - type: Transform pos: -6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3470 - components: - - type: Transform - pos: -6.5,-121.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3471 + color: '#0055CCFF' + - uid: 8122 components: - type: Transform pos: -6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3472 + color: '#0055CCFF' + - uid: 8123 components: - type: Transform pos: -6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3473 - components: - - type: Transform - pos: -6.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3479 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - - uid: 3488 + color: '#0055CCFF' + - uid: 8125 components: - type: Transform pos: 15.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3510 + color: '#0055CCFF' + - uid: 8126 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3511 + color: '#990000FF' + - uid: 8127 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3512 + color: '#990000FF' + - uid: 8128 components: - type: Transform pos: -8.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3514 + color: '#990000FF' + - uid: 8129 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3516 + color: '#990000FF' + - uid: 8130 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3517 + color: '#990000FF' + - uid: 8131 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3519 + color: '#990000FF' + - uid: 8132 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3520 + color: '#990000FF' + - uid: 8133 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3522 + color: '#990000FF' + - uid: 8134 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3523 + color: '#990000FF' + - uid: 8135 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3528 + color: '#990000FF' + - uid: 8136 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3529 + color: '#990000FF' + - uid: 8137 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-169.5 - parent: 2 - - uid: 3558 + color: '#990000FF' + - uid: 8139 components: - type: Transform pos: 15.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3563 + color: '#0055CCFF' + - uid: 8140 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3564 + color: '#990000FF' + - uid: 8141 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3565 + color: '#990000FF' + - uid: 8142 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3567 + color: '#990000FF' + - uid: 8143 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3569 + color: '#990000FF' + - uid: 8144 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3570 + color: '#990000FF' + - uid: 8145 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3572 + color: '#990000FF' + - uid: 8146 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3574 + color: '#990000FF' + - uid: 8147 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3575 + color: '#990000FF' + - uid: 8148 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3577 + color: '#990000FF' + - uid: 8149 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3578 + color: '#990000FF' + - uid: 8150 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3579 + color: '#990000FF' + - uid: 8151 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3580 + color: '#990000FF' + - uid: 8152 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3581 + color: '#990000FF' + - uid: 8153 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3587 + color: '#990000FF' + - uid: 8154 components: - type: Transform pos: -0.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3588 + color: '#990000FF' + - uid: 8155 components: - type: Transform pos: -0.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3589 - components: - - type: Transform - pos: -0.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3590 + color: '#990000FF' + - uid: 8156 components: - type: Transform pos: -0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3591 + color: '#990000FF' + - uid: 8157 components: - type: Transform pos: -0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3592 + color: '#990000FF' + - uid: 8158 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3593 + color: '#990000FF' + - uid: 8159 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3594 + color: '#990000FF' + - uid: 8160 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3595 + color: '#990000FF' + - uid: 8161 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3596 + color: '#990000FF' + - uid: 8162 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3597 + color: '#990000FF' + - uid: 8163 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3607 + color: '#990000FF' + - uid: 8164 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3609 + color: '#990000FF' + - uid: 8165 components: - type: Transform pos: -9.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3611 + color: '#990000FF' + - uid: 8166 components: - type: Transform pos: -9.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3612 + color: '#990000FF' + - uid: 8167 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3613 + color: '#990000FF' + - uid: 8168 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3614 + color: '#990000FF' + - uid: 8169 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3615 + color: '#990000FF' + - uid: 8170 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3617 + color: '#990000FF' + - uid: 8171 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3618 + color: '#990000FF' + - uid: 8172 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3620 + color: '#990000FF' + - uid: 8173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3624 + color: '#990000FF' + - uid: 8174 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-119.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3628 + color: '#990000FF' + - uid: 8175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3629 + color: '#990000FF' + - uid: 8176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3634 + color: '#990000FF' + - uid: 8177 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3635 + color: '#990000FF' + - uid: 8178 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3638 + color: '#990000FF' + - uid: 8179 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3642 + color: '#990000FF' + - uid: 8180 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3643 + color: '#0055CCFF' + - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3644 + color: '#990000FF' + - uid: 8182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-260.5 + rot: 1.5707963267948966 rad + pos: 2.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3648 + color: '#0055CCFF' + - uid: 8183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-138.5 + pos: 3.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3649 + color: '#0055CCFF' + - uid: 8184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-138.5 + rot: 3.141592653589793 rad + pos: 0.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3663 + color: '#0055CCFF' + - uid: 8185 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3670 + color: '#0055CCFF' + - uid: 8186 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3766 + color: '#0055CCFF' + - uid: 8187 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3789 + color: '#990000FF' + - uid: 8188 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3790 + color: '#0055CCFF' + - uid: 8189 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-260.5 parent: 2 - - uid: 3849 + - uid: 8190 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3875 + color: '#0055CCFF' + - uid: 8191 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3921 + color: '#990000FF' + - uid: 8192 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3922 + color: '#0055CCFF' + - uid: 8193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3924 + color: '#990000FF' + - uid: 8194 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3925 + color: '#0055CCFF' + - uid: 8195 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3926 + color: '#0055CCFF' + - uid: 8196 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3927 + color: '#0055CCFF' + - uid: 8197 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3928 + color: '#0055CCFF' + - uid: 8198 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3929 + color: '#0055CCFF' + - uid: 8199 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3931 + color: '#0055CCFF' + - uid: 8200 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3932 + color: '#0055CCFF' + - uid: 8201 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3934 + color: '#0055CCFF' + - uid: 8202 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3935 + color: '#0055CCFF' + - uid: 8203 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3937 + color: '#0055CCFF' + - uid: 8204 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3939 + color: '#0055CCFF' + - uid: 8205 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-156.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3941 + color: '#0055CCFF' + - uid: 8206 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-158.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3943 + color: '#0055CCFF' + - uid: 8207 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3945 + color: '#0055CCFF' + - uid: 8208 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3946 + color: '#0055CCFF' + - uid: 8209 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3951 + color: '#0055CCFF' + - uid: 8210 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3956 + color: '#990000FF' + - uid: 8211 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3958 + color: '#990000FF' + - uid: 8212 components: - type: Transform pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3959 + color: '#990000FF' + - uid: 8213 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3960 + color: '#990000FF' + - uid: 8214 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3963 + color: '#990000FF' + - uid: 8215 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3964 + color: '#990000FF' + - uid: 8216 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3965 + color: '#990000FF' + - uid: 8217 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3966 + color: '#990000FF' + - uid: 8218 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#990000FF' + - uid: 8219 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3968 + color: '#990000FF' + - uid: 8220 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3969 + color: '#990000FF' + - uid: 8221 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3974 + color: '#990000FF' + - uid: 8222 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3975 + color: '#990000FF' + - uid: 8223 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3976 + color: '#990000FF' + - uid: 8224 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3979 + color: '#990000FF' + - uid: 8225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3983 + color: '#990000FF' + - uid: 8226 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3985 + color: '#990000FF' + - uid: 8227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3986 + color: '#990000FF' + - uid: 8228 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3989 + color: '#0055CCFF' + - uid: 8229 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3990 + color: '#990000FF' + - uid: 8230 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3991 + color: '#990000FF' + - uid: 8231 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3992 + color: '#990000FF' + - uid: 8232 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3995 + color: '#990000FF' + - uid: 8233 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3997 + color: '#990000FF' + - uid: 8234 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3999 + color: '#990000FF' + - uid: 8235 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4001 + color: '#990000FF' + - uid: 8236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4002 + color: '#990000FF' + - uid: 8237 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4005 + color: '#990000FF' + - uid: 8238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4006 + color: '#990000FF' + - uid: 8239 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4007 + color: '#990000FF' + - uid: 8240 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4008 + color: '#990000FF' + - uid: 8241 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4010 + color: '#990000FF' + - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4014 + color: '#990000FF' + - uid: 8243 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + color: '#990000FF' + - uid: 8244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4019 + color: '#990000FF' + - uid: 8245 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 4024 + - uid: 8246 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4025 + color: '#0055CCFF' + - uid: 8247 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4026 + color: '#0055CCFF' + - uid: 8248 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4027 + color: '#0055CCFF' + - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4028 + color: '#0055CCFF' + - uid: 8250 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4029 + color: '#0055CCFF' + - uid: 8251 components: - type: Transform pos: -9.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4030 + color: '#990000FF' + - uid: 8252 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4032 + color: '#0055CCFF' + - uid: 8253 components: - type: Transform pos: -4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4034 + color: '#0055CCFF' + - uid: 8254 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4035 + color: '#990000FF' + - uid: 8255 components: - type: Transform pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4036 + color: '#0055CCFF' + - uid: 8256 components: - type: Transform pos: -5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4038 + color: '#990000FF' + - uid: 8257 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4039 + color: '#0055CCFF' + - uid: 8258 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4052 + color: '#990000FF' + - uid: 8259 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4116 + color: '#0055CCFF' + - uid: 8260 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4117 + color: '#0055CCFF' + - uid: 8261 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4118 + color: '#0055CCFF' + - uid: 8262 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4120 + color: '#0055CCFF' + - uid: 8263 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4121 + color: '#0055CCFF' + - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4122 + color: '#0055CCFF' + - uid: 8265 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-178.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4124 + color: '#0055CCFF' + - uid: 8266 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4125 + color: '#0055CCFF' + - uid: 8267 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4126 + color: '#0055CCFF' + - uid: 8268 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-182.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-183.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4128 + color: '#0055CCFF' + - uid: 8269 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-185.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4130 + color: '#0055CCFF' + - uid: 8270 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4132 + color: '#0055CCFF' + - uid: 8271 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4135 + color: '#0055CCFF' + - uid: 8272 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4151 + color: '#0055CCFF' + - uid: 8273 components: - type: Transform pos: 1.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4152 + color: '#990000FF' + - uid: 8274 components: - type: Transform pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4153 + color: '#990000FF' + - uid: 8275 components: - type: Transform pos: -0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4156 + color: '#990000FF' + - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4157 + color: '#990000FF' + - uid: 8277 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4158 + color: '#990000FF' + - uid: 8278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4159 + color: '#990000FF' + - uid: 8279 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4160 + color: '#990000FF' + - uid: 8280 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4180 + color: '#990000FF' + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-245.5 parent: 2 - - uid: 4200 + - uid: 8282 components: - type: Transform pos: 15.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + color: '#0055CCFF' + - uid: 8283 components: - type: Transform pos: 15.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4214 + color: '#0055CCFF' + - uid: 8284 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4215 + color: '#990000FF' + - uid: 8285 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-166.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4225 + color: '#990000FF' + - uid: 8286 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4305 + color: '#0055CCFF' + - uid: 8287 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4307 + color: '#990000FF' + - uid: 8288 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4357 + color: '#0055CCFF' + - uid: 8289 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4420 + color: '#0055CCFF' + - uid: 8290 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4514 + color: '#990000FF' + - uid: 8291 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4531 + color: '#990000FF' + - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4532 + color: '#0055CCFF' + - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4534 + color: '#0055CCFF' + - uid: 8294 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4536 + color: '#0055CCFF' + - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4537 + color: '#990000FF' + - uid: 8296 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4538 + color: '#990000FF' + - uid: 8297 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4539 + color: '#990000FF' + - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4540 + color: '#990000FF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4560 + color: '#990000FF' + - uid: 8300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4561 + color: '#0055CCFF' + - uid: 8301 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4562 + color: '#0055CCFF' + - uid: 8302 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4563 + color: '#0055CCFF' + - uid: 8303 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-149.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4565 + color: '#0055CCFF' + - uid: 8304 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4566 + color: '#0055CCFF' + - uid: 8305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4569 + color: '#0055CCFF' + - uid: 8306 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4578 + color: '#990000FF' + - uid: 8307 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4580 + color: '#990000FF' + - uid: 8308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4581 + color: '#990000FF' + - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4583 + color: '#990000FF' + - uid: 8310 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4585 + color: '#990000FF' + - uid: 8311 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4589 + color: '#990000FF' + - uid: 8312 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4590 + color: '#990000FF' + - uid: 8313 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4591 + color: '#0055CCFF' + - uid: 8314 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-218.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4592 + color: '#0055CCFF' + - uid: 8315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4598 + color: '#990000FF' + - uid: 8316 components: - type: Transform rot: -1.5707963267948966 rad @@ -55001,7 +54388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4599 + - uid: 8317 components: - type: Transform rot: -1.5707963267948966 rad @@ -55009,7 +54396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4600 + - uid: 8318 components: - type: Transform rot: -1.5707963267948966 rad @@ -55017,132 +54404,132 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4601 + - uid: 8319 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4602 + color: '#0055CCFF' + - uid: 8320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4603 + color: '#0055CCFF' + - uid: 8321 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 4604 + - uid: 8322 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4605 + color: '#0055CCFF' + - uid: 8323 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4606 + color: '#0055CCFF' + - uid: 8324 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4607 + color: '#0055CCFF' + - uid: 8325 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4609 + color: '#0055CCFF' + - uid: 8326 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4610 + color: '#0055CCFF' + - uid: 8327 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4611 + color: '#0055CCFF' + - uid: 8328 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4613 + color: '#0055CCFF' + - uid: 8329 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4639 + color: '#0055CCFF' + - uid: 8330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4659 + color: '#990000FF' + - uid: 8331 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4660 + color: '#990000FF' + - uid: 8332 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4661 + color: '#990000FF' + - uid: 8333 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4663 + color: '#990000FF' + - uid: 8334 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4664 + color: '#990000FF' + - uid: 8335 components: - type: Transform anchored: False @@ -55154,111 +54541,103 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4665 + - uid: 8336 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4667 + color: '#990000FF' + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4669 + color: '#990000FF' + - uid: 8338 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4671 + color: '#990000FF' + - uid: 8339 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4708 + color: '#990000FF' + - uid: 8340 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4709 + color: '#0055CCFF' + - uid: 8341 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4740 + color: '#990000FF' + - uid: 8342 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4741 + color: '#0055CCFF' + - uid: 8343 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4743 + color: '#0055CCFF' + - uid: 8344 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4744 + color: '#0055CCFF' + - uid: 8345 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-194.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4746 + color: '#0055CCFF' + - uid: 8346 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4747 + color: '#0055CCFF' + - uid: 8347 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-212.5 + pos: 0.5,-220.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4749 + color: '#0055CCFF' + - uid: 8348 components: - type: Transform rot: -1.5707963267948966 rad @@ -55266,83 +54645,61 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4778 + - uid: 8349 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4779 + color: '#0055CCFF' + - uid: 8350 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4849 + color: '#990000FF' + - uid: 8351 components: - type: Transform pos: 17.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4896 + color: '#0055CCFF' + - uid: 8352 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4924 - components: - - type: Transform - pos: 1.5,-193.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4945 + color: '#0055CCFF' + - uid: 8353 components: - type: Transform pos: 0.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4947 - components: - - type: Transform - pos: 0.5,-167.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-210.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4983 + color: '#0055CCFF' + - uid: 8354 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4999 + color: '#0055CCFF' + - uid: 8355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5033 + color: '#990000FF' + - uid: 8356 components: - type: Transform rot: -1.5707963267948966 rad @@ -55350,7 +54707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5034 + - uid: 8357 components: - type: Transform rot: -1.5707963267948966 rad @@ -55358,7 +54715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5035 + - uid: 8358 components: - type: Transform rot: -1.5707963267948966 rad @@ -55366,371 +54723,331 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5038 + - uid: 8359 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5039 + color: '#0055CCFF' + - uid: 8360 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5044 + color: '#0055CCFF' + - uid: 8361 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5045 + color: '#0055CCFF' + - uid: 8362 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5046 + color: '#0055CCFF' + - uid: 8363 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5047 + color: '#0055CCFF' + - uid: 8364 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5048 + color: '#0055CCFF' + - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-227.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-228.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5051 + color: '#0055CCFF' + - uid: 8366 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5053 + color: '#0055CCFF' + - uid: 8367 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5054 + color: '#0055CCFF' + - uid: 8368 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5055 + color: '#0055CCFF' + - uid: 8369 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5056 + color: '#0055CCFF' + - uid: 8370 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5058 + color: '#0055CCFF' + - uid: 8371 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-237.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5060 + color: '#0055CCFF' + - uid: 8372 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-239.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5062 + color: '#0055CCFF' + - uid: 8373 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5064 + color: '#0055CCFF' + - uid: 8374 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5074 + color: '#0055CCFF' + - uid: 8375 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5075 + color: '#0055CCFF' + - uid: 8376 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5076 + color: '#0055CCFF' + - uid: 8377 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5078 + color: '#0055CCFF' + - uid: 8378 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-190.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5090 + color: '#990000FF' + - uid: 8379 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5091 + color: '#0055CCFF' + - uid: 8380 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5098 + color: '#0055CCFF' + - uid: 8381 components: - type: Transform pos: -4.5,-199.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5099 + - uid: 8382 components: - type: Transform pos: -4.5,-198.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5104 + - uid: 8383 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5105 + color: '#0055CCFF' + - uid: 8384 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5106 + color: '#0055CCFF' + - uid: 8385 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5109 + color: '#0055CCFF' + - uid: 8386 components: - type: Transform pos: 17.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5113 + color: '#0055CCFF' + - uid: 8387 components: - type: Transform pos: -4.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + color: '#0055CCFF' + - uid: 8388 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + color: '#0055CCFF' + - uid: 8389 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5116 + color: '#0055CCFF' + - uid: 8390 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5117 + color: '#0055CCFF' + - uid: 8391 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + color: '#0055CCFF' + - uid: 8392 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5139 + color: '#0055CCFF' + - uid: 8393 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5141 + color: '#0055CCFF' + - uid: 8394 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5142 + color: '#0055CCFF' + - uid: 8395 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5143 + color: '#0055CCFF' + - uid: 8396 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5145 + color: '#0055CCFF' + - uid: 8397 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5146 + color: '#0055CCFF' + - uid: 8398 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5147 + color: '#0055CCFF' + - uid: 8399 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5166 + color: '#0055CCFF' + - uid: 8400 components: - type: Transform rot: -1.5707963267948966 rad @@ -55738,15 +55055,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5167 + - uid: 8401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5168 + color: '#990000FF' + - uid: 8402 components: - type: Transform rot: -1.5707963267948966 rad @@ -55754,7 +55071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5169 + - uid: 8403 components: - type: Transform rot: -1.5707963267948966 rad @@ -55762,7 +55079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5191 + - uid: 8404 components: - type: Transform rot: -1.5707963267948966 rad @@ -55770,7 +55087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5192 + - uid: 8405 components: - type: Transform rot: -1.5707963267948966 rad @@ -55778,7 +55095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5193 + - uid: 8406 components: - type: Transform rot: -1.5707963267948966 rad @@ -55786,383 +55103,343 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5195 + - uid: 8407 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5196 + color: '#990000FF' + - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5197 + color: '#990000FF' + - uid: 8409 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-229.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5248 + color: '#990000FF' + - uid: 8410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5250 + color: '#990000FF' + - uid: 8411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-177.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5254 + color: '#990000FF' + - uid: 8412 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5255 + color: '#0055CCFF' + - uid: 8413 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5257 + color: '#0055CCFF' + - uid: 8414 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5258 + color: '#0055CCFF' + - uid: 8415 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5264 + color: '#0055CCFF' + - uid: 8416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5265 + color: '#990000FF' + - uid: 8417 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5266 + color: '#990000FF' + - uid: 8418 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5267 + color: '#990000FF' + - uid: 8419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5268 + color: '#990000FF' + - uid: 8420 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5269 + color: '#990000FF' + - uid: 8421 components: - type: Transform pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5270 + color: '#990000FF' + - uid: 8422 components: - type: Transform pos: 1.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5271 + color: '#990000FF' + - uid: 8423 components: - type: Transform pos: 1.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5272 + color: '#990000FF' + - uid: 8424 components: - type: Transform pos: 1.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5273 + color: '#990000FF' + - uid: 8425 components: - type: Transform pos: 1.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5285 + color: '#990000FF' + - uid: 8426 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5286 + color: '#0055CCFF' + - uid: 8427 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5287 + color: '#0055CCFF' + - uid: 8428 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5292 + color: '#0055CCFF' + - uid: 8429 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5297 + color: '#0055CCFF' + - uid: 8430 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5298 + color: '#0055CCFF' + - uid: 8431 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5299 + color: '#0055CCFF' + - uid: 8432 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5305 + color: '#990000FF' + - uid: 8433 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5306 + color: '#0055CCFF' + - uid: 8434 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5308 + color: '#0055CCFF' + - uid: 8435 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5309 + color: '#990000FF' + - uid: 8436 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5310 + color: '#990000FF' + - uid: 8437 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5314 + color: '#990000FF' + - uid: 8438 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5316 + color: '#0055CCFF' + - uid: 8439 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5336 + color: '#0055CCFF' + - uid: 8440 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5339 + color: '#990000FF' + - uid: 8441 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-260.5 parent: 2 - - uid: 5341 + - uid: 8442 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5342 + color: '#990000FF' + - uid: 8443 components: - type: Transform pos: 4.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5368 + color: '#990000FF' + - uid: 8444 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5369 + color: '#990000FF' + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5370 + color: '#990000FF' + - uid: 8446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5371 + color: '#990000FF' + - uid: 8447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5372 + color: '#990000FF' + - uid: 8448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5373 + color: '#990000FF' + - uid: 8449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5374 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad @@ -56170,7 +55447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5375 + - uid: 8451 components: - type: Transform rot: 3.141592653589793 rad @@ -56178,7 +55455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5376 + - uid: 8452 components: - type: Transform rot: 3.141592653589793 rad @@ -56186,7 +55463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5377 + - uid: 8453 components: - type: Transform rot: 3.141592653589793 rad @@ -56194,7 +55471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5378 + - uid: 8454 components: - type: Transform rot: 3.141592653589793 rad @@ -56202,1228 +55479,1146 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5401 + - uid: 8455 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5418 + color: '#0055CCFF' + - uid: 8456 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-249.5 parent: 2 - - uid: 5486 + - uid: 8457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5662 + color: '#990000FF' + - uid: 8458 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-244.5 parent: 2 - - uid: 6046 + - uid: 8459 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-245.5 parent: 2 - - uid: 6061 + - uid: 8460 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-245.5 parent: 2 - - uid: 6255 + - uid: 8461 components: - type: Transform pos: -15.5,-244.5 parent: 2 - - uid: 6389 + - uid: 8462 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-114.5 parent: 2 - - uid: 6677 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-366.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8464 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6696 + color: '#0055CCFF' + - uid: 8465 components: - type: Transform pos: 0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6698 + color: '#0055CCFF' + - uid: 8466 components: - type: Transform pos: 0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6700 + color: '#0055CCFF' + - uid: 8467 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6702 + color: '#0055CCFF' + - uid: 8468 components: - type: Transform pos: 0.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6705 + color: '#0055CCFF' + - uid: 8469 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6708 + color: '#0055CCFF' + - uid: 8470 components: - type: Transform pos: 0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6709 + color: '#0055CCFF' + - uid: 8471 components: - type: Transform pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6710 + color: '#0055CCFF' + - uid: 8472 components: - type: Transform pos: 16.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6715 + color: '#990000FF' + - uid: 8473 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6716 + color: '#0055CCFF' + - uid: 8474 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6717 + color: '#990000FF' + - uid: 8475 components: - type: Transform pos: 0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6718 + color: '#0055CCFF' + - uid: 8476 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6724 + color: '#990000FF' + - uid: 8477 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-256.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6729 + color: '#990000FF' + - uid: 8478 components: - type: Transform pos: -0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6730 - components: - - type: Transform - pos: 0.5,-253.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6742 + color: '#990000FF' + - uid: 8479 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6744 + color: '#990000FF' + - uid: 8480 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6800 + color: '#990000FF' + - uid: 8481 components: - type: Transform pos: -9.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6812 + color: '#990000FF' + - uid: 8482 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6820 + color: '#990000FF' + - uid: 8483 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6824 - components: - - type: Transform - pos: -0.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6825 + color: '#990000FF' + - uid: 8484 components: - type: Transform pos: -0.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 + color: '#990000FF' + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6830 + color: '#990000FF' + - uid: 8486 components: - type: Transform pos: -0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6832 + color: '#990000FF' + - uid: 8487 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6835 + color: '#990000FF' + - uid: 8488 components: - type: Transform pos: 0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6838 + color: '#0055CCFF' + - uid: 8489 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6839 + color: '#0055CCFF' + - uid: 8490 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-248.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6844 + color: '#0055CCFF' + - uid: 8491 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6846 + color: '#0055CCFF' + - uid: 8492 components: - type: Transform pos: 16.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6847 + color: '#990000FF' + - uid: 8493 components: - type: Transform pos: 16.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6848 + color: '#990000FF' + - uid: 8494 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6849 + color: '#0055CCFF' + - uid: 8495 components: - type: Transform pos: 0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6850 + color: '#0055CCFF' + - uid: 8496 components: - type: Transform pos: 0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6851 + color: '#0055CCFF' + - uid: 8497 components: - type: Transform pos: 0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6854 + color: '#0055CCFF' + - uid: 8498 components: - type: Transform pos: 16.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6859 + color: '#990000FF' + - uid: 8499 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6860 + color: '#990000FF' + - uid: 8500 components: - type: Transform pos: 15.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6890 + color: '#0055CCFF' + - uid: 8501 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 6891 + - uid: 8502 components: - type: Transform pos: -9.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6910 + color: '#990000FF' + - uid: 8503 components: - type: Transform pos: -9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7203 + color: '#990000FF' + - uid: 8505 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7213 + color: '#0055CCFF' + - uid: 8506 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-245.5 parent: 2 - - uid: 7239 + - uid: 8507 components: - type: Transform pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7361 + color: '#990000FF' + - uid: 8508 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7376 + color: '#990000FF' + - uid: 8509 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7417 + color: '#0055CCFF' + - uid: 8510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7429 + color: '#990000FF' + - uid: 8511 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 7442 + - uid: 8512 components: - type: Transform pos: 17.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 + color: '#0055CCFF' + - uid: 8513 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7460 + color: '#990000FF' + - uid: 8514 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7482 + color: '#990000FF' + - uid: 8515 components: - type: Transform pos: 0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7491 + color: '#0055CCFF' + - uid: 8516 components: - type: Transform pos: 4.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7493 + color: '#990000FF' + - uid: 8517 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7495 + color: '#990000FF' + - uid: 8518 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7501 + color: '#0055CCFF' + - uid: 8519 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7502 - components: - - type: Transform - pos: 0.5,-264.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7559 + color: '#0055CCFF' + - uid: 8520 components: - type: Transform pos: 15.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7561 + color: '#0055CCFF' + - uid: 8521 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7564 + color: '#990000FF' + - uid: 8522 components: - type: Transform pos: 16.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7565 + color: '#990000FF' + - uid: 8523 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7567 + color: '#990000FF' + - uid: 8524 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7571 + color: '#0055CCFF' + - uid: 8525 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7573 + color: '#0055CCFF' + - uid: 8526 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7574 + color: '#0055CCFF' + - uid: 8527 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 + color: '#0055CCFF' + - uid: 8528 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7582 + color: '#0055CCFF' + - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7768 + color: '#0055CCFF' + - uid: 8530 components: - type: Transform pos: 0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7774 + color: '#0055CCFF' + - uid: 8531 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7816 + color: '#0055CCFF' + - uid: 8532 components: - type: Transform pos: 15.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7819 + color: '#0055CCFF' + - uid: 8533 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 + color: '#990000FF' + - uid: 8534 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7826 + color: '#0055CCFF' + - uid: 8535 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7845 + color: '#0055CCFF' + - uid: 8536 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7849 + color: '#0055CCFF' + - uid: 8537 components: - type: Transform pos: -9.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7854 + color: '#990000FF' + - uid: 8538 components: - type: Transform pos: -9.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7856 + color: '#990000FF' + - uid: 8539 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7870 + color: '#990000FF' + - uid: 8540 components: - type: Transform pos: -9.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7872 + color: '#990000FF' + - uid: 8541 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7887 + color: '#990000FF' + - uid: 8542 components: - type: Transform pos: 5.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7907 + color: '#0055CCFF' + - uid: 8543 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 7911 + - uid: 8544 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7944 + color: '#990000FF' + - uid: 8545 components: - type: Transform pos: -15.5,-246.5 parent: 2 - - uid: 7947 + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 7949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7952 + - uid: 8548 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-245.5 parent: 2 - - uid: 8010 + - uid: 8549 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8013 + color: '#0055CCFF' + - uid: 8550 components: - type: Transform pos: 16.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8014 + color: '#990000FF' + - uid: 8551 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8015 + color: '#0055CCFF' + - uid: 8552 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8016 + color: '#990000FF' + - uid: 8553 components: - type: Transform pos: 17.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8027 + color: '#0055CCFF' + - uid: 8554 components: - type: Transform pos: 16.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8029 + color: '#990000FF' + - uid: 8555 components: - type: Transform pos: -0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8031 + color: '#990000FF' + - uid: 8556 components: - type: Transform pos: -0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8032 + color: '#990000FF' + - uid: 8557 components: - type: Transform pos: -0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8035 + color: '#990000FF' + - uid: 8558 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8039 + color: '#990000FF' + - uid: 8559 components: - type: Transform pos: 4.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8040 + color: '#990000FF' + - uid: 8560 components: - type: Transform pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8042 + color: '#990000FF' + - uid: 8561 components: - type: Transform pos: 4.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8043 + color: '#990000FF' + - uid: 8562 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8044 + color: '#990000FF' + - uid: 8563 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8046 + color: '#990000FF' + - uid: 8564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8060 - components: - - type: Transform - pos: 15.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8061 + color: '#990000FF' + - uid: 8565 components: - type: Transform pos: 15.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8062 + color: '#0055CCFF' + - uid: 8566 components: - type: Transform pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8067 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8068 + color: '#0055CCFF' + - uid: 8568 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8069 + color: '#0055CCFF' + - uid: 8569 components: - type: Transform pos: -0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8077 + color: '#990000FF' + - uid: 8570 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8079 + color: '#0055CCFF' + - uid: 8571 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8082 + color: '#990000FF' + - uid: 8572 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8084 + color: '#990000FF' + - uid: 8573 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8085 + color: '#0055CCFF' + - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8087 + color: '#990000FF' + - uid: 8575 components: - type: Transform pos: 15.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8088 + color: '#0055CCFF' + - uid: 8576 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8099 + color: '#990000FF' + - uid: 8577 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8126 + color: '#0055CCFF' + - uid: 8578 components: - type: Transform pos: 1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8148 + color: '#990000FF' + - uid: 8579 components: - type: Transform pos: -19.5,-245.5 parent: 2 - - uid: 8160 + - uid: 8580 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8161 + color: '#990000FF' + - uid: 8581 components: - type: Transform pos: -0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8162 + color: '#990000FF' + - uid: 8582 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8164 + color: '#0055CCFF' + - uid: 8583 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8181 + color: '#990000FF' + - uid: 8584 components: - type: Transform pos: 15.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8189 + color: '#0055CCFF' + - uid: 8585 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8190 + color: '#990000FF' + - uid: 8586 components: - type: Transform pos: 15.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8207 + color: '#0055CCFF' + - uid: 8587 components: - type: Transform pos: 15.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8210 + color: '#0055CCFF' + - uid: 8588 components: - type: Transform pos: -17.5,-261.5 parent: 2 - - uid: 8212 + - uid: 8589 components: - type: Transform pos: -0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-257.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8249 + color: '#990000FF' + - uid: 8590 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8250 + color: '#990000FF' + - uid: 8591 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8375 + color: '#990000FF' + - uid: 8592 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8419 + color: '#0055CCFF' + - uid: 8593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8487 + color: '#0055CCFF' + - uid: 8594 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8643 + color: '#990000FF' + - uid: 8595 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8747 + color: '#0055CCFF' + - uid: 8596 components: - type: Transform pos: 0.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8783 + color: '#0055CCFF' + - uid: 8597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-266.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8853 + color: '#990000FF' + - uid: 8598 components: - type: Transform pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8858 + color: '#990000FF' + - uid: 8599 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8861 + color: '#0055CCFF' + - uid: 8600 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8862 + color: '#0055CCFF' + - uid: 8601 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8872 + color: '#0055CCFF' + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8875 + color: '#0055CCFF' + - uid: 8603 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8884 + color: '#0055CCFF' + - uid: 8604 components: - type: Transform pos: 1.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8886 + color: '#990000FF' + - uid: 8605 components: - type: Transform pos: 1.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8887 + color: '#990000FF' + - uid: 8606 components: - type: Transform pos: 0.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8893 + color: '#0055CCFF' + - uid: 8607 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8899 + color: '#0055CCFF' + - uid: 8608 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-252.5 parent: 2 - - uid: 8903 + - uid: 8609 components: - type: Transform pos: 16.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8909 + color: '#990000FF' + - uid: 8610 components: - type: Transform pos: 16.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8922 + color: '#990000FF' + - uid: 8611 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-254.5 parent: 2 - - uid: 8967 + - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad @@ -57431,231 +56626,229 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 9477 + - uid: 8613 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 parent: 2 - - uid: 9847 - components: + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8614 + components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9848 + color: '#0055CCFF' + - uid: 8615 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10012 + color: '#0055CCFF' + - uid: 8616 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10082 + color: '#0055CCFF' + - uid: 8617 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 10087 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8618 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-114.5 parent: 2 - - uid: 10571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-345.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10711 + color: '#990000FF' + - uid: 8619 components: - type: Transform pos: 6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10714 + color: '#990000FF' + - uid: 8620 components: - type: Transform pos: 6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10715 + color: '#990000FF' + - uid: 8621 components: - type: Transform pos: 6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10756 + color: '#990000FF' + - uid: 8622 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10760 + color: '#0055CCFF' + - uid: 8623 components: - type: Transform pos: -17.5,-262.5 parent: 2 - - uid: 10800 + - uid: 8624 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10963 + color: '#0055CCFF' + - uid: 8625 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10971 + color: '#0055CCFF' + - uid: 8626 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10996 + color: '#0055CCFF' + - uid: 8627 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 + color: '#0055CCFF' + - uid: 8628 components: - type: Transform pos: 0.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11187 + color: '#0055CCFF' + - uid: 8629 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11222 + color: '#0055CCFF' + - uid: 8630 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11425 + color: '#990000FF' + - uid: 8631 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11433 + color: '#0055CCFF' + - uid: 8632 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11550 + color: '#0055CCFF' + - uid: 8633 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11551 + color: '#0055CCFF' + - uid: 8634 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-250.5 parent: 2 - - uid: 11885 + - uid: 8635 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11888 + color: '#0055CCFF' + - uid: 8636 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 11889 + - uid: 8637 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 11890 + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 11891 + - uid: 8639 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 11938 + - uid: 8640 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-256.5 parent: 2 - - uid: 11939 + - uid: 8641 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 11946 + - uid: 8642 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 12031 + - uid: 8643 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-261.5 parent: 2 - - uid: 12052 + - uid: 8644 components: - type: Transform rot: -1.5707963267948966 rad @@ -57663,752 +56856,681 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12135 + - uid: 8645 components: - type: Transform pos: 1.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12141 + color: '#990000FF' + - uid: 8646 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12234 + color: '#0055CCFF' + - uid: 8647 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12235 + color: '#990000FF' + - uid: 8648 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12238 + color: '#990000FF' + - uid: 8649 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12248 + color: '#990000FF' + - uid: 8650 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-274.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12252 + color: '#0055CCFF' + - uid: 8651 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12253 + color: '#0055CCFF' + - uid: 8652 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12255 + color: '#0055CCFF' + - uid: 8653 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12256 + color: '#0055CCFF' + - uid: 8654 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12257 + color: '#0055CCFF' + - uid: 8655 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12258 + color: '#0055CCFF' + - uid: 8656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12259 + color: '#0055CCFF' + - uid: 8657 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12260 + color: '#0055CCFF' + - uid: 8658 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12262 + color: '#0055CCFF' + - uid: 8659 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-286.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12265 + color: '#0055CCFF' + - uid: 8660 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12267 + color: '#0055CCFF' + - uid: 8661 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-291.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12269 + color: '#0055CCFF' + - uid: 8662 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-293.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12271 + color: '#0055CCFF' + - uid: 8663 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12272 + color: '#0055CCFF' + - uid: 8664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12274 + color: '#990000FF' + - uid: 8665 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12277 + color: '#0055CCFF' + - uid: 8666 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12278 + color: '#990000FF' + - uid: 8667 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12279 + color: '#990000FF' + - uid: 8668 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12280 + color: '#990000FF' + - uid: 8669 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12281 + color: '#990000FF' + - uid: 8670 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12283 + color: '#990000FF' + - uid: 8671 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12284 + color: '#990000FF' + - uid: 8672 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12285 + color: '#990000FF' + - uid: 8673 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12286 + color: '#990000FF' + - uid: 8674 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12288 + color: '#990000FF' + - uid: 8675 components: - type: Transform pos: -5.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12289 + color: '#990000FF' + - uid: 8676 components: - type: Transform pos: -5.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12290 + color: '#990000FF' + - uid: 8677 components: - type: Transform pos: -5.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12291 + color: '#990000FF' + - uid: 8678 components: - type: Transform pos: -5.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12292 + color: '#990000FF' + - uid: 8679 components: - type: Transform pos: -5.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12293 + color: '#990000FF' + - uid: 8680 components: - type: Transform pos: -5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12294 + color: '#990000FF' + - uid: 8681 components: - type: Transform pos: -5.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12295 + color: '#990000FF' + - uid: 8682 components: - type: Transform pos: -5.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12299 + color: '#990000FF' + - uid: 8683 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12300 + color: '#0055CCFF' + - uid: 8684 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12301 + color: '#0055CCFF' + - uid: 8685 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12302 + color: '#0055CCFF' + - uid: 8686 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12303 + color: '#0055CCFF' + - uid: 8687 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12304 + color: '#0055CCFF' + - uid: 8688 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12307 + color: '#0055CCFF' + - uid: 8689 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12308 + color: '#990000FF' + - uid: 8690 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12309 + color: '#990000FF' + - uid: 8691 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12310 + color: '#990000FF' + - uid: 8692 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12311 + color: '#990000FF' + - uid: 8693 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12312 + color: '#990000FF' + - uid: 8694 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12313 + color: '#990000FF' + - uid: 8695 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12314 + color: '#990000FF' + - uid: 8696 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12315 + color: '#990000FF' + - uid: 8697 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-272.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12318 + color: '#990000FF' + - uid: 8698 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12319 + color: '#990000FF' + - uid: 8699 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12321 + color: '#990000FF' + - uid: 8700 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12323 + color: '#990000FF' + - uid: 8701 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12327 + color: '#0055CCFF' + - uid: 8702 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12328 + color: '#0055CCFF' + - uid: 8703 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12329 + color: '#0055CCFF' + - uid: 8704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12330 + color: '#0055CCFF' + - uid: 8705 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12337 + color: '#0055CCFF' + - uid: 8706 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12344 + color: '#0055CCFF' + - uid: 8707 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12346 + color: '#0055CCFF' + - uid: 8708 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12347 + color: '#0055CCFF' + - uid: 8709 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12348 + color: '#0055CCFF' + - uid: 8710 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12350 + color: '#0055CCFF' + - uid: 8711 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12351 + color: '#990000FF' + - uid: 8712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-285.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12353 + color: '#990000FF' + - uid: 8713 components: - type: Transform pos: -0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12354 + color: '#990000FF' + - uid: 8714 components: - type: Transform pos: -0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12357 + color: '#990000FF' + - uid: 8715 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12358 + color: '#0055CCFF' + - uid: 8716 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12359 + color: '#0055CCFF' + - uid: 8717 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12360 + color: '#0055CCFF' + - uid: 8718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12361 + color: '#0055CCFF' + - uid: 8719 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12365 + color: '#0055CCFF' + - uid: 8720 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12366 + color: '#0055CCFF' + - uid: 8721 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12370 + color: '#0055CCFF' + - uid: 8722 components: - type: Transform pos: 1.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12377 + color: '#990000FF' + - uid: 8723 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12378 + color: '#0055CCFF' + - uid: 8724 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-297.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12380 + color: '#990000FF' + - uid: 8725 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12384 + color: '#0055CCFF' + - uid: 8726 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12392 + color: '#0055CCFF' + - uid: 8727 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12396 + color: '#990000FF' + - uid: 8728 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12401 + color: '#990000FF' + - uid: 8729 components: - type: Transform pos: 0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12402 + color: '#0055CCFF' + - uid: 8730 components: - type: Transform pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12403 - components: - - type: Transform - pos: 0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12406 + color: '#0055CCFF' + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad @@ -58416,7 +57538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12407 + - uid: 8732 components: - type: Transform rot: 1.5707963267948966 rad @@ -58424,2550 +57546,2421 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12414 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-315.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12418 + color: '#0055CCFF' + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12419 + color: '#0055CCFF' + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12420 + color: '#0055CCFF' + - uid: 8736 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12421 + color: '#990000FF' + - uid: 8737 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12424 + color: '#990000FF' + - uid: 8738 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12425 + color: '#0055CCFF' + - uid: 8739 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12426 + color: '#990000FF' + - uid: 8740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12427 + color: '#0055CCFF' + - uid: 8741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12431 + color: '#0055CCFF' + - uid: 8742 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12436 + color: '#990000FF' + - uid: 8743 + components: + - type: Transform + pos: -0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8744 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12437 + color: '#990000FF' + - uid: 8745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12438 + color: '#990000FF' + - uid: 8746 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12443 + color: '#990000FF' + - uid: 8747 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12445 + color: '#990000FF' + - uid: 8748 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12446 + color: '#990000FF' + - uid: 8749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12447 + color: '#990000FF' + - uid: 8750 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12448 + color: '#990000FF' + - uid: 8751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12449 + color: '#0055CCFF' + - uid: 8752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12450 + color: '#0055CCFF' + - uid: 8753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12451 + color: '#0055CCFF' + - uid: 8754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12452 + color: '#0055CCFF' + - uid: 8755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12454 + color: '#0055CCFF' + - uid: 8756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12455 + color: '#0055CCFF' + - uid: 8757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12456 + color: '#0055CCFF' + - uid: 8758 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12457 + color: '#990000FF' + - uid: 8759 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12458 + color: '#990000FF' + - uid: 8760 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12459 + color: '#990000FF' + - uid: 8761 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12461 + color: '#990000FF' + - uid: 8762 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12462 + color: '#990000FF' + - uid: 8763 components: - type: Transform pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12463 + color: '#990000FF' + - uid: 8764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12464 + color: '#0055CCFF' + - uid: 8765 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12465 + color: '#0055CCFF' + - uid: 8766 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12466 + color: '#0055CCFF' + - uid: 8767 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12467 + color: '#0055CCFF' + - uid: 8768 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12468 + color: '#0055CCFF' + - uid: 8769 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12477 + color: '#0055CCFF' + - uid: 8770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12478 + color: '#0055CCFF' + - uid: 8771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12479 + color: '#990000FF' + - uid: 8772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12480 + color: '#990000FF' + - uid: 8773 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12481 + color: '#990000FF' + - uid: 8774 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12482 + color: '#0055CCFF' + - uid: 8775 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12483 + color: '#0055CCFF' + - uid: 8776 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12484 + color: '#990000FF' + - uid: 8777 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12485 + color: '#990000FF' + - uid: 8778 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12487 + color: '#990000FF' + - uid: 8779 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12488 + color: '#0055CCFF' + - uid: 8780 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12492 + color: '#0055CCFF' + - uid: 8781 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12493 + color: '#0055CCFF' + - uid: 8782 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12497 + color: '#990000FF' + - uid: 8783 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12499 + color: '#990000FF' + - uid: 8784 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12505 + color: '#990000FF' + - uid: 8785 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12506 + color: '#0055CCFF' + - uid: 8786 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12511 + color: '#990000FF' + - uid: 8787 components: - type: Transform pos: -0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12512 + color: '#990000FF' + - uid: 8788 components: - type: Transform pos: -0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12513 + color: '#990000FF' + - uid: 8789 components: - type: Transform pos: 0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12519 + color: '#0055CCFF' + - uid: 8790 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-319.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12526 + color: '#990000FF' + - uid: 8791 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12527 + color: '#990000FF' + - uid: 8792 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12533 + color: '#990000FF' + - uid: 8793 components: - type: Transform pos: 10.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12534 + color: '#0055CCFF' + - uid: 8794 components: - type: Transform pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12536 + color: '#0055CCFF' + - uid: 8795 components: - type: Transform pos: 10.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12537 + color: '#0055CCFF' + - uid: 8796 components: - type: Transform pos: 10.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12547 + color: '#0055CCFF' + - uid: 8797 components: - type: Transform pos: 7.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12548 + color: '#0055CCFF' + - uid: 8798 components: - type: Transform pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12549 + color: '#0055CCFF' + - uid: 8799 components: - type: Transform pos: 7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12551 + color: '#0055CCFF' + - uid: 8800 components: - type: Transform pos: 8.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12552 + color: '#990000FF' + - uid: 8801 components: - type: Transform pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12553 + color: '#990000FF' + - uid: 8802 components: - type: Transform pos: 8.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12555 + color: '#990000FF' + - uid: 8803 components: - type: Transform pos: 8.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12556 + color: '#990000FF' + - uid: 8804 components: - type: Transform pos: 8.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12557 + color: '#990000FF' + - uid: 8805 components: - type: Transform pos: 8.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12559 + color: '#990000FF' + - uid: 8806 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12561 + color: '#990000FF' + - uid: 8807 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12574 + color: '#0055CCFF' + - uid: 8808 components: - type: Transform pos: -0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12575 + color: '#990000FF' + - uid: 8809 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12583 + color: '#0055CCFF' + - uid: 8810 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12584 + color: '#0055CCFF' + - uid: 8811 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12586 + color: '#990000FF' + - uid: 8812 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12589 + color: '#0055CCFF' + - uid: 8813 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12590 + color: '#0055CCFF' + - uid: 8814 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12591 + color: '#990000FF' + - uid: 8815 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12592 + color: '#990000FF' + - uid: 8816 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12593 + color: '#0055CCFF' + - uid: 8817 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12594 + color: '#0055CCFF' + - uid: 8818 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12595 + color: '#0055CCFF' + - uid: 8819 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12596 + color: '#0055CCFF' + - uid: 8820 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12600 + color: '#0055CCFF' + - uid: 8821 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12601 + color: '#990000FF' + - uid: 8822 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12616 + color: '#990000FF' + - uid: 8823 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12617 + color: '#990000FF' + - uid: 8824 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12619 + color: '#990000FF' + - uid: 8825 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12620 + color: '#990000FF' + - uid: 8826 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12622 + color: '#990000FF' + - uid: 8827 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12642 + color: '#990000FF' + - uid: 8828 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12643 - components: - - type: Transform - pos: 0.5,-323.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12644 + color: '#0055CCFF' + - uid: 8829 components: - type: Transform pos: 0.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12645 - components: - - type: Transform - pos: 0.5,-325.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12646 - components: - - type: Transform - pos: 0.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12647 + color: '#0055CCFF' + - uid: 8830 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12656 + color: '#0055CCFF' + - uid: 8831 components: - type: Transform pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12657 - components: - - type: Transform - pos: 1.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12715 + color: '#990000FF' + - uid: 8832 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12716 + color: '#0055CCFF' + - uid: 8833 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12717 + color: '#0055CCFF' + - uid: 8834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12719 + color: '#0055CCFF' + - uid: 8835 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12723 + color: '#990000FF' + - uid: 8836 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12724 + color: '#990000FF' + - uid: 8837 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12725 + color: '#990000FF' + - uid: 8838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12726 + color: '#990000FF' + - uid: 8839 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12727 + color: '#990000FF' + - uid: 8840 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12728 + color: '#990000FF' + - uid: 8841 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12729 + color: '#990000FF' + - uid: 8842 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12730 + color: '#990000FF' + - uid: 8843 components: - type: Transform pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12732 + color: '#0055CCFF' + - uid: 8844 components: - type: Transform pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12733 + color: '#0055CCFF' + - uid: 8845 components: - type: Transform pos: 0.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12734 + color: '#0055CCFF' + - uid: 8846 components: - type: Transform pos: 0.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12735 + color: '#0055CCFF' + - uid: 8847 components: - type: Transform pos: 0.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12736 + color: '#0055CCFF' + - uid: 8848 components: - type: Transform pos: 0.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12737 + color: '#0055CCFF' + - uid: 8849 components: - type: Transform pos: 0.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12738 + color: '#0055CCFF' + - uid: 8850 components: - type: Transform pos: 0.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12739 + color: '#0055CCFF' + - uid: 8851 components: - type: Transform pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12740 + color: '#0055CCFF' + - uid: 8852 components: - type: Transform pos: 0.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12741 - components: - - type: Transform - pos: 0.5,-342.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12742 + color: '#0055CCFF' + - uid: 8853 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12743 - components: - - type: Transform - pos: 0.5,-344.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12744 + color: '#0055CCFF' + - uid: 8854 components: - type: Transform pos: 0.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12745 + color: '#0055CCFF' + - uid: 8855 components: - type: Transform pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12747 + color: '#0055CCFF' + - uid: 8856 components: - type: Transform pos: 0.5,-349.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12748 + color: '#0055CCFF' + - uid: 8857 components: - type: Transform pos: 0.5,-350.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12749 + color: '#0055CCFF' + - uid: 8858 components: - type: Transform pos: 0.5,-351.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12750 + color: '#0055CCFF' + - uid: 8859 components: - type: Transform pos: 0.5,-352.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12751 + color: '#0055CCFF' + - uid: 8860 components: - type: Transform pos: 0.5,-353.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12753 + color: '#0055CCFF' + - uid: 8861 components: - type: Transform pos: 0.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12756 + color: '#0055CCFF' + - uid: 8862 components: - type: Transform pos: 1.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12757 + color: '#990000FF' + - uid: 8863 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12758 + color: '#990000FF' + - uid: 8864 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12759 + color: '#990000FF' + - uid: 8865 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12760 + color: '#990000FF' + - uid: 8866 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12761 + color: '#990000FF' + - uid: 8867 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12762 + color: '#990000FF' + - uid: 8868 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12763 + color: '#990000FF' + - uid: 8869 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12764 + color: '#990000FF' + - uid: 8870 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12765 + color: '#990000FF' + - uid: 8871 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12766 + color: '#990000FF' + - uid: 8872 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12767 + color: '#990000FF' + - uid: 8873 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12769 + color: '#990000FF' + - uid: 8874 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12770 + color: '#990000FF' + - uid: 8875 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12778 + color: '#990000FF' + - uid: 8876 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#990000FF' + - uid: 8877 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12780 + color: '#990000FF' + - uid: 8878 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12781 + color: '#990000FF' + - uid: 8879 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12783 + color: '#990000FF' + - uid: 8880 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12784 + color: '#990000FF' + - uid: 8881 components: - type: Transform pos: 1.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12785 + color: '#990000FF' + - uid: 8882 components: - type: Transform pos: 1.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12786 + color: '#990000FF' + - uid: 8883 components: - type: Transform pos: 1.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12787 + color: '#990000FF' + - uid: 8884 components: - type: Transform pos: 1.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12788 + color: '#990000FF' + - uid: 8885 components: - type: Transform pos: 1.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12789 + color: '#990000FF' + - uid: 8886 components: - type: Transform pos: 1.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12790 + color: '#990000FF' + - uid: 8887 components: - type: Transform pos: -4.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12791 + color: '#990000FF' + - uid: 8888 components: - type: Transform pos: -4.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12792 + color: '#990000FF' + - uid: 8889 components: - type: Transform pos: -4.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12793 + color: '#990000FF' + - uid: 8890 components: - type: Transform pos: -4.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12794 + color: '#990000FF' + - uid: 8891 components: - type: Transform pos: -4.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12795 + color: '#990000FF' + - uid: 8892 components: - type: Transform pos: -4.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12799 + color: '#990000FF' + - uid: 8893 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12800 + color: '#990000FF' + - uid: 8894 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12802 + color: '#990000FF' + - uid: 8895 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#990000FF' + - uid: 8896 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 + color: '#990000FF' + - uid: 8897 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12805 + color: '#990000FF' + - uid: 8898 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-345.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12809 + color: '#990000FF' + - uid: 8899 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12810 + color: '#990000FF' + - uid: 8900 components: - type: Transform pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12814 + color: '#990000FF' + - uid: 8901 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12815 + color: '#990000FF' + - uid: 8902 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12816 + color: '#990000FF' + - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12826 + color: '#990000FF' + - uid: 8904 components: - type: Transform pos: 6.5,-15.5 parent: 2 - - uid: 12827 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8905 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12828 + color: '#990000FF' + - uid: 8906 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12829 + color: '#990000FF' + - uid: 8907 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12830 + color: '#990000FF' + - uid: 8908 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12832 + color: '#990000FF' + - uid: 8909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-344.5 + pos: 1.5,-167.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12833 + color: '#990000FF' + - uid: 8910 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12834 + color: '#0055CCFF' + - uid: 8911 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12835 + color: '#0055CCFF' + - uid: 8912 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12836 + color: '#0055CCFF' + - uid: 8913 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12839 + color: '#0055CCFF' + - uid: 8914 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12840 + color: '#0055CCFF' + - uid: 8915 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12845 + color: '#0055CCFF' + - uid: 8916 components: - type: Transform pos: -6.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12846 + color: '#0055CCFF' + - uid: 8917 components: - type: Transform pos: -6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12847 + color: '#0055CCFF' + - uid: 8918 components: - type: Transform pos: -6.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12848 + color: '#0055CCFF' + - uid: 8919 components: - type: Transform pos: -6.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12849 + color: '#0055CCFF' + - uid: 8920 components: - type: Transform pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12850 + color: '#0055CCFF' + - uid: 8921 components: - type: Transform pos: 7.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12851 + color: '#0055CCFF' + - uid: 8922 components: - type: Transform pos: 7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12852 + color: '#0055CCFF' + - uid: 8923 components: - type: Transform pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12853 + color: '#0055CCFF' + - uid: 8924 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12856 + color: '#0055CCFF' + - uid: 8925 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12857 + color: '#0055CCFF' + - uid: 8926 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12858 + color: '#0055CCFF' + - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12859 + color: '#0055CCFF' + - uid: 8928 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12860 + color: '#0055CCFF' + - uid: 8929 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12861 + color: '#0055CCFF' + - uid: 8930 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12862 + color: '#0055CCFF' + - uid: 8931 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12863 + color: '#0055CCFF' + - uid: 8932 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12865 + color: '#0055CCFF' + - uid: 8933 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12867 + color: '#0055CCFF' + - uid: 8934 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-336.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12876 + color: '#0055CCFF' + - uid: 8935 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12877 + color: '#0055CCFF' + - uid: 8936 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12878 + color: '#0055CCFF' + - uid: 8937 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12882 + color: '#0055CCFF' + - uid: 8938 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12883 + color: '#0055CCFF' + - uid: 8939 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12884 + color: '#0055CCFF' + - uid: 8940 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12885 + color: '#0055CCFF' + - uid: 8941 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12888 + color: '#0055CCFF' + - uid: 8942 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12889 + color: '#0055CCFF' + - uid: 8943 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12890 + color: '#0055CCFF' + - uid: 8944 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12891 + color: '#0055CCFF' + - uid: 8945 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12892 + color: '#0055CCFF' + - uid: 8946 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12894 + color: '#0055CCFF' + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12899 + color: '#0055CCFF' + - uid: 8948 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12903 + color: '#0055CCFF' + - uid: 8949 components: - type: Transform pos: 7.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12904 + color: '#0055CCFF' + - uid: 8950 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12905 + color: '#0055CCFF' + - uid: 8951 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12909 + color: '#0055CCFF' + - uid: 8952 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12916 + color: '#0055CCFF' + - uid: 8953 components: - type: Transform pos: 1.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12917 + color: '#990000FF' + - uid: 8954 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12921 + color: '#990000FF' + - uid: 8955 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-356.5 + pos: -0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12922 + - uid: 8956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-358.5 + pos: -0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12923 + color: '#0055CCFF' + - uid: 8957 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-358.5 + pos: 3.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12924 + color: '#0055CCFF' + - uid: 8958 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-358.5 + pos: 2.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12925 + color: '#0055CCFF' + - uid: 8959 components: - type: Transform pos: 1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12927 + color: '#990000FF' + - uid: 8960 components: - type: Transform pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12930 + color: '#0055CCFF' + - uid: 8961 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12931 + color: '#990000FF' + - uid: 8962 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12936 + color: '#990000FF' + - uid: 8963 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12937 + color: '#0055CCFF' + - uid: 8964 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12939 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12940 + color: '#990000FF' + - uid: 8966 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12942 + color: '#990000FF' + - uid: 8967 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12950 + color: '#990000FF' + - uid: 8968 components: - type: Transform pos: -3.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12955 + color: '#0055CCFF' + - uid: 8969 components: - type: Transform pos: -3.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12956 + color: '#0055CCFF' + - uid: 8970 components: - type: Transform pos: -3.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12957 - components: - - type: Transform - pos: -3.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12958 + color: '#0055CCFF' + - uid: 8971 components: - type: Transform pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12959 + color: '#0055CCFF' + - uid: 8972 components: - type: Transform pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12960 - components: - - type: Transform - pos: 4.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12961 + color: '#0055CCFF' + - uid: 8973 components: - type: Transform pos: 4.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12962 + color: '#0055CCFF' + - uid: 8974 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12963 + color: '#0055CCFF' + - uid: 8975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12964 + color: '#0055CCFF' + - uid: 8976 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12965 + color: '#0055CCFF' + - uid: 8977 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12966 + color: '#0055CCFF' + - uid: 8978 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12967 + color: '#0055CCFF' + - uid: 8979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12969 + color: '#0055CCFF' + - uid: 8980 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12970 + color: '#0055CCFF' + - uid: 8981 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12971 + color: '#0055CCFF' + - uid: 8982 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12972 + color: '#0055CCFF' + - uid: 8983 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12973 + color: '#0055CCFF' + - uid: 8984 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12974 + color: '#0055CCFF' + - uid: 8985 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12975 + color: '#0055CCFF' + - uid: 8986 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12976 + color: '#0055CCFF' + - uid: 8987 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12977 + color: '#0055CCFF' + - uid: 8988 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12978 + color: '#0055CCFF' + - uid: 8989 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12979 + color: '#0055CCFF' + - uid: 8990 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13009 + color: '#0055CCFF' + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13010 + color: '#990000FF' + - uid: 8992 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-359.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13011 + color: '#990000FF' + - uid: 8993 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13013 + color: '#990000FF' + - uid: 8994 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13015 + color: '#990000FF' + - uid: 8995 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13016 + color: '#990000FF' + - uid: 8996 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13018 + color: '#990000FF' + - uid: 8997 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13019 + color: '#990000FF' + - uid: 8998 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13020 + color: '#990000FF' + - uid: 8999 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13023 + color: '#990000FF' + - uid: 9000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13025 + color: '#990000FF' + - uid: 9001 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13028 + color: '#990000FF' + - uid: 9002 components: - type: Transform pos: -6.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13030 + color: '#990000FF' + - uid: 9003 components: - type: Transform pos: 7.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13046 + color: '#990000FF' + - uid: 9004 components: - type: Transform pos: 0.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13048 + color: '#990000FF' + - uid: 9005 components: - type: Transform pos: 0.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13049 + color: '#990000FF' + - uid: 9006 components: - type: Transform pos: 0.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13050 - components: - - type: Transform - pos: 0.5,-365.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13051 + color: '#990000FF' + - uid: 9007 components: - type: Transform pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13058 + color: '#990000FF' + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13060 + color: '#990000FF' + - uid: 9009 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13062 + color: '#990000FF' + - uid: 9010 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13065 + color: '#990000FF' + - uid: 9011 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13070 + color: '#990000FF' + - uid: 9012 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-367.5 + pos: 7.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13071 + color: '#990000FF' + - uid: 9013 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-368.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13084 + color: '#990000FF' + - uid: 9014 components: - type: Transform pos: -4.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13085 + color: '#990000FF' + - uid: 9015 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13086 + color: '#990000FF' + - uid: 9016 components: - type: Transform pos: 5.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13089 + color: '#990000FF' + - uid: 9017 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13090 + color: '#990000FF' + - uid: 9018 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13091 + color: '#990000FF' + - uid: 9019 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13092 + color: '#990000FF' + - uid: 9020 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13095 + color: '#990000FF' + - uid: 9021 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13096 + color: '#990000FF' + - uid: 9022 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13097 + color: '#990000FF' + - uid: 9023 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13098 + color: '#990000FF' + - uid: 9024 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13099 + color: '#990000FF' + - uid: 9025 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13101 + color: '#990000FF' + - uid: 9026 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13102 + color: '#990000FF' + - uid: 9027 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13138 + color: '#990000FF' + - uid: 9028 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13139 + color: '#0055CCFF' + - uid: 9029 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13140 + color: '#0055CCFF' + - uid: 9030 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13141 + color: '#0055CCFF' + - uid: 9031 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13142 + color: '#0055CCFF' + - uid: 9032 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13144 + color: '#0055CCFF' + - uid: 9033 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13228 + color: '#0055CCFF' + - uid: 9034 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13229 + color: '#990000FF' + - uid: 9035 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13230 + color: '#990000FF' + - uid: 9036 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13231 + color: '#990000FF' + - uid: 9037 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13232 + color: '#990000FF' + - uid: 9038 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13233 + color: '#0055CCFF' + - uid: 9039 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13234 + color: '#0055CCFF' + - uid: 9040 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13235 + color: '#0055CCFF' + - uid: 9041 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13245 + color: '#0055CCFF' + - uid: 9042 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13273 + color: '#0055CCFF' + - uid: 9043 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - - uid: 13296 + - uid: 9044 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13428 + color: '#990000FF' + - uid: 9045 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 13470 + - uid: 9046 components: - type: Transform rot: 3.141592653589793 rad @@ -60975,7 +59968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13473 + - uid: 9047 components: - type: Transform rot: 3.141592653589793 rad @@ -60983,7 +59976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13997 + - uid: 9048 components: - type: Transform rot: 3.141592653589793 rad @@ -60991,28 +59984,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 14299 + - uid: 9049 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14302 + color: '#990000FF' + - uid: 9050 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-263.5 parent: 2 - - uid: 14304 + - uid: 9051 components: - type: Transform pos: 16.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14424 + color: '#990000FF' + - uid: 9052 components: - type: Transform rot: -1.5707963267948966 rad @@ -61020,7 +60013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14444 + - uid: 9053 components: - type: Transform rot: -1.5707963267948966 rad @@ -61028,311 +60021,295 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14577 + - uid: 9054 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14579 + - uid: 9055 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 14580 + - uid: 9056 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14581 + color: '#0055CCFF' + - uid: 9057 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 14807 + - uid: 9058 + components: + - type: Transform + pos: 1.5,-166.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9059 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14808 + color: '#0055CCFF' + - uid: 9060 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14809 + color: '#0055CCFF' + - uid: 9061 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14810 + color: '#0055CCFF' + - uid: 9062 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14811 + color: '#0055CCFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14812 + color: '#0055CCFF' + - uid: 9064 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14813 + color: '#0055CCFF' + - uid: 9065 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14814 + color: '#0055CCFF' + - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14817 + color: '#0055CCFF' + - uid: 9067 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14818 + color: '#0055CCFF' + - uid: 9068 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14819 + color: '#0055CCFF' + - uid: 9069 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14820 + color: '#0055CCFF' + - uid: 9070 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14821 + color: '#0055CCFF' + - uid: 9071 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14822 + color: '#0055CCFF' + - uid: 9072 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14823 + color: '#0055CCFF' + - uid: 9073 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14824 + color: '#0055CCFF' + - uid: 9074 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14829 + color: '#0055CCFF' + - uid: 9075 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14830 + color: '#0055CCFF' + - uid: 9076 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14831 + color: '#0055CCFF' + - uid: 9077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14832 + color: '#0055CCFF' + - uid: 9078 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14833 + color: '#0055CCFF' + - uid: 9079 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14834 + color: '#0055CCFF' + - uid: 9080 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14838 + color: '#0055CCFF' + - uid: 9081 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14839 + color: '#0055CCFF' + - uid: 9082 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14840 + color: '#0055CCFF' + - uid: 9083 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14841 + color: '#0055CCFF' + - uid: 9084 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14843 + color: '#0055CCFF' + - uid: 9085 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14844 + color: '#0055CCFF' + - uid: 9086 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14845 + color: '#0055CCFF' + - uid: 9087 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14846 + color: '#0055CCFF' + - uid: 9088 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14863 - components: - - type: Transform - pos: -3.5,-107.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14866 + color: '#0055CCFF' + - uid: 9089 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14867 + color: '#0055CCFF' + - uid: 9090 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14868 + color: '#0055CCFF' + - uid: 9091 components: - type: Transform rot: 3.141592653589793 rad @@ -61340,7 +60317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14869 + - uid: 9092 components: - type: Transform rot: 3.141592653589793 rad @@ -61348,7 +60325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14870 + - uid: 9093 components: - type: Transform rot: 3.141592653589793 rad @@ -61356,7 +60333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14871 + - uid: 9094 components: - type: Transform rot: 3.141592653589793 rad @@ -61364,7 +60341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14872 + - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad @@ -61372,7 +60349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14873 + - uid: 9096 components: - type: Transform anchored: False @@ -61384,21 +60361,21 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 14892 + - uid: 9097 components: - type: Transform pos: -4.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14894 + color: '#0055CCFF' + - uid: 9098 components: - type: Transform pos: -4.5,-131.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14896 + color: '#0055CCFF' + - uid: 9099 components: - type: Transform rot: 3.141592653589793 rad @@ -61406,7 +60383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14897 + - uid: 9100 components: - type: Transform rot: 3.141592653589793 rad @@ -61414,7 +60391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14898 + - uid: 9101 components: - type: Transform rot: 3.141592653589793 rad @@ -61422,7 +60399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14899 + - uid: 9102 components: - type: Transform rot: 3.141592653589793 rad @@ -61430,7 +60407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14900 + - uid: 9103 components: - type: Transform rot: 3.141592653589793 rad @@ -61438,7 +60415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14901 + - uid: 9104 components: - type: Transform rot: 3.141592653589793 rad @@ -61446,7 +60423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14902 + - uid: 9105 components: - type: Transform rot: 3.141592653589793 rad @@ -61454,1987 +60431,2701 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15043 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15045 + color: '#0055CCFF' + - uid: 9107 components: - type: Transform pos: -4.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15046 + color: '#0055CCFF' + - uid: 9108 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15047 + color: '#0055CCFF' + - uid: 9109 components: - type: Transform pos: -4.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15048 + color: '#0055CCFF' + - uid: 9110 components: - type: Transform pos: -4.5,-185.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15099 + color: '#0055CCFF' + - uid: 9111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-190.5 + rot: 1.5707963267948966 rad + pos: 5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15100 + color: '#990000FF' + - uid: 9112 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-190.5 + pos: 7.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15103 + color: '#0055CCFF' + - uid: 9113 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 6.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15104 + color: '#0055CCFF' + - uid: 9114 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-158.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15105 + color: '#0055CCFF' + - uid: 9115 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15106 + color: '#0055CCFF' + - uid: 9116 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15107 + color: '#0055CCFF' + - uid: 9117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15108 + color: '#0055CCFF' + - uid: 9118 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15109 + color: '#0055CCFF' + - uid: 9119 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15110 + color: '#0055CCFF' + - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15120 + color: '#0055CCFF' + - uid: 9121 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-156.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15121 + color: '#0055CCFF' + - uid: 9122 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15122 + color: '#0055CCFF' + - uid: 9123 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15123 + color: '#0055CCFF' + - uid: 9124 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15124 + color: '#0055CCFF' + - uid: 9125 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-152.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15166 + color: '#0055CCFF' + - uid: 9126 components: - type: Transform pos: 5.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15179 + color: '#0055CCFF' + - uid: 9127 components: - type: Transform pos: 5.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15180 + color: '#0055CCFF' + - uid: 9128 components: - type: Transform pos: 5.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15181 + color: '#0055CCFF' + - uid: 9129 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15182 + color: '#0055CCFF' + - uid: 9130 components: - type: Transform pos: 5.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15183 + color: '#0055CCFF' + - uid: 9131 components: - type: Transform pos: 5.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15184 + color: '#0055CCFF' + - uid: 9132 components: - type: Transform pos: 5.5,-266.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15196 + color: '#0055CCFF' + - uid: 9133 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15197 + color: '#0055CCFF' + - uid: 9134 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15198 + color: '#0055CCFF' + - uid: 9135 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15199 + color: '#0055CCFF' + - uid: 9136 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15201 + color: '#0055CCFF' + - uid: 9137 components: - type: Transform pos: 5.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15202 + color: '#0055CCFF' + - uid: 9138 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15203 + color: '#0055CCFF' + - uid: 9139 components: - type: Transform pos: 5.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15204 + color: '#0055CCFF' + - uid: 9140 components: - type: Transform pos: 5.5,-291.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15205 + color: '#0055CCFF' + - uid: 9141 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15206 + color: '#0055CCFF' + - uid: 9142 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16480 + color: '#0055CCFF' + - uid: 9143 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16481 + color: '#990000FF' + - uid: 9144 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16485 + color: '#990000FF' + - uid: 9145 components: - type: Transform pos: -3.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16486 + color: '#990000FF' + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-174.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16503 + color: '#990000FF' + - uid: 9147 components: - type: Transform pos: 1.5,-169.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16684 + color: '#990000FF' + - uid: 9148 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16685 + color: '#0055CCFF' + - uid: 9149 components: - type: Transform pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16686 + color: '#0055CCFF' + - uid: 9150 components: - type: Transform pos: -3.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16868 + color: '#0055CCFF' + - uid: 9151 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16978 + color: '#0055CCFF' + - uid: 9152 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16980 + color: '#990000FF' + - uid: 9153 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16982 + color: '#990000FF' + - uid: 9154 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16983 + color: '#990000FF' + - uid: 9155 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16984 + color: '#0055CCFF' + - uid: 9156 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16985 + color: '#0055CCFF' + - uid: 9157 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16986 + color: '#0055CCFF' + - uid: 9158 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16987 + color: '#0055CCFF' + - uid: 9159 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16989 + color: '#0055CCFF' + - uid: 9160 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16992 + color: '#0055CCFF' + - uid: 9161 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16993 + color: '#0055CCFF' + - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16994 + color: '#0055CCFF' + - uid: 9163 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 9220 + components: + - type: Transform + pos: 0.5,-169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 438 + - uid: 7620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-169.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-112.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-115.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-118.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-121.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9164 + components: + - type: Transform + pos: 1.5,-358.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-119.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9167 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 584 + color: '#990000FF' + - uid: 9168 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 714 + color: '#0055CCFF' + - uid: 9169 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 741 + color: '#990000FF' + - uid: 9170 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 760 + color: '#990000FF' + - uid: 9171 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 785 + color: '#990000FF' + - uid: 9172 components: - type: Transform pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 809 + color: '#0055CCFF' + - uid: 9173 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 816 + color: '#0055CCFF' + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1008 + color: '#0055CCFF' + - uid: 9175 + components: + - type: Transform + pos: -0.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-319.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1026 + color: '#990000FF' + - uid: 9180 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1053 + color: '#0055CCFF' + - uid: 9181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-220.5 + parent: 2 + - uid: 9182 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1067 + color: '#0055CCFF' + - uid: 9183 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1148 + color: '#0055CCFF' + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9185 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1174 + color: '#990000FF' + - uid: 9186 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1180 + color: '#990000FF' + - uid: 9187 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1181 + color: '#0055CCFF' + - uid: 9188 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1188 + color: '#0055CCFF' + - uid: 9189 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1209 + color: '#990000FF' + - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1256 + color: '#990000FF' + - uid: 9191 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1262 + color: '#0055CCFF' + - uid: 9192 components: - type: Transform pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1267 + color: '#990000FF' + - uid: 9193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1269 + color: '#990000FF' + - uid: 9194 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1273 + color: '#990000FF' + - uid: 9195 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1289 + color: '#0055CCFF' + - uid: 9196 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1301 + color: '#990000FF' + - uid: 9197 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1337 + color: '#990000FF' + - uid: 9198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9199 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1355 + color: '#990000FF' + - uid: 9200 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1360 + color: '#0055CCFF' + - uid: 9201 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1362 + color: '#990000FF' + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-68.5 + pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1365 + color: '#990000FF' + - uid: 9203 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1374 + color: '#0055CCFF' + - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-138.5 + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1386 + color: '#0055CCFF' + - uid: 9205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1418 + color: '#990000FF' + - uid: 9207 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1660 + color: '#0055CCFF' + - uid: 9208 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1679 + color: '#0055CCFF' + - uid: 9209 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1738 + color: '#0055CCFF' + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1857 + color: '#0055CCFF' + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9212 components: - type: Transform pos: -0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2098 + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9214 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2243 + color: '#0055CCFF' + - uid: 9215 components: - type: Transform pos: -3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2892 + color: '#990000FF' + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-289.5 + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2913 + color: '#0055CCFF' + - uid: 9217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-169.5 + pos: 0.5,-289.5 parent: 2 - - uid: 2916 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9219 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-200.5 parent: 2 - - uid: 2923 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-169.5 + rot: 3.141592653589793 rad + pos: -2.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2938 + - uid: 9223 components: - type: Transform - pos: -1.5,-169.5 + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 parent: 2 - - uid: 3009 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-169.5 + rot: 1.5707963267948966 rad + pos: 0.5,-50.5 parent: 2 - - uid: 3264 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9225 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3283 + color: '#990000FF' + - uid: 9226 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3288 + color: '#990000FF' + - uid: 9227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9228 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3293 + color: '#990000FF' + - uid: 9229 components: - type: Transform pos: 4.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3311 + color: '#990000FF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9232 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3319 + color: '#990000FF' + - uid: 9233 components: - type: Transform pos: -0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3323 + color: '#990000FF' + - uid: 9234 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3331 + color: '#990000FF' + - uid: 9235 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3334 + color: '#0055CCFF' + - uid: 9236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3363 + color: '#0055CCFF' + - uid: 9237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-131.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9240 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3386 + color: '#0055CCFF' + - uid: 9241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-129.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9242 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3401 + color: '#0055CCFF' + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-260.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9244 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3407 + color: '#0055CCFF' + - uid: 9245 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3408 + color: '#0055CCFF' + - uid: 9246 components: - type: Transform pos: 1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3410 + color: '#0055CCFF' + - uid: 9247 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3415 + color: '#0055CCFF' + - uid: 9248 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3426 + color: '#0055CCFF' + - uid: 9249 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3435 + color: '#0055CCFF' + - uid: 9250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9252 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3439 + color: '#0055CCFF' + - uid: 9253 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3441 + color: '#0055CCFF' + - uid: 9254 components: - type: Transform pos: -6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3444 + color: '#0055CCFF' + - uid: 9255 components: - type: Transform pos: -0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3448 + color: '#0055CCFF' + - uid: 9256 components: - type: Transform pos: 3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3509 + color: '#0055CCFF' + - uid: 9257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9258 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + color: '#990000FF' + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3518 + color: '#990000FF' + - uid: 9260 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3521 + color: '#990000FF' + - uid: 9261 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3554 + color: '#990000FF' + - uid: 9262 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3568 + color: '#990000FF' + - uid: 9263 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3585 + color: '#990000FF' + - uid: 9264 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3586 + color: '#990000FF' + - uid: 9265 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3616 + color: '#990000FF' + - uid: 9266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3633 + color: '#990000FF' + - uid: 9267 components: - type: Transform pos: -1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3646 + color: '#990000FF' + - uid: 9268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9269 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3671 + color: '#990000FF' + - uid: 9270 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3759 + color: '#0055CCFF' + - uid: 9271 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3930 + color: '#0055CCFF' + - uid: 9272 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3933 + color: '#0055CCFF' + - uid: 9273 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3938 + color: '#0055CCFF' + - uid: 9274 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3962 + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-221.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9276 components: - type: Transform pos: 4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3970 + color: '#990000FF' + - uid: 9277 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3973 + color: '#990000FF' + - uid: 9278 components: - type: Transform pos: -0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3984 + color: '#990000FF' + - uid: 9279 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3996 + color: '#990000FF' + - uid: 9280 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4023 + color: '#990000FF' + - uid: 9281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9283 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4053 + color: '#0055CCFF' + - uid: 9284 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4070 + color: '#990000FF' + - uid: 9285 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4111 + color: '#0055CCFF' + - uid: 9286 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4131 + color: '#0055CCFF' + - uid: 9287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-227.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9289 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4134 + color: '#0055CCFF' + - uid: 9290 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4141 + color: '#0055CCFF' + - uid: 9291 components: - type: Transform pos: -0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4155 + color: '#990000FF' + - uid: 9292 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4454 + color: '#990000FF' + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-237.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9295 components: - type: Transform pos: -4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4640 + color: '#990000FF' + - uid: 9296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-239.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9297 + components: + - type: Transform + pos: 4.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4683 + color: '#990000FF' + - uid: 9299 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4733 + color: '#0055CCFF' + - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5000 + color: '#990000FF' + - uid: 9301 + components: + - type: Transform + pos: 3.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-256.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5037 + color: '#990000FF' + - uid: 9304 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5040 + color: '#0055CCFF' + - uid: 9305 components: - type: Transform pos: -0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5112 + color: '#990000FF' + - uid: 9306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-274.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-291.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9308 components: - type: Transform pos: -4.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5122 + color: '#0055CCFF' + - uid: 9309 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5124 + color: '#0055CCFF' + - uid: 9310 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5200 + color: '#0055CCFF' + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-293.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-272.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9313 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5201 + color: '#0055CCFF' + - uid: 9314 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5249 + color: '#0055CCFF' + - uid: 9315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5276 + color: '#990000FF' + - uid: 9316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-162.5 + pos: 0.5,-323.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5333 + color: '#0055CCFF' + - uid: 9317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-174.5 + pos: 0.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5352 + color: '#0055CCFF' + - uid: 9318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-342.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-162.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-345.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9323 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-259.5 parent: 2 - - uid: 5499 + - uid: 9324 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-243.5 parent: 2 - - uid: 5894 + - uid: 9325 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6041 + color: '#0055CCFF' + - uid: 9326 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-243.5 parent: 2 - - uid: 6654 + - uid: 9327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-248.5 + rot: 1.5707963267948966 rad + pos: 0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6707 + color: '#0055CCFF' + - uid: 9328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9329 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-248.5 + pos: 5.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6831 + color: '#0055CCFF' + - uid: 9330 components: - type: Transform pos: -0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6853 + color: '#990000FF' + - uid: 9331 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9332 components: - type: Transform pos: 4.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6902 + color: '#990000FF' + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-363.5 + pos: -2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6907 + color: '#0055CCFF' + - uid: 9334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-168.5 + rot: -1.5707963267948966 rad + pos: -3.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7199 + color: '#0055CCFF' + - uid: 9335 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-246.5 parent: 2 - - uid: 7466 + - uid: 9336 + components: + - type: Transform + pos: -1.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9337 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7500 + color: '#990000FF' + - uid: 9338 + components: + - type: Transform + pos: 5.5,-138.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9339 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7549 + color: '#0055CCFF' + - uid: 9340 components: - type: Transform pos: 15.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7566 + color: '#0055CCFF' + - uid: 9341 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8011 + color: '#990000FF' + - uid: 9342 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8020 + color: '#990000FF' + - uid: 9343 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8038 + color: '#990000FF' + - uid: 9344 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8081 + color: '#990000FF' + - uid: 9345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9347 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8119 + color: '#990000FF' + - uid: 9348 components: - type: Transform pos: -6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8151 + color: '#990000FF' + - uid: 9349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9350 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-245.5 parent: 2 - - uid: 8163 + - uid: 9351 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8365 + color: '#990000FF' + - uid: 9352 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8366 + color: '#0055CCFF' + - uid: 9353 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8777 + color: '#0055CCFF' + - uid: 9354 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8876 + color: '#0055CCFF' + - uid: 9355 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10151 + color: '#0055CCFF' + - uid: 9356 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10691 + color: '#0055CCFF' + - uid: 9357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9358 components: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 10863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9359 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12237 + color: '#990000FF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-136.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9363 + components: + - type: Transform + pos: 4.5,-189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9364 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12239 + color: '#990000FF' + - uid: 9365 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12242 + color: '#990000FF' + - uid: 9366 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12247 + color: '#990000FF' + - uid: 9367 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12249 + color: '#0055CCFF' + - uid: 9368 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12254 + color: '#990000FF' + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-193.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9370 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12266 + color: '#0055CCFF' + - uid: 9371 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12276 + color: '#0055CCFF' + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-177.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12282 + color: '#990000FF' + - uid: 9374 components: - type: Transform pos: -0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12317 + color: '#990000FF' + - uid: 9375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-174.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9376 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12325 + color: '#990000FF' + - uid: 9377 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12331 + color: '#0055CCFF' + - uid: 9378 components: - type: Transform pos: 10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12381 + color: '#0055CCFF' + - uid: 9379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-266.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9381 + components: + - type: Transform + pos: 5.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12397 + color: '#0055CCFF' + - uid: 9383 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12400 + color: '#990000FF' + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9385 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12422 + color: '#0055CCFF' + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-273.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9387 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12439 + color: '#0055CCFF' + - uid: 9388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-286.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9389 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12442 + color: '#990000FF' + - uid: 9390 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12476 + color: '#0055CCFF' + - uid: 9391 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12486 + color: '#0055CCFF' + - uid: 9392 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12489 + color: '#0055CCFF' + - uid: 9393 components: - type: Transform pos: 6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12494 + color: '#990000FF' + - uid: 9394 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12498 + color: '#990000FF' + - uid: 9395 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12531 + color: '#0055CCFF' + - uid: 9396 components: - type: Transform pos: 10.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12546 + color: '#0055CCFF' + - uid: 9397 components: - type: Transform pos: 7.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12573 + color: '#0055CCFF' + - uid: 9398 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12587 + color: '#990000FF' + - uid: 9399 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12588 + color: '#990000FF' + - uid: 9400 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12615 + color: '#0055CCFF' + - uid: 9401 components: - type: Transform pos: -0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12648 + color: '#990000FF' + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-298.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-329.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9404 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12650 + color: '#0055CCFF' + - uid: 9405 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12720 + color: '#0055CCFF' + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9408 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12752 + color: '#990000FF' + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12808 + color: '#0055CCFF' + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9412 components: - type: Transform pos: -0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12841 + color: '#990000FF' + - uid: 9413 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12866 + color: '#0055CCFF' + - uid: 9414 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12873 + color: '#0055CCFF' + - uid: 9415 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12928 + color: '#0055CCFF' + - uid: 9416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12934 + color: '#0055CCFF' + - uid: 9417 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12941 + color: '#0055CCFF' + - uid: 9418 components: - type: Transform pos: -1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12951 + color: '#990000FF' + - uid: 9419 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12953 + color: '#0055CCFF' + - uid: 9420 components: - type: Transform pos: 4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12991 + color: '#0055CCFF' + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-357.5 + rot: 1.5707963267948966 rad + pos: 0.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13008 + color: '#0055CCFF' + - uid: 9422 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-361.5 + pos: -1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13014 + color: '#990000FF' + - uid: 9423 components: - type: Transform - pos: 0.5,-361.5 + rot: 3.141592653589793 rad + pos: 1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13032 + color: '#990000FF' + - uid: 9424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-361.5 + rot: 3.141592653589793 rad + pos: -1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13087 + color: '#990000FF' + - uid: 9425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-369.5 + pos: 0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13093 + color: '#990000FF' + - uid: 9426 components: - type: Transform - pos: 5.5,-369.5 + rot: -1.5707963267948966 rad + pos: 16.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13100 + color: '#990000FF' + - uid: 9427 components: - type: Transform - pos: -4.5,-369.5 + rot: -1.5707963267948966 rad + pos: 7.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14448 + color: '#990000FF' + - uid: 9428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,-264.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16981 + color: '#0055CCFF' + - uid: 9429 components: - type: Transform - pos: -9.5,-248.5 + rot: 3.141592653589793 rad + pos: -4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 5656 + color: '#990000FF' + - uid: 9430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-246.5 + pos: -0.5,-285.5 parent: 2 - - uid: 7217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9431 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-245.5 + pos: 1.5,-329.5 parent: 2 - - uid: 11217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9432 components: - type: Transform - pos: 5.5,-355.5 + rot: 1.5707963267948966 rad + pos: -6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11218 + color: '#990000FF' + - uid: 9433 components: - type: Transform - pos: 4.5,-355.5 + rot: -1.5707963267948966 rad + pos: 0.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11927 + color: '#990000FF' + - uid: 9434 components: - type: Transform - anchored: False + rot: 3.141592653589793 rad + pos: 0.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9435 + components: + - type: Transform + pos: 5.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9436 + components: + - type: Transform + pos: -4.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9437 + components: + - type: Transform + pos: -2.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9439 + components: + - type: Transform + pos: 3.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-364.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9443 + components: + - type: Transform + pos: -9.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-169.5 + parent: 2 +- proto: GasPort + entities: + - uid: 5634 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-246.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-245.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 5.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9447 + components: + - type: Transform + pos: 4.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9448 + components: + - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - type: Physics canCollide: True bodyType: Dynamic - - uid: 11930 + - uid: 9449 components: - type: Transform anchored: False @@ -63444,7 +63135,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 12412 + - uid: 9450 components: - type: Transform rot: -1.5707963267948966 rad @@ -63454,13 +63145,20 @@ entities: color: '#FEF101FF' - proto: GasPressurePump entities: - - uid: 2355 + - uid: 5635 + components: + - type: Transform + pos: -1.5,-169.5 + parent: 2 + - uid: 9451 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-260.5 parent: 2 - - uid: 2372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9452 components: - type: MetaData name: Plasma Pump @@ -63468,7 +63166,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-250.5 parent: 2 - - uid: 2447 + - uid: 9453 components: - type: MetaData name: O2 pump @@ -63476,7 +63174,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-256.5 parent: 2 - - uid: 2450 + - uid: 9454 components: - type: MetaData name: N2 pump @@ -63484,7 +63182,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-258.5 parent: 2 - - uid: 2452 + - uid: 9455 components: - type: MetaData name: Co2 pump @@ -63492,21 +63190,15 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 2463 + - uid: 9456 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-259.5 parent: 2 - - uid: 3052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-169.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4108 + color: '#990000FF' + - uid: 9458 components: - type: Transform rot: 3.141592653589793 rad @@ -63515,20 +63207,20 @@ entities: - type: GasPressurePump targetPressure: 4500 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5500 + color: '#990000FF' + - uid: 9459 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-246.5 parent: 2 - - uid: 7747 + - uid: 9460 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-245.5 parent: 2 - - uid: 12409 + - uid: 9461 components: - type: Transform rot: -1.5707963267948966 rad @@ -63536,32 +63228,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12410 + - uid: 9462 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12908 + color: '#0055CCFF' + - uid: 9463 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - - uid: 3143 + - uid: 9464 components: - type: Transform pos: -4.5,-168.5 parent: 2 - proto: GasValve entities: - - uid: 5420 + - uid: 9465 components: - type: Transform rot: 1.5707963267948966 rad @@ -63569,49 +63261,67 @@ entities: parent: 2 - proto: GasVentPump entities: - - uid: 576 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-359.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9467 components: - type: Transform pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 807 + color: '#0055CCFF' + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,-344.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 838 + color: '#0055CCFF' + - uid: 9469 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-157.5 + rot: -1.5707963267948966 rad + pos: 1.5,-210.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 855 + color: '#0055CCFF' + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9471 components: - type: Transform pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 856 + color: '#0055CCFF' + - uid: 9472 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 857 + color: '#0055CCFF' + - uid: 9473 components: - type: Transform rot: -1.5707963267948966 rad @@ -63619,53 +63329,37 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 + - 12 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 870 + color: '#0055CCFF' + - uid: 9474 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 884 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 905 + color: '#0055CCFF' + - uid: 9475 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 921 + color: '#0055CCFF' + - uid: 9476 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 5.5,-57.5 + pos: 6.5,-56.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 954 + color: '#0055CCFF' + - uid: 9477 components: - type: Transform rot: -1.5707963267948966 rad @@ -63673,72 +63367,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 977 + color: '#0055CCFF' + - uid: 9478 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + rot: -1.5707963267948966 rad + pos: 1.5,-291.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13109 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1004 + color: '#0055CCFF' + - uid: 9479 components: - type: Transform - anchored: False - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: -0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1057 + color: '#0055CCFF' + - uid: 9480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-160.5 + pos: -0.5,-227.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1123 + color: '#0055CCFF' + - uid: 9481 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-49.5 + pos: -3.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1138 + color: '#0055CCFF' + - uid: 9482 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1141 + color: '#0055CCFF' + - uid: 9483 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1238 + color: '#0055CCFF' + - uid: 9484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-298.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9485 components: - type: Transform rot: -1.5707963267948966 rad @@ -63746,10 +63439,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1278 + color: '#0055CCFF' + - uid: 9486 components: - type: Transform rot: -1.5707963267948966 rad @@ -63757,68 +63450,49 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1279 + color: '#0055CCFF' + - uid: 9487 components: - type: Transform pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1323 + color: '#0055CCFF' + - uid: 9488 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1325 + color: '#0055CCFF' + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1373 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1375 + color: '#0055CCFF' + - uid: 9490 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14727 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1382 + color: '#0055CCFF' + - uid: 9491 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1415 + color: '#0055CCFF' + - uid: 9492 components: - type: Transform rot: 1.5707963267948966 rad @@ -63826,29 +63500,29 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1769 + color: '#0055CCFF' + - uid: 9493 components: - type: Transform - anchored: False - pos: 0.5,-68.5 + rot: -1.5707963267948966 rad + pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1806 + color: '#0055CCFF' + - uid: 9494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2076 + color: '#0055CCFF' + - uid: 9495 components: - type: Transform rot: 1.5707963267948966 rad @@ -63856,109 +63530,81 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2415 + color: '#0055CCFF' + - uid: 9496 components: - type: Transform pos: -4.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2638 + color: '#0055CCFF' + - uid: 9497 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3011 + color: '#0055CCFF' + - uid: 9498 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3018 + color: '#0055CCFF' + - uid: 9499 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3040 - components: - - type: Transform - anchored: False - pos: 0.5,-184.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3110 + color: '#0055CCFF' + - uid: 9500 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3333 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3351 + color: '#0055CCFF' + - uid: 9501 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-81.5 + pos: 1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3352 + color: '#0055CCFF' + - uid: 9502 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 + rot: -1.5707963267948966 rad + pos: 1.5,-77.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3371 + color: '#0055CCFF' + - uid: 9503 components: - type: Transform pos: -5.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3372 + color: '#0055CCFF' + - uid: 9504 components: - type: Transform rot: 1.5707963267948966 rad @@ -63966,10 +63612,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3373 + color: '#0055CCFF' + - uid: 9505 components: - type: Transform anchored: False @@ -63981,23 +63627,23 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3374 + - uid: 9506 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3391 + color: '#0055CCFF' + - uid: 9507 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3392 + color: '#0055CCFF' + - uid: 9508 components: - type: Transform rot: -1.5707963267948966 rad @@ -64005,30 +63651,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3393 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-103.5 - parent: 2 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3403 + color: '#0055CCFF' + - uid: 9509 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3436 + color: '#0055CCFF' + - uid: 9510 components: - type: Transform rot: 3.141592653589793 rad @@ -64036,10 +63670,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3437 + color: '#0055CCFF' + - uid: 9511 components: - type: Transform rot: 1.5707963267948966 rad @@ -64047,37 +63681,34 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3438 + color: '#0055CCFF' + - uid: 9512 components: - type: Transform - anchored: False - pos: -3.5,-107.5 + rot: 1.5707963267948966 rad + pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3451 + color: '#0055CCFF' + - uid: 9513 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3452 + color: '#0055CCFF' + - uid: 9514 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3457 + color: '#0055CCFF' + - uid: 9515 components: - type: Transform rot: 1.5707963267948966 rad @@ -64085,106 +63716,94 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3474 + color: '#0055CCFF' + - uid: 9516 components: - type: Transform - anchored: False - pos: -6.5,-113.5 + rot: 1.5707963267948966 rad + pos: -7.5,-112.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3475 + color: '#0055CCFF' + - uid: 9517 components: - type: Transform - anchored: False - pos: -6.5,-116.5 + rot: 1.5707963267948966 rad + pos: -7.5,-115.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3476 + color: '#0055CCFF' + - uid: 9518 components: - type: Transform - anchored: False - pos: -6.5,-119.5 + rot: 1.5707963267948966 rad + pos: -7.5,-118.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3477 + color: '#0055CCFF' + - uid: 9519 components: - type: Transform - anchored: False - pos: -6.5,-122.5 + rot: 1.5707963267948966 rad + pos: -7.5,-121.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3478 + color: '#0055CCFF' + - uid: 9520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-125.5 + rot: 1.5707963267948966 rad + pos: -7.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3480 + color: '#0055CCFF' + - uid: 9521 components: - type: Transform - pos: 0.5,-124.5 + rot: -1.5707963267948966 rad + pos: 1.5,-178.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 39 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3481 + color: '#0055CCFF' + - uid: 9522 components: - type: Transform - anchored: False - pos: 0.5,-130.5 + pos: 0.5,-124.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3482 + color: '#0055CCFF' + - uid: 9523 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3483 + color: '#0055CCFF' + - uid: 9524 components: - type: Transform rot: 1.5707963267948966 rad @@ -64192,10 +63811,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3626 + color: '#0055CCFF' + - uid: 9525 components: - type: Transform rot: -1.5707963267948966 rad @@ -64203,52 +63822,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13166 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3650 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 5.5,-138.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13182 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4016 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13176 + - 28 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4018 + color: '#0055CCFF' + - uid: 9526 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 3.5,-138.5 + pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4020 + color: '#0055CCFF' + - uid: 9527 components: - type: Transform anchored: False @@ -64260,7 +63845,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4031 + - uid: 9528 components: - type: Transform anchored: False @@ -64268,13 +63853,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 4033 + - uid: 9529 components: - type: Transform rot: 3.141592653589793 rad @@ -64282,95 +63867,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4051 + color: '#0055CCFF' + - uid: 9530 components: - type: Transform pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4072 + color: '#0055CCFF' + - uid: 9531 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4146 + color: '#0055CCFF' + - uid: 9532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9533 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4148 + color: '#0055CCFF' + - uid: 9534 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 + color: '#0055CCFF' + - uid: 9535 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 + color: '#0055CCFF' + - uid: 9536 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 15.5,-256.5 + rot: -1.5707963267948966 rad + pos: 1.5,-127.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15292 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4234 + color: '#0055CCFF' + - uid: 9537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-127.5 + pos: 2.5,-88.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4360 + color: '#0055CCFF' + - uid: 9538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-88.5 + rot: 3.141592653589793 rad + pos: 4.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4558 + color: '#0055CCFF' + - uid: 9539 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-152.5 + rot: 1.5707963267948966 rad + pos: -0.5,-221.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4559 + color: '#0055CCFF' + - uid: 9540 components: - type: Transform rot: 1.5707963267948966 rad @@ -64378,18 +63963,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4567 + color: '#0055CCFF' + - uid: 9541 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4568 + color: '#0055CCFF' + - uid: 9542 components: - type: Transform rot: -1.5707963267948966 rad @@ -64397,10 +63982,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4905 + color: '#0055CCFF' + - uid: 9543 components: - type: Transform rot: 3.141592653589793 rad @@ -64408,25 +63993,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4950 + color: '#0055CCFF' + - uid: 9544 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 17.5,-248.5 + pos: -0.5,-253.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4967 + color: '#0055CCFF' + - uid: 9545 components: - type: Transform rot: -1.5707963267948966 rad @@ -64434,64 +64015,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 45 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4992 + color: '#0055CCFF' + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-249.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9547 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5057 + color: '#0055CCFF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-241.5 + pos: -0.5,-266.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5063 + color: '#0055CCFF' + - uid: 9549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-235.5 + rot: 1.5707963267948966 rad + pos: -0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5082 + color: '#0055CCFF' + - uid: 9550 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 16.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5083 + color: '#0055CCFF' + - uid: 9551 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-194.5 + rot: -1.5707963267948966 rad + pos: 1.5,-235.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-264.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13249 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5108 + color: '#0055CCFF' + - uid: 9553 components: - type: Transform rot: 1.5707963267948966 rad @@ -64499,10 +64094,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 48 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#0055CCFF' + - uid: 9554 components: - type: Transform rot: 1.5707963267948966 rad @@ -64510,10 +64105,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5121 + color: '#0055CCFF' + - uid: 9555 components: - type: Transform anchored: False @@ -64522,21 +64117,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 5126 + - uid: 9556 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5127 + color: '#0055CCFF' + - uid: 9557 components: - type: Transform rot: -1.5707963267948966 rad @@ -64544,126 +64139,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 + - 46 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5153 + color: '#0055CCFF' + - uid: 9558 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5156 + color: '#0055CCFF' + - uid: 9559 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5160 + color: '#0055CCFF' + - uid: 9560 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5161 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5163 + color: '#0055CCFF' + - uid: 9561 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5164 + color: '#0055CCFF' + - uid: 9562 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5199 + color: '#0055CCFF' + - uid: 9563 components: - type: Transform - anchored: False - pos: 0.5,-228.5 + rot: 1.5707963267948966 rad + pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5251 + color: '#0055CCFF' + - uid: 9564 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-178.5 + rot: 1.5707963267948966 rad + pos: -0.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5260 + color: '#0055CCFF' + - uid: 9565 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 + pos: -3.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8201 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5261 + color: '#0055CCFF' + - uid: 9566 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -1.5,-175.5 + pos: -0.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5288 + color: '#0055CCFF' + - uid: 9567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5293 + color: '#0055CCFF' + - uid: 9568 components: - type: Transform anchored: False @@ -64675,7 +64239,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5302 + - uid: 9569 components: - type: Transform rot: -1.5707963267948966 rad @@ -64683,112 +64247,136 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 41 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5307 + color: '#0055CCFF' + - uid: 9570 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6036 + color: '#0055CCFF' + - uid: 9571 components: - type: Transform - anchored: False - pos: 0.5,-34.5 + rot: 1.5707963267948966 rad + pos: 6.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-368.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - 13109 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 6727 + color: '#0055CCFF' + - uid: 9573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-368.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9574 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6904 + color: '#0055CCFF' + - uid: 9575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9576 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6905 + color: '#0055CCFF' + - uid: 9577 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6915 + color: '#0055CCFF' + - uid: 9578 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-15.5 + pos: 3.5,-151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7504 + color: '#0055CCFF' + - uid: 9580 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7506 + color: '#0055CCFF' + - uid: 9581 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 0.5,-265.5 + pos: 17.5,-249.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7769 + color: '#0055CCFF' + - uid: 9582 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8066 + color: '#0055CCFF' + - uid: 9583 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-260.5 + rot: -1.5707963267948966 rad + pos: 1.5,-156.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8070 + color: '#0055CCFF' + - uid: 9584 components: - type: Transform anchored: False @@ -64800,7 +64388,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 8071 + - uid: 9585 components: - type: Transform rot: -1.5707963267948966 rad @@ -64808,502 +64396,470 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8113 + color: '#0055CCFF' + - uid: 9586 components: - type: Transform - anchored: False - pos: 0.5,-238.5 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8123 + color: '#0055CCFF' + - uid: 9587 components: - type: Transform - anchored: False - pos: 0.5,-211.5 + rot: -1.5707963267948966 rad + pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8157 + color: '#0055CCFF' + - uid: 9588 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8314 + color: '#0055CCFF' + - uid: 9589 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 8.5,-248.5 + rot: 3.141592653589793 rad + pos: -2.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8431 + color: '#0055CCFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8877 + color: '#0055CCFF' + - uid: 9591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-268.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10658 - components: - - type: Transform - anchored: False - pos: -6.5,-338.5 + pos: -0.5,-185.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5925 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 10811 + color: '#0055CCFF' + - uid: 9592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-354.5 + pos: -0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10869 + color: '#0055CCFF' + - uid: 9593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-343.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10976 - components: - - type: Transform - anchored: False - pos: 7.5,-337.5 + pos: -0.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12142 + color: '#0055CCFF' + - uid: 9594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: 4.5,-82.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12273 + color: '#0055CCFF' + - uid: 9595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-295.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-348.5 + pos: -5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12305 + color: '#0055CCFF' + - uid: 9596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-277.5 + pos: 1.5,-104.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12333 + color: '#0055CCFF' + - uid: 9597 components: - type: Transform anchored: False - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 + pos: -6.5,-338.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 6 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12341 + - uid: 9598 components: - type: Transform - anchored: False - pos: 0.5,-274.5 + rot: 1.5707963267948966 rad + pos: -0.5,-131.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12345 + color: '#0055CCFF' + - uid: 9599 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 2.5,-284.5 + rot: 1.5707963267948966 rad + pos: -0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12349 + color: '#0055CCFF' + - uid: 9600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-284.5 + rot: 1.5707963267948966 rad + pos: 6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12356 + color: '#0055CCFF' + - uid: 9601 components: - type: Transform - anchored: False - pos: 0.5,-286.5 + rot: 3.141592653589793 rad + pos: 5.5,-139.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12362 + color: '#0055CCFF' + - uid: 9602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-287.5 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12367 + color: '#0055CCFF' + - uid: 9603 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-271.5 + pos: -0.5,-295.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-348.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-277.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 + - 54 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12382 + color: '#0055CCFF' + - uid: 9606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-297.5 + pos: -0.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12428 + color: '#0055CCFF' + - uid: 9608 components: - type: Transform anchored: False rot: -1.5707963267948966 rad - pos: -4.5,-315.5 + pos: 2.5,-284.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12429 + - uid: 9609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-321.5 + pos: 5.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12430 + color: '#0055CCFF' + - uid: 9610 components: - type: Transform - anchored: False - pos: 0.5,-318.5 + rot: -1.5707963267948966 rad + pos: 1.5,-239.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12470 + color: '#0055CCFF' + - uid: 9611 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-307.5 + pos: -0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-287.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 53 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12474 + color: '#0055CCFF' + - uid: 9613 components: - type: Transform - pos: 5.5,-265.5 + rot: 1.5707963267948966 rad + pos: -5.5,-271.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12501 + color: '#0055CCFF' + - uid: 9614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-306.5 + pos: 1.5,-321.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13365 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12508 + color: '#0055CCFF' + - uid: 9616 components: - type: Transform - pos: 6.5,-304.5 + rot: 1.5707963267948966 rad + pos: -6.5,-307.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 8 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12540 + color: '#0055CCFF' + - uid: 9617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-311.5 + pos: 5.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12568 + color: '#0055CCFF' + - uid: 9618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-311.5 + rot: -1.5707963267948966 rad + pos: 11.5,-306.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12577 + color: '#0055CCFF' + - uid: 9619 components: - type: Transform - pos: 9.5,-304.5 + pos: 6.5,-304.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12580 + color: '#0055CCFF' + - uid: 9620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-303.5 + pos: -0.5,-293.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12603 + color: '#0055CCFF' + - uid: 9621 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-330.5 + pos: -0.5,-325.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12637 + color: '#0055CCFF' + - uid: 9622 components: - type: Transform - anchored: False - pos: 0.5,-292.5 + rot: 3.141592653589793 rad + pos: 10.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12641 + color: '#0055CCFF' + - uid: 9623 components: - type: Transform - anchored: False - pos: 0.5,-324.5 + rot: 1.5707963267948966 rad + pos: 6.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12652 + color: '#0055CCFF' + - uid: 9624 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -0.5,-327.5 + pos: 9.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12705 + color: '#0055CCFF' + - uid: 9625 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-297.5 + rot: 1.5707963267948966 rad + pos: -2.5,-303.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 59 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12718 + color: '#0055CCFF' + - uid: 9626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-330.5 + pos: 4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12754 + color: '#0055CCFF' + - uid: 9627 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 0.5,-356.5 + pos: 1.5,-342.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12895 + color: '#0055CCFF' + - uid: 9628 components: - type: Transform - anchored: False - pos: 0.5,-344.5 + rot: -1.5707963267948966 rad + pos: 1.5,-183.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12897 + color: '#0055CCFF' + - uid: 9629 components: - type: Transform - anchored: False - pos: 0.5,-340.5 + rot: 1.5707963267948966 rad + pos: -3.5,-330.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11906 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12898 + color: '#0055CCFF' + - uid: 9630 components: - type: Transform - anchored: False - pos: 0.5,-329.5 + pos: 1.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 11 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12918 + color: '#0055CCFF' + - uid: 9631 components: - type: Transform - anchored: False - pos: 0.5,-351.5 + rot: 1.5707963267948966 rad + pos: -0.5,-237.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12920 + color: '#0055CCFF' + - uid: 9632 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-345.5 + pos: 1.5,-323.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13402 + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12932 + color: '#0055CCFF' + - uid: 9633 components: - type: Transform pos: 4.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 + color: '#0055CCFF' + - uid: 9634 components: - type: Transform rot: 1.5707963267948966 rad @@ -65311,10 +64867,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12984 + color: '#0055CCFF' + - uid: 9635 components: - type: Transform rot: -1.5707963267948966 rad @@ -65322,10 +64878,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12985 + color: '#0055CCFF' + - uid: 9636 components: - type: Transform rot: -1.5707963267948966 rad @@ -65333,10 +64889,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12986 + color: '#0055CCFF' + - uid: 9637 components: - type: Transform rot: 3.141592653589793 rad @@ -65344,10 +64900,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12987 + color: '#0055CCFF' + - uid: 9638 components: - type: Transform rot: 3.141592653589793 rad @@ -65355,10 +64911,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12988 + color: '#0055CCFF' + - uid: 9639 components: - type: Transform rot: 1.5707963267948966 rad @@ -65366,10 +64922,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12989 + color: '#0055CCFF' + - uid: 9640 components: - type: Transform rot: 1.5707963267948966 rad @@ -65377,74 +64933,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12994 + color: '#0055CCFF' + - uid: 9641 components: - type: Transform pos: 1.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12997 + color: '#0055CCFF' + - uid: 9642 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13077 + color: '#0055CCFF' + - uid: 9643 components: - type: Transform - anchored: False - pos: -3.5,-368.5 + rot: 3.141592653589793 rad + pos: 3.5,-176.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13079 + color: '#0055CCFF' + - uid: 9644 components: - type: Transform - anchored: False - pos: 4.5,-368.5 + rot: -1.5707963267948966 rad + pos: 6.5,-273.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13145 + color: '#0055CCFF' + - uid: 9645 components: - type: Transform - pos: 6.5,-88.5 + rot: -1.5707963267948966 rad + pos: 1.5,-274.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13207 + color: '#0055CCFF' + - uid: 9646 components: - type: Transform - anchored: False - pos: 0.5,-167.5 + pos: 6.5,-88.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 + - 20 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13237 + color: '#0055CCFF' + - uid: 9647 components: - type: Transform rot: -1.5707963267948966 rad @@ -65452,134 +65005,182 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14825 + color: '#0055CCFF' + - uid: 9648 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14826 + color: '#0055CCFF' + - uid: 9649 components: - type: Transform pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14835 + color: '#0055CCFF' + - uid: 9650 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14847 + color: '#0055CCFF' + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-345.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9652 components: - type: Transform pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14848 + color: '#0055CCFF' + - uid: 9653 components: - type: Transform pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14861 + color: '#0055CCFF' + - uid: 9654 components: - type: Transform pos: 5.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14862 + - uid: 9655 components: - type: Transform pos: -4.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14885 + color: '#0055CCFF' + - uid: 9656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-158.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9657 components: - type: Transform pos: -4.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14889 + color: '#0055CCFF' + - uid: 9658 components: - type: Transform pos: 5.5,-130.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14950 + - uid: 9659 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15049 + color: '#0055CCFF' + - uid: 9660 components: - type: Transform pos: -4.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15098 + color: '#0055CCFF' + - uid: 9661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9662 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15112 + color: '#0055CCFF' + - uid: 9663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9664 components: - type: Transform pos: -4.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15119 + color: '#0055CCFF' + - uid: 9665 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15195 + color: '#0055CCFF' + - uid: 9666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-292.5 + rot: 1.5707963267948966 rad + pos: -0.5,-102.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15284 + color: '#0055CCFF' + - uid: 9667 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-254.5 + rot: -1.5707963267948966 rad + pos: 1.5,-129.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16679 + color: '#0055CCFF' + - uid: 9668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-292.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9669 components: - type: Transform rot: 1.5707963267948966 rad @@ -65587,10 +65188,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16990 + color: '#0055CCFF' + - uid: 9670 components: - type: Transform rot: 1.5707963267948966 rad @@ -65598,20 +65199,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 583 + - uid: 9671 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 611 + color: '#990000FF' + - uid: 9672 components: - type: Transform rot: 3.141592653589793 rad @@ -65619,149 +65220,152 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 620 + color: '#990000FF' + - uid: 9673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 645 + color: '#990000FF' + - uid: 9674 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 665 + color: '#990000FF' + - uid: 9675 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 742 + color: '#990000FF' + - uid: 9676 components: - type: Transform - pos: 5.5,1.5 + rot: 3.141592653589793 rad + pos: 4.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 747 + color: '#990000FF' + - uid: 9677 components: - type: Transform - anchored: False - pos: 2.5,-6.5 + pos: 5.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13080 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 751 + color: '#990000FF' + - uid: 9678 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 769 + color: '#990000FF' + - uid: 9679 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 770 + color: '#990000FF' + - uid: 9680 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1022 + color: '#990000FF' + - uid: 9681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-73.5 + rot: -1.5707963267948966 rad + pos: -5.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1139 + color: '#990000FF' + - uid: 9682 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-29.5 + pos: -5.5,-364.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1155 + color: '#990000FF' + - uid: 9683 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: -0.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1191 + color: '#990000FF' + - uid: 9684 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-34.5 + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13110 - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1201 + color: '#990000FF' + - uid: 9685 + components: + - type: Transform + pos: -3.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9686 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1207 + color: '#990000FF' + - uid: 9687 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1222 + color: '#990000FF' + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-271.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9689 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1239 + color: '#990000FF' + - uid: 9690 components: - type: Transform rot: -1.5707963267948966 rad @@ -65769,40 +65373,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1283 + color: '#990000FF' + - uid: 9691 components: - type: Transform pos: 6.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1292 + color: '#990000FF' + - uid: 9692 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1299 + color: '#990000FF' + - uid: 9693 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1324 + color: '#990000FF' + - uid: 9694 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1326 + color: '#990000FF' + - uid: 9695 components: - type: Transform rot: -1.5707963267948966 rad @@ -65810,18 +65414,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1332 + color: '#990000FF' + - uid: 9696 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1378 + color: '#990000FF' + - uid: 9697 components: - type: Transform rot: 3.141592653589793 rad @@ -65829,18 +65433,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 + - 66 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1383 + color: '#990000FF' + - uid: 9698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1409 + color: '#990000FF' + - uid: 9699 components: - type: Transform rot: 1.5707963267948966 rad @@ -65848,41 +65452,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1612 + color: '#990000FF' + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1825 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 2797 + color: '#990000FF' + - uid: 9701 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3027 + color: '#990000FF' + - uid: 9702 components: - type: Transform rot: 3.141592653589793 rad @@ -65890,29 +65479,31 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 8 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3120 + color: '#990000FF' + - uid: 9703 components: - type: Transform - anchored: False - pos: 1.5,-167.5 + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3261 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9704 components: - type: Transform pos: -7.5,-84.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3262 + color: '#990000FF' + - uid: 9705 components: - type: Transform rot: 3.141592653589793 rad @@ -65920,26 +65511,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3279 + color: '#990000FF' + - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3281 + color: '#990000FF' + - uid: 9707 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3284 + color: '#990000FF' + - uid: 9708 components: - type: Transform rot: -1.5707963267948966 rad @@ -65947,24 +65538,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3285 - components: - - type: Transform - pos: -3.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3309 + color: '#990000FF' + - uid: 9709 components: - type: Transform pos: 1.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3310 + color: '#990000FF' + - uid: 9710 components: - type: Transform rot: -1.5707963267948966 rad @@ -65972,10 +65556,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3314 + color: '#990000FF' + - uid: 9711 components: - type: Transform rot: -1.5707963267948966 rad @@ -65983,18 +65567,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 + - 22 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3326 + color: '#990000FF' + - uid: 9712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3513 + color: '#990000FF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9714 components: - type: Transform rot: -1.5707963267948966 rad @@ -66002,10 +65594,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3549 + color: '#990000FF' + - uid: 9715 components: - type: Transform rot: -1.5707963267948966 rad @@ -66013,10 +65605,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3550 + color: '#990000FF' + - uid: 9716 components: - type: Transform rot: -1.5707963267948966 rad @@ -66024,10 +65616,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3551 + color: '#990000FF' + - uid: 9717 components: - type: Transform rot: -1.5707963267948966 rad @@ -66035,10 +65627,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3552 + color: '#990000FF' + - uid: 9718 components: - type: Transform rot: -1.5707963267948966 rad @@ -66046,10 +65638,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3553 + color: '#990000FF' + - uid: 9719 components: - type: Transform rot: -1.5707963267948966 rad @@ -66057,57 +65649,50 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3598 + color: '#990000FF' + - uid: 9720 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3599 + color: '#990000FF' + - uid: 9721 components: - type: Transform pos: -0.5,-117.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3600 + color: '#990000FF' + - uid: 9722 components: - type: Transform - anchored: False - pos: -0.5,-120.5 + rot: -1.5707963267948966 rad + pos: 0.5,-119.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3603 + color: '#990000FF' + - uid: 9723 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-123.5 + rot: 1.5707963267948966 rad + pos: -1.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3608 + color: '#990000FF' + - uid: 9724 components: - type: Transform rot: 1.5707963267948966 rad @@ -66115,10 +65700,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3622 + color: '#990000FF' + - uid: 9725 components: - type: Transform anchored: False @@ -66130,15 +65715,15 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3623 + - uid: 9726 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3630 + color: '#990000FF' + - uid: 9727 components: - type: Transform rot: 3.141592653589793 rad @@ -66146,24 +65731,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3631 + color: '#990000FF' + - uid: 9728 components: - type: Transform pos: 1.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3632 + color: '#990000FF' + - uid: 9729 components: - type: Transform pos: -4.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3637 + color: '#990000FF' + - uid: 9730 components: - type: Transform anchored: False @@ -66175,7 +65760,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3647 + - uid: 9731 components: - type: Transform rot: -1.5707963267948966 rad @@ -66183,42 +65768,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 + - 31 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3672 + color: '#990000FF' + - uid: 9732 components: - type: Transform pos: 1.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3874 + color: '#990000FF' + - uid: 9733 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3944 + color: '#990000FF' + - uid: 9734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-221.5 + parent: 2 + - uid: 9735 components: - type: Transform pos: 1.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3954 + color: '#990000FF' + - uid: 9736 components: - type: Transform pos: 6.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 + - 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3980 + color: '#990000FF' + - uid: 9737 components: - type: Transform rot: 3.141592653589793 rad @@ -66226,10 +65817,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3982 + color: '#990000FF' + - uid: 9738 components: - type: Transform anchored: False @@ -66241,7 +65832,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3993 + - uid: 9739 components: - type: Transform rot: 1.5707963267948966 rad @@ -66249,26 +65840,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4012 + color: '#990000FF' + - uid: 9740 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4013 + color: '#990000FF' + - uid: 9741 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4037 + color: '#990000FF' + - uid: 9742 components: - type: Transform rot: 1.5707963267948966 rad @@ -66276,72 +65867,59 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4050 + color: '#990000FF' + - uid: 9743 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4055 + color: '#990000FF' + - uid: 9744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4056 + color: '#990000FF' + - uid: 9745 components: - type: Transform pos: -4.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4149 + color: '#990000FF' + - uid: 9746 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4150 + color: '#990000FF' + - uid: 9747 components: - type: Transform pos: 1.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4171 + color: '#990000FF' + - uid: 9748 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 4508 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 4.5,-88.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4509 + color: '#990000FF' + - uid: 9749 components: - type: Transform rot: -1.5707963267948966 rad @@ -66349,18 +65927,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 23 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4554 + color: '#990000FF' + - uid: 9750 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4556 + color: '#990000FF' + - uid: 9751 components: - type: Transform rot: 1.5707963267948966 rad @@ -66368,10 +65946,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4670 + color: '#990000FF' + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-177.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9753 + components: + - type: Transform + pos: -1.5,-173.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9754 components: - type: Transform rot: 3.141592653589793 rad @@ -66379,134 +65975,125 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4942 + - uid: 9755 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4943 + color: '#990000FF' + - uid: 9756 components: - type: Transform pos: 1.5,-214.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4981 + - uid: 9757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-205.5 + rot: -1.5707963267948966 rad + pos: 0.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 70 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5068 + color: '#990000FF' + - uid: 9758 components: - type: Transform - pos: -2.5,-204.5 + rot: 1.5707963267948966 rad + pos: -4.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5069 + color: '#990000FF' + - uid: 9759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-208.5 + rot: 1.5707963267948966 rad + pos: 15.5,-257.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5070 + color: '#990000FF' + - uid: 9760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-206.5 + pos: -2.5,-204.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5072 + color: '#990000FF' + - uid: 9761 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 1.5,-194.5 + pos: -0.5,-208.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13249 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5073 + color: '#990000FF' + - uid: 9762 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-190.5 + pos: 4.5,-206.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 45 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5107 + color: '#990000FF' + - uid: 9763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-197.5 + pos: -5.5,-344.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 62 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5178 + color: '#990000FF' + - uid: 9764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-229.5 + pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5179 + color: '#990000FF' + - uid: 9765 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 4.5,-229.5 + pos: -5.5,-197.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5185 + - uid: 9766 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,-229.5 + rot: -1.5707963267948966 rad + pos: -3.5,-229.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5188 + - uid: 9767 components: - type: Transform rot: 1.5707963267948966 rad @@ -66514,7 +66101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5189 + - uid: 9768 components: - type: Transform anchored: False @@ -66526,382 +66113,352 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5190 + - uid: 9769 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 + rot: 3.141592653589793 rad + pos: 1.5,-299.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5225 + color: '#990000FF' + - uid: 9770 components: - type: Transform pos: -6.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5252 + color: '#990000FF' + - uid: 9771 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-178.5 + pos: 1.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5275 + color: '#990000FF' + - uid: 9772 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -1.5,-174.5 + rot: -1.5707963267948966 rad + pos: 2.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5277 + color: '#990000FF' + - uid: 9773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-175.5 + rot: -1.5707963267948966 rad + pos: 3.5,-168.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 41 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5301 + color: '#990000FF' + - uid: 9774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-163.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-168.5 + pos: 7.5,-172.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 7 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5312 + color: '#990000FF' + - uid: 9776 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-163.5 + pos: -2.5,-362.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5346 + color: '#990000FF' + - uid: 9777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-172.5 + rot: 3.141592653589793 rad + pos: 3.5,-362.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6198 + color: '#990000FF' + - uid: 9778 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7453 + color: '#990000FF' + - uid: 9779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-262.5 + pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7476 + color: '#990000FF' + - uid: 9780 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 16.5,-256.5 + rot: 1.5707963267948966 rad + pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 65 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7563 + color: '#990000FF' + - uid: 9781 components: - type: Transform - pos: 10.5,-253.5 + rot: 1.5707963267948966 rad + pos: 6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7776 + color: '#990000FF' + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-190.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9783 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 18.5,-249.5 + pos: -0.5,-262.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-175.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 7 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7823 + color: '#990000FF' + - uid: 9785 + components: + - type: Transform + pos: 10.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9786 components: - type: Transform pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7881 + color: '#990000FF' + - uid: 9787 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7882 + color: '#990000FF' + - uid: 9788 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8063 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8089 + color: '#990000FF' + - uid: 9789 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 8.5,-256.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 11 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8091 + color: '#990000FF' + - uid: 9790 components: - type: Transform pos: 4.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8209 + color: '#990000FF' + - uid: 9791 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8883 + color: '#990000FF' + - uid: 9792 components: - type: Transform pos: 1.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9953 + color: '#990000FF' + - uid: 9793 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10972 + color: '#990000FF' + - uid: 9794 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10973 + color: '#990000FF' + - uid: 9795 components: - type: Transform pos: 6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11912 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-361.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12134 + color: '#990000FF' + - uid: 9796 components: - type: Transform pos: 1.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12224 + color: '#990000FF' + - uid: 9797 components: - type: Transform pos: 7.5,-281.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 54 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12240 + color: '#990000FF' + - uid: 9798 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12246 + color: '#990000FF' + - uid: 9799 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12297 - components: - - type: Transform - pos: -5.5,-274.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2277 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12298 + color: '#990000FF' + - uid: 9800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-284.5 + pos: -0.5,-228.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12322 + color: '#990000FF' + - uid: 9801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-271.5 + pos: -5.5,-274.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 5 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12340 + color: '#990000FF' + - uid: 9802 components: - type: Transform - anchored: False - pos: 1.5,-274.5 + rot: 3.141592653589793 rad + pos: -5.5,-284.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 53 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12355 + color: '#990000FF' + - uid: 9803 components: - type: Transform - anchored: False - pos: -0.5,-286.5 + pos: -2.5,-260.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12375 + color: '#990000FF' + - uid: 9804 components: - type: Transform pos: 1.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12399 + color: '#990000FF' + - uid: 9805 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12433 + color: '#990000FF' + - uid: 9806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-314.5 + pos: 0.5,-272.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12444 + color: '#990000FF' + - uid: 9807 components: - type: Transform pos: 4.5,-318.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12502 + color: '#990000FF' + - uid: 9808 components: - type: Transform rot: -1.5707963267948966 rad @@ -66909,33 +66466,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 + - 56 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12507 + color: '#990000FF' + - uid: 9809 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12530 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-319.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12564 + color: '#990000FF' + - uid: 9810 components: - type: Transform rot: 1.5707963267948966 rad @@ -66943,10 +66485,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 60 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12581 + color: '#990000FF' + - uid: 9811 components: - type: Transform rot: 1.5707963267948966 rad @@ -66954,263 +66496,190 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 59 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12621 + color: '#990000FF' + - uid: 9812 components: - type: Transform pos: -5.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12653 - components: - - type: Transform - pos: 1.5,-327.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12704 + color: '#990000FF' + - uid: 9813 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-298.5 + rot: 1.5707963267948966 rad + pos: 0.5,-345.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 9 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12721 + color: '#990000FF' + - uid: 9814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-331.5 + pos: 1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12782 + color: '#990000FF' + - uid: 9815 components: - type: Transform - pos: -4.5,-330.5 + rot: -1.5707963267948966 rad + pos: 4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12798 + color: '#990000FF' + - uid: 9816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-340.5 + pos: 1.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 + - 12 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12811 + color: '#990000FF' + - uid: 9817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-348.5 + pos: -4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12812 + color: '#990000FF' + - uid: 9818 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 0.5,-346.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12813 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -4.5,-344.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13402 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12896 - components: - - type: Transform - anchored: False - pos: 1.5,-329.5 + pos: -5.5,-340.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 10 + - 6 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12914 + color: '#990000FF' + - uid: 9819 components: - type: Transform - pos: 1.5,-354.5 + rot: 3.141592653589793 rad + pos: -0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12933 + color: '#990000FF' + - uid: 9820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-357.5 + pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 14 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12944 + color: '#990000FF' + - uid: 9821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-357.5 + rot: -1.5707963267948966 rad + pos: 6.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13039 + color: '#990000FF' + - uid: 9822 components: - type: Transform - pos: 7.5,-360.5 + rot: 1.5707963267948966 rad + pos: 0.5,-193.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13040 + color: '#990000FF' + - uid: 9823 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-363.5 + pos: 1.5,-354.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13041 + color: '#990000FF' + - uid: 9824 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 7.5,-363.5 + rot: -1.5707963267948966 rad + pos: 5.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13053 + color: '#990000FF' + - uid: 9825 components: - type: Transform - anchored: False - pos: 0.5,-365.5 + rot: 1.5707963267948966 rad + pos: -3.5,-357.5 parent: 2 - type: DeviceNetwork - deviceLists: - - 13429 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13055 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-367.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13067 + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-366.5 + rot: -1.5707963267948966 rad + pos: 19.5,-249.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13068 + color: '#990000FF' + - uid: 9827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-366.5 + pos: 7.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13081 + color: '#990000FF' + - uid: 9828 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-361.5 + pos: 6.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13082 + color: '#990000FF' + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -2.5,-361.5 + pos: 6.5,-367.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13088 + color: '#990000FF' + - uid: 9831 components: - type: Transform rot: 3.141592653589793 rad @@ -67218,10 +66687,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13094 + color: '#990000FF' + - uid: 9832 components: - type: Transform rot: 3.141592653589793 rad @@ -67229,10 +66698,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13236 + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 components: - type: Transform rot: -1.5707963267948966 rad @@ -67240,57 +66717,32 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14427 + color: '#990000FF' + - uid: 9835 components: - type: Transform pos: 14.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14428 + - uid: 9836 components: - type: Transform pos: 16.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15161 + - uid: 9837 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-116.5 parent: 2 - - uid: 15283 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-257.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15282 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16999 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-248.5 - parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 17001 + color: '#990000FF' + - uid: 9838 components: - type: Transform rot: 1.5707963267948966 rad @@ -67298,3948 +66750,3948 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - - uid: 2921 + - uid: 9839 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-246.5 parent: 2 - - uid: 7198 + - uid: 9840 components: - type: Transform pos: -16.5,-246.5 parent: 2 - proto: Gateway entities: - - uid: 2226 + - uid: 9841 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 5317 + - uid: 9842 components: - type: Transform pos: -3.5,-254.5 parent: 2 - - uid: 10659 + - uid: 9843 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10754 + - uid: 9844 components: - type: Transform pos: 4.5,-15.5 parent: 2 - proto: Gauze entities: - - uid: 3682 + - uid: 9845 components: - type: Transform pos: 3.5643053,-171.28004 parent: 2 - - uid: 3697 + - uid: 9846 components: - type: Transform pos: 3.3926184,-171.42528 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 2465 + - uid: 9847 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 2466 + - uid: 9848 components: - type: Transform pos: 21.5,-306.5 parent: 2 - proto: GravityGenerator entities: - - uid: 8925 + - uid: 9849 components: - type: Transform pos: 16.5,-264.5 parent: 2 - proto: Grille entities: - - uid: 4 + - uid: 9850 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 5 + - uid: 9851 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 6 + - uid: 9852 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 7 + - uid: 9853 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 8 + - uid: 9854 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 117 + - uid: 9855 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 151 + - uid: 9856 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 152 + - uid: 9857 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 234 + - uid: 9858 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 235 + - uid: 9859 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 236 + - uid: 9860 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 237 + - uid: 9861 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 238 + - uid: 9862 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 239 + - uid: 9863 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 365 + - uid: 9864 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 386 + - uid: 9865 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 388 + - uid: 9866 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 509 + - uid: 9867 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 511 + - uid: 9868 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 512 + - uid: 9869 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 531 + - uid: 9870 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 586 + - uid: 9871 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 912 + - uid: 9872 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 919 + - uid: 9873 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 2 - - uid: 947 + - uid: 9874 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 962 + - uid: 9875 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 970 + - uid: 9876 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 974 + - uid: 9877 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 985 + - uid: 9878 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 - - uid: 1027 + - uid: 9879 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 1064 + - uid: 9880 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 1124 + - uid: 9881 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 1143 + - uid: 9882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 - - uid: 1225 + - uid: 9883 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 1257 + - uid: 9884 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 1381 + - uid: 9885 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1422 + - uid: 9886 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 1432 + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1460 + - uid: 9888 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 1479 + - uid: 9889 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 1480 + - uid: 9890 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 1481 + - uid: 9891 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 1482 + - uid: 9892 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1500 + - uid: 9893 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1501 + - uid: 9894 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1503 + - uid: 9895 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1504 + - uid: 9896 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1520 + - uid: 9897 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1521 + - uid: 9898 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1522 + - uid: 9899 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1523 + - uid: 9900 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1524 + - uid: 9901 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1525 + - uid: 9902 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1526 + - uid: 9903 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1527 + - uid: 9904 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1528 + - uid: 9905 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1529 + - uid: 9906 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1530 + - uid: 9907 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1531 + - uid: 9908 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1532 + - uid: 9909 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1672 + - uid: 9910 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 1673 + - uid: 9911 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 1708 + - uid: 9912 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 1719 + - uid: 9913 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 1727 + - uid: 9914 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 1728 + - uid: 9915 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 1771 + - uid: 9916 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1772 + - uid: 9917 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 1773 + - uid: 9918 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1777 + - uid: 9919 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1963 + - uid: 9920 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 1973 + - uid: 9921 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1975 + - uid: 9922 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 1977 + - uid: 9923 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1978 + - uid: 9924 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1979 + - uid: 9925 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1980 + - uid: 9926 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1981 + - uid: 9927 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1982 + - uid: 9928 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1983 + - uid: 9929 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1984 + - uid: 9930 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1985 + - uid: 9931 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1986 + - uid: 9932 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2131 + - uid: 9933 components: - type: Transform pos: -15.5,-167.5 parent: 2 - - uid: 2148 + - uid: 9934 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2177 + - uid: 9935 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2180 + - uid: 9936 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2182 + - uid: 9937 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2183 + - uid: 9938 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2212 + - uid: 9939 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2215 + - uid: 9940 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2216 + - uid: 9941 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2287 + - uid: 9942 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 2 - - uid: 2360 + - uid: 9943 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 2418 + - uid: 9944 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 2474 + - uid: 9945 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 2507 + - uid: 9946 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 2596 + - uid: 9947 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2599 + - uid: 9948 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2600 + - uid: 9949 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2601 + - uid: 9950 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2602 + - uid: 9951 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2657 + - uid: 9952 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 2747 + - uid: 9953 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 2786 + - uid: 9954 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2789 + - uid: 9955 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2790 + - uid: 9956 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2795 + - uid: 9957 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2796 + - uid: 9958 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2839 + - uid: 9959 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 2840 + - uid: 9960 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 2959 + - uid: 9961 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2960 + - uid: 9962 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2961 + - uid: 9963 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2962 + - uid: 9964 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2967 + - uid: 9965 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2968 + - uid: 9966 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 2969 + - uid: 9967 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2970 + - uid: 9968 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2975 + - uid: 9969 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2976 + - uid: 9970 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2977 + - uid: 9971 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3007 + - uid: 9972 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3535 + - uid: 9973 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 3538 + - uid: 9974 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 3541 + - uid: 9975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 3727 + - uid: 9976 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3728 + - uid: 9977 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3729 + - uid: 9978 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3741 + - uid: 9979 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 3757 + - uid: 9980 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 3758 + - uid: 9981 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 3842 + - uid: 9982 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3853 + - uid: 9983 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3854 + - uid: 9984 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 3856 + - uid: 9985 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3857 + - uid: 9986 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3858 + - uid: 9987 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3859 + - uid: 9988 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3872 + - uid: 9989 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 3913 + - uid: 9990 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3914 + - uid: 9991 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3915 + - uid: 9992 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3987 + - uid: 9993 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,16.5 parent: 2 - - uid: 4187 + - uid: 9994 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 4252 + - uid: 9995 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4253 + - uid: 9996 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4268 + - uid: 9997 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4269 + - uid: 9998 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4278 + - uid: 9999 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4279 + - uid: 10000 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4287 + - uid: 10001 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4288 + - uid: 10002 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4289 + - uid: 10003 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4290 + - uid: 10004 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4330 + - uid: 10005 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4333 + - uid: 10006 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4334 + - uid: 10007 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4342 + - uid: 10008 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-218.5 parent: 2 - - uid: 4343 + - uid: 10009 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4439 + - uid: 10010 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-217.5 parent: 2 - - uid: 4505 + - uid: 10011 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-219.5 parent: 2 - - uid: 4507 + - uid: 10012 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 5079 + - uid: 10013 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 5085 + - uid: 10014 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-339.5 parent: 2 - - uid: 5209 + - uid: 10015 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 5282 + - uid: 10016 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-346.5 parent: 2 - - uid: 5291 + - uid: 10017 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-345.5 parent: 2 - - uid: 5501 + - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-340.5 parent: 2 - - uid: 5842 + - uid: 10019 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 5852 + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-117.5 parent: 2 - - uid: 6626 + - uid: 10021 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 6664 + - uid: 10022 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 6665 + - uid: 10023 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6666 + - uid: 10024 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6685 + - uid: 10025 components: - type: Transform pos: -18.5,-343.5 parent: 2 - - uid: 6687 + - uid: 10026 components: - type: Transform pos: -18.5,-341.5 parent: 2 - - uid: 6695 + - uid: 10027 components: - type: Transform pos: -17.5,-347.5 parent: 2 - - uid: 6703 + - uid: 10028 components: - type: Transform pos: -19.5,-331.5 parent: 2 - - uid: 6706 + - uid: 10029 components: - type: Transform pos: -20.5,-330.5 parent: 2 - - uid: 6881 + - uid: 10030 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6916 + - uid: 10031 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 7001 + - uid: 10032 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 7319 + - uid: 10033 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7479 + - uid: 10034 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 2 - - uid: 7510 + - uid: 10035 components: - type: Transform pos: 12.5,-159.5 parent: 2 - - uid: 7511 + - uid: 10036 components: - type: Transform pos: 12.5,-160.5 parent: 2 - - uid: 7512 + - uid: 10037 components: - type: Transform pos: 18.5,-159.5 parent: 2 - - uid: 7513 + - uid: 10038 components: - type: Transform pos: 18.5,-160.5 parent: 2 - - uid: 7514 + - uid: 10039 components: - type: Transform pos: 18.5,-165.5 parent: 2 - - uid: 7515 + - uid: 10040 components: - type: Transform pos: 18.5,-166.5 parent: 2 - - uid: 7516 + - uid: 10041 components: - type: Transform pos: 12.5,-153.5 parent: 2 - - uid: 7517 + - uid: 10042 components: - type: Transform pos: 12.5,-152.5 parent: 2 - - uid: 7518 + - uid: 10043 components: - type: Transform pos: 18.5,-153.5 parent: 2 - - uid: 7519 + - uid: 10044 components: - type: Transform pos: 18.5,-152.5 parent: 2 - - uid: 7520 + - uid: 10045 components: - type: Transform pos: 18.5,-147.5 parent: 2 - - uid: 7523 + - uid: 10046 components: - type: Transform pos: 18.5,-144.5 parent: 2 - - uid: 7524 + - uid: 10047 components: - type: Transform pos: 12.5,-147.5 parent: 2 - - uid: 7525 + - uid: 10048 components: - type: Transform pos: 12.5,-146.5 parent: 2 - - uid: 7526 + - uid: 10049 components: - type: Transform pos: 12.5,-145.5 parent: 2 - - uid: 7527 + - uid: 10050 components: - type: Transform pos: 12.5,-144.5 parent: 2 - - uid: 7528 + - uid: 10051 components: - type: Transform pos: 12.5,-139.5 parent: 2 - - uid: 7529 + - uid: 10052 components: - type: Transform pos: 12.5,-138.5 parent: 2 - - uid: 7530 + - uid: 10053 components: - type: Transform pos: 18.5,-139.5 parent: 2 - - uid: 7531 + - uid: 10054 components: - type: Transform pos: 18.5,-138.5 parent: 2 - - uid: 7553 + - uid: 10055 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 7623 + - uid: 10056 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 7667 + - uid: 10057 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 7691 + - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7692 + - uid: 10059 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7693 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7694 + - uid: 10061 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7695 + - uid: 10062 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7696 + - uid: 10063 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7697 + - uid: 10064 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7698 + - uid: 10065 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7796 + - uid: 10066 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-249.5 parent: 2 - - uid: 7844 + - uid: 10067 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 7869 + - uid: 10068 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 7934 + - uid: 10069 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 2 - - uid: 8002 + - uid: 10070 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 8052 + - uid: 10071 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 8096 + - uid: 10072 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 2 - - uid: 8127 + - uid: 10073 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 8129 + - uid: 10074 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 8133 + - uid: 10075 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 8165 + - uid: 10076 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 8166 + - uid: 10077 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 8199 + - uid: 10078 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 8219 + - uid: 10079 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 8235 + - uid: 10080 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8260 + - uid: 10081 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-329.5 parent: 2 - - uid: 8394 + - uid: 10082 components: - type: Transform pos: -19.5,-336.5 parent: 2 - - uid: 8413 + - uid: 10083 components: - type: Transform pos: -17.5,-348.5 parent: 2 - - uid: 8415 + - uid: 10084 components: - type: Transform pos: -18.5,-340.5 parent: 2 - - uid: 8417 + - uid: 10085 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8425 + - uid: 10086 components: - type: Transform pos: -19.5,-334.5 parent: 2 - - uid: 8450 + - uid: 10087 components: - type: Transform pos: -18.5,-338.5 parent: 2 - - uid: 8455 + - uid: 10088 components: - type: Transform pos: -18.5,-344.5 parent: 2 - - uid: 8508 + - uid: 10089 components: - type: Transform pos: -3.5,-273.5 parent: 2 - - uid: 8510 + - uid: 10090 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8511 + - uid: 10091 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8529 + - uid: 10092 components: - type: Transform pos: -20.5,-327.5 parent: 2 - - uid: 8535 + - uid: 10093 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 8545 + - uid: 10094 components: - type: Transform pos: -20.5,-329.5 parent: 2 - - uid: 8609 + - uid: 10095 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8610 + - uid: 10096 components: - type: Transform pos: -19.5,-335.5 parent: 2 - - uid: 8613 + - uid: 10097 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8614 + - uid: 10098 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8615 + - uid: 10099 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8624 + - uid: 10100 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8637 + - uid: 10101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-276.5 parent: 2 - - uid: 8640 + - uid: 10102 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-275.5 parent: 2 - - uid: 8659 + - uid: 10103 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8665 + - uid: 10104 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8667 + - uid: 10105 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8680 + - uid: 10106 components: - type: Transform pos: -1.5,-282.5 parent: 2 - - uid: 8695 + - uid: 10107 components: - type: Transform pos: -0.5,-283.5 parent: 2 - - uid: 8790 + - uid: 10108 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 8802 + - uid: 10109 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 9002 + - uid: 10110 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9016 + - uid: 10111 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 9391 + - uid: 10112 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 2 - - uid: 9392 + - uid: 10113 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 2 - - uid: 9434 + - uid: 10114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 2 - - uid: 9435 + - uid: 10115 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,25.5 parent: 2 - - uid: 9505 + - uid: 10116 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9506 + - uid: 10117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9507 + - uid: 10118 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9508 + - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9509 + - uid: 10120 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9510 + - uid: 10121 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9523 + - uid: 10122 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9524 + - uid: 10123 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9525 + - uid: 10124 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9526 + - uid: 10125 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9527 + - uid: 10126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9528 + - uid: 10127 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 9529 + - uid: 10128 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9530 + - uid: 10129 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9531 + - uid: 10130 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9532 + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9533 + - uid: 10132 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9817 + - uid: 10133 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 9859 + - uid: 10134 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9861 + - uid: 10135 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 9871 + - uid: 10136 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 9957 + - uid: 10137 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 9958 + - uid: 10138 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-309.5 parent: 2 - - uid: 9959 + - uid: 10139 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-305.5 parent: 2 - - uid: 9960 + - uid: 10140 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-304.5 parent: 2 - - uid: 9999 + - uid: 10141 components: - type: Transform pos: -7.5,-312.5 parent: 2 - - uid: 10019 + - uid: 10142 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-316.5 parent: 2 - - uid: 10020 + - uid: 10143 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-316.5 parent: 2 - - uid: 10060 + - uid: 10144 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-305.5 parent: 2 - - uid: 10061 + - uid: 10145 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-309.5 parent: 2 - - uid: 10070 + - uid: 10146 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 10071 + - uid: 10147 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 10072 + - uid: 10148 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 10073 + - uid: 10149 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 10076 + - uid: 10150 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 10138 + - uid: 10151 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10139 + - uid: 10152 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 10140 + - uid: 10153 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 10141 + - uid: 10154 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 10153 + - uid: 10155 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 10154 + - uid: 10156 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 10155 + - uid: 10157 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 10156 + - uid: 10158 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 10157 + - uid: 10159 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 10158 + - uid: 10160 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 10701 + - uid: 10161 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 - - uid: 10752 + - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 10828 + - uid: 10163 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - - uid: 10830 + - uid: 10164 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10935 + - uid: 10165 components: - type: Transform pos: -19.5,-87.5 parent: 2 - - uid: 10977 + - uid: 10166 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 11001 + - uid: 10167 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 2 - - uid: 11052 + - uid: 10168 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 11053 + - uid: 10169 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11054 + - uid: 10170 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11055 + - uid: 10171 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11056 + - uid: 10172 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11224 + - uid: 10173 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-370.5 parent: 2 - - uid: 11262 + - uid: 10174 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11306 + - uid: 10175 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 11307 + - uid: 10176 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-367.5 parent: 2 - - uid: 11308 + - uid: 10177 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-366.5 parent: 2 - - uid: 11309 + - uid: 10178 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-364.5 parent: 2 - - uid: 11310 + - uid: 10179 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-363.5 parent: 2 - - uid: 11313 + - uid: 10180 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-371.5 parent: 2 - - uid: 11314 + - uid: 10181 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-372.5 parent: 2 - - uid: 11316 + - uid: 10182 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-372.5 parent: 2 - - uid: 11317 + - uid: 10183 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-371.5 parent: 2 - - uid: 11318 + - uid: 10184 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-370.5 parent: 2 - - uid: 11319 + - uid: 10185 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-367.5 parent: 2 - - uid: 11320 + - uid: 10186 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-366.5 parent: 2 - - uid: 11322 + - uid: 10187 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11323 + - uid: 10188 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-364.5 parent: 2 - - uid: 11324 + - uid: 10189 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-363.5 parent: 2 - - uid: 11325 + - uid: 10190 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-361.5 parent: 2 - - uid: 11326 + - uid: 10191 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-360.5 parent: 2 - - uid: 11394 + - uid: 10192 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11395 + - uid: 10193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11396 + - uid: 10194 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11397 + - uid: 10195 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11398 + - uid: 10196 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11399 + - uid: 10197 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11400 + - uid: 10198 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11401 + - uid: 10199 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11413 + - uid: 10200 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 11414 + - uid: 10201 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 11415 + - uid: 10202 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 11416 + - uid: 10203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 11548 + - uid: 10204 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-330.5 parent: 2 - - uid: 11880 + - uid: 10205 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-341.5 parent: 2 - - uid: 11898 + - uid: 10206 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-335.5 parent: 2 - - uid: 11981 + - uid: 10207 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 12111 + - uid: 10208 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 12243 + - uid: 10209 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 12473 + - uid: 10210 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 12518 + - uid: 10211 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 12609 + - uid: 10212 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12692 + - uid: 10213 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 12772 + - uid: 10214 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 - - uid: 13272 + - uid: 10215 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 13280 + - uid: 10216 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-343.5 parent: 2 - - uid: 13286 + - uid: 10217 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-348.5 parent: 2 - - uid: 13289 + - uid: 10218 components: - type: Transform pos: 14.5,-373.5 parent: 2 - - uid: 13297 + - uid: 10219 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 13298 + - uid: 10220 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13447 + - uid: 10221 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-340.5 parent: 2 - - uid: 13455 + - uid: 10222 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 13459 + - uid: 10223 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-327.5 parent: 2 - - uid: 13474 + - uid: 10224 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-334.5 parent: 2 - - uid: 13820 + - uid: 10225 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-336.5 parent: 2 - - uid: 13989 + - uid: 10226 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-332.5 parent: 2 - - uid: 14000 + - uid: 10227 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 14008 + - uid: 10228 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-330.5 parent: 2 - - uid: 14326 + - uid: 10229 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 14327 + - uid: 10230 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 14328 + - uid: 10231 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14329 + - uid: 10232 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14330 + - uid: 10233 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 14416 + - uid: 10234 components: - type: Transform pos: 14.5,-76.5 parent: 2 - - uid: 14417 + - uid: 10235 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14687 + - uid: 10236 components: - type: Transform pos: -14.5,-365.5 parent: 2 - - uid: 14688 + - uid: 10237 components: - type: Transform pos: -13.5,-368.5 parent: 2 - - uid: 14797 + - uid: 10238 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 14917 + - uid: 10239 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 15799 + - uid: 10240 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 15801 + - uid: 10241 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 - - uid: 15802 + - uid: 10242 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,17.5 parent: 2 - - uid: 15803 + - uid: 10243 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2 - - uid: 15805 + - uid: 10244 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 2 - - uid: 15806 + - uid: 10245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 - - uid: 15807 + - uid: 10246 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,13.5 parent: 2 - - uid: 15808 + - uid: 10247 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 15810 + - uid: 10248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 2 - - uid: 15813 + - uid: 10249 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 15821 + - uid: 10250 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 - - uid: 15822 + - uid: 10251 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 2 - - uid: 15824 + - uid: 10252 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,11.5 parent: 2 - - uid: 15825 + - uid: 10253 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,11.5 parent: 2 - - uid: 15826 + - uid: 10254 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 2 - - uid: 15827 + - uid: 10255 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 2 - - uid: 15828 + - uid: 10256 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 2 - - uid: 15829 + - uid: 10257 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 2 - - uid: 15830 + - uid: 10258 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 2 - - uid: 15831 + - uid: 10259 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 - - uid: 15832 + - uid: 10260 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 - - uid: 15833 + - uid: 10261 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 15834 + - uid: 10262 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 - - uid: 15835 + - uid: 10263 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,8.5 parent: 2 - - uid: 15836 + - uid: 10264 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,7.5 parent: 2 - - uid: 15837 + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,7.5 parent: 2 - - uid: 15838 + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,6.5 parent: 2 - - uid: 15839 + - uid: 10267 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 2 - - uid: 15840 + - uid: 10268 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 - - uid: 15841 + - uid: 10269 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,6.5 parent: 2 - - uid: 15842 + - uid: 10270 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 - - uid: 15843 + - uid: 10271 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 - - uid: 15844 + - uid: 10272 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 2 - - uid: 15845 + - uid: 10273 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 - - uid: 15846 + - uid: 10274 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 - - uid: 15847 + - uid: 10275 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 2 - - uid: 15848 + - uid: 10276 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,11.5 parent: 2 - - uid: 15849 + - uid: 10277 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,11.5 parent: 2 - - uid: 15850 + - uid: 10278 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,11.5 parent: 2 - - uid: 15852 + - uid: 10279 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,11.5 parent: 2 - - uid: 15853 + - uid: 10280 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 - - uid: 15902 + - uid: 10281 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-0.5 parent: 2 - - uid: 15903 + - uid: 10282 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 15904 + - uid: 10283 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,0.5 parent: 2 - - uid: 15905 + - uid: 10284 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - - uid: 15906 + - uid: 10285 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,1.5 parent: 2 - - uid: 15907 + - uid: 10286 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,1.5 parent: 2 - - uid: 15910 + - uid: 10287 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-0.5 parent: 2 - - uid: 15911 + - uid: 10288 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-0.5 parent: 2 - - uid: 15912 + - uid: 10289 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,0.5 parent: 2 - - uid: 15913 + - uid: 10290 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 parent: 2 - - uid: 15914 + - uid: 10291 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,1.5 parent: 2 - - uid: 15915 + - uid: 10292 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - - uid: 15924 + - uid: 10293 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-27.5 parent: 2 - - uid: 15925 + - uid: 10294 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-27.5 parent: 2 - - uid: 15926 + - uid: 10295 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-27.5 parent: 2 - - uid: 15927 + - uid: 10296 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-27.5 parent: 2 - - uid: 15940 + - uid: 10297 components: - type: Transform pos: 18.5,-6.5 parent: 2 - - uid: 15943 + - uid: 10298 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 15944 + - uid: 10299 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-26.5 parent: 2 - - uid: 15948 + - uid: 10300 components: - type: Transform pos: -19.5,-137.5 parent: 2 - - uid: 15961 + - uid: 10301 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 - - uid: 15962 + - uid: 10302 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 - - uid: 15967 + - uid: 10303 components: - type: Transform pos: -17.5,8.5 parent: 2 - - uid: 15968 + - uid: 10304 components: - type: Transform pos: -17.5,-5.5 parent: 2 - - uid: 15969 + - uid: 10305 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 15975 + - uid: 10306 components: - type: Transform pos: -17.5,7.5 parent: 2 - - uid: 15976 + - uid: 10307 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 15977 + - uid: 10308 components: - type: Transform pos: -17.5,6.5 parent: 2 - - uid: 15978 + - uid: 10309 components: - type: Transform pos: -17.5,3.5 parent: 2 - - uid: 15979 + - uid: 10310 components: - type: Transform pos: -17.5,-7.5 parent: 2 - - uid: 15980 + - uid: 10311 components: - type: Transform pos: -17.5,2.5 parent: 2 - - uid: 15981 + - uid: 10312 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 16005 + - uid: 10313 components: - type: Transform pos: -19.5,-85.5 parent: 2 - - uid: 16006 + - uid: 10314 components: - type: Transform pos: -19.5,-88.5 parent: 2 - - uid: 16007 + - uid: 10315 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 16008 + - uid: 10316 components: - type: Transform pos: -17.5,-99.5 parent: 2 - - uid: 16110 + - uid: 10317 components: - type: Transform pos: -17.5,-127.5 parent: 2 - - uid: 16111 + - uid: 10318 components: - type: Transform pos: -20.5,-107.5 parent: 2 - - uid: 16112 + - uid: 10319 components: - type: Transform pos: -17.5,-125.5 parent: 2 - - uid: 16113 + - uid: 10320 components: - type: Transform pos: -17.5,-124.5 parent: 2 - - uid: 16114 + - uid: 10321 components: - type: Transform pos: -18.5,-121.5 parent: 2 - - uid: 16115 + - uid: 10322 components: - type: Transform pos: -18.5,-120.5 parent: 2 - - uid: 16116 + - uid: 10323 components: - type: Transform pos: -18.5,-119.5 parent: 2 - - uid: 16117 + - uid: 10324 components: - type: Transform pos: -19.5,-115.5 parent: 2 - - uid: 16118 + - uid: 10325 components: - type: Transform pos: -19.5,-114.5 parent: 2 - - uid: 16119 + - uid: 10326 components: - type: Transform pos: -19.5,-113.5 parent: 2 - - uid: 16120 + - uid: 10327 components: - type: Transform pos: -19.5,-111.5 parent: 2 - - uid: 16121 + - uid: 10328 components: - type: Transform pos: -20.5,-108.5 parent: 2 - - uid: 16122 + - uid: 10329 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 16123 + - uid: 10330 components: - type: Transform pos: -18.5,-91.5 parent: 2 - - uid: 16124 + - uid: 10331 components: - type: Transform pos: -18.5,-95.5 parent: 2 - - uid: 16125 + - uid: 10332 components: - type: Transform pos: -18.5,-96.5 parent: 2 - - uid: 16126 + - uid: 10333 components: - type: Transform pos: -18.5,-93.5 parent: 2 - - uid: 16127 + - uid: 10334 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 16128 + - uid: 10335 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 16129 + - uid: 10336 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 16131 + - uid: 10337 components: - type: Transform pos: -17.5,-71.5 parent: 2 - - uid: 16133 + - uid: 10338 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 16134 + - uid: 10339 components: - type: Transform pos: -19.5,-138.5 parent: 2 - - uid: 16135 + - uid: 10340 components: - type: Transform pos: -18.5,-67.5 parent: 2 - - uid: 16138 + - uid: 10341 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 16139 + - uid: 10342 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 16140 + - uid: 10343 components: - type: Transform pos: -19.5,-60.5 parent: 2 - - uid: 16141 + - uid: 10344 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 16142 + - uid: 10345 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 16148 + - uid: 10346 components: - type: Transform pos: -20.5,-134.5 parent: 2 - - uid: 16149 + - uid: 10347 components: - type: Transform pos: -20.5,-55.5 parent: 2 - - uid: 16151 + - uid: 10348 components: - type: Transform pos: -20.5,-54.5 parent: 2 - - uid: 16153 + - uid: 10349 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 16189 + - uid: 10350 components: - type: Transform pos: 18.5,8.5 parent: 2 - - uid: 16190 + - uid: 10351 components: - type: Transform pos: 18.5,7.5 parent: 2 - - uid: 16191 + - uid: 10352 components: - type: Transform pos: 18.5,6.5 parent: 2 - - uid: 16192 + - uid: 10353 components: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 16193 + - uid: 10354 components: - type: Transform pos: 18.5,1.5 parent: 2 - - uid: 16201 + - uid: 10355 components: - type: Transform pos: 18.5,-1.5 parent: 2 - - uid: 16202 + - uid: 10356 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 16220 + - uid: 10357 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 16222 + - uid: 10358 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 16224 + - uid: 10359 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16226 + - uid: 10360 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 16227 + - uid: 10361 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 16228 + - uid: 10362 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 16229 + - uid: 10363 components: - type: Transform pos: 21.5,-35.5 parent: 2 - - uid: 16230 + - uid: 10364 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 16231 + - uid: 10365 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 16232 + - uid: 10366 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 16233 + - uid: 10367 components: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 16234 + - uid: 10368 components: - type: Transform pos: 20.5,-44.5 parent: 2 - - uid: 16235 + - uid: 10369 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 16236 + - uid: 10370 components: - type: Transform pos: 21.5,-52.5 parent: 2 - - uid: 16237 + - uid: 10371 components: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 16238 + - uid: 10372 components: - type: Transform pos: 21.5,-54.5 parent: 2 - - uid: 16239 + - uid: 10373 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 16240 + - uid: 10374 components: - type: Transform pos: 20.5,-57.5 parent: 2 - - uid: 16241 + - uid: 10375 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 16242 + - uid: 10376 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 16243 + - uid: 10377 components: - type: Transform pos: 20.5,-61.5 parent: 2 - - uid: 16244 + - uid: 10378 components: - type: Transform pos: 18.5,-97.5 parent: 2 - - uid: 16245 + - uid: 10379 components: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 16246 + - uid: 10380 components: - type: Transform pos: 19.5,-66.5 parent: 2 - - uid: 16247 + - uid: 10381 components: - type: Transform pos: 19.5,-67.5 parent: 2 - - uid: 16248 + - uid: 10382 components: - type: Transform pos: 19.5,-68.5 parent: 2 - - uid: 16249 + - uid: 10383 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 16250 + - uid: 10384 components: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 16251 + - uid: 10385 components: - type: Transform pos: 21.5,-80.5 parent: 2 - - uid: 16252 + - uid: 10386 components: - type: Transform pos: 20.5,-83.5 parent: 2 - - uid: 16253 + - uid: 10387 components: - type: Transform pos: 20.5,-84.5 parent: 2 - - uid: 16254 + - uid: 10388 components: - type: Transform pos: 20.5,-85.5 parent: 2 - - uid: 16255 + - uid: 10389 components: - type: Transform pos: 20.5,-86.5 parent: 2 - - uid: 16256 + - uid: 10390 components: - type: Transform pos: 18.5,-98.5 parent: 2 - - uid: 16257 + - uid: 10391 components: - type: Transform pos: 19.5,-91.5 parent: 2 - - uid: 16258 + - uid: 10392 components: - type: Transform pos: 19.5,-92.5 parent: 2 - - uid: 16259 + - uid: 10393 components: - type: Transform pos: 19.5,-93.5 parent: 2 - - uid: 16260 + - uid: 10394 components: - type: Transform pos: 21.5,-106.5 parent: 2 - - uid: 16261 + - uid: 10395 components: - type: Transform pos: 18.5,-124.5 parent: 2 - - uid: 16262 + - uid: 10396 components: - type: Transform pos: 20.5,-109.5 parent: 2 - - uid: 16263 + - uid: 10397 components: - type: Transform pos: 20.5,-110.5 parent: 2 - - uid: 16264 + - uid: 10398 components: - type: Transform pos: 20.5,-111.5 parent: 2 - - uid: 16265 + - uid: 10399 components: - type: Transform pos: 20.5,-113.5 parent: 2 - - uid: 16266 + - uid: 10400 components: - type: Transform pos: 19.5,-117.5 parent: 2 - - uid: 16267 + - uid: 10401 components: - type: Transform pos: 19.5,-118.5 parent: 2 - - uid: 16268 + - uid: 10402 components: - type: Transform pos: 19.5,-119.5 parent: 2 - - uid: 16269 + - uid: 10403 components: - type: Transform pos: 18.5,-125.5 parent: 2 - - uid: 16270 + - uid: 10404 components: - type: Transform pos: -20.5,-133.5 parent: 2 - - uid: 16271 + - uid: 10405 components: - type: Transform pos: -20.5,-135.5 parent: 2 - - uid: 16272 + - uid: 10406 components: - type: Transform pos: -19.5,-139.5 parent: 2 - - uid: 16273 + - uid: 10407 components: - type: Transform pos: -19.5,-140.5 parent: 2 - - uid: 16274 + - uid: 10408 components: - type: Transform pos: -19.5,-142.5 parent: 2 - - uid: 16275 + - uid: 10409 components: - type: Transform pos: -19.5,-143.5 parent: 2 - - uid: 16276 + - uid: 10410 components: - type: Transform pos: -18.5,-145.5 parent: 2 - - uid: 16277 + - uid: 10411 components: - type: Transform pos: -18.5,-146.5 parent: 2 - - uid: 16278 + - uid: 10412 components: - type: Transform pos: -18.5,-147.5 parent: 2 - - uid: 16279 + - uid: 10413 components: - type: Transform pos: -18.5,-149.5 parent: 2 - - uid: 16280 + - uid: 10414 components: - type: Transform pos: -18.5,-150.5 parent: 2 - - uid: 16281 + - uid: 10415 components: - type: Transform pos: -17.5,-151.5 parent: 2 - - uid: 16282 + - uid: 10416 components: - type: Transform pos: -17.5,-152.5 parent: 2 - - uid: 16283 + - uid: 10417 components: - type: Transform pos: -17.5,-153.5 parent: 2 - - uid: 16284 + - uid: 10418 components: - type: Transform pos: -17.5,-154.5 parent: 2 - - uid: 16295 + - uid: 10419 components: - type: Transform pos: -19.5,-164.5 parent: 2 - - uid: 16317 + - uid: 10420 components: - type: Transform pos: -20.5,-160.5 parent: 2 - - uid: 16318 + - uid: 10421 components: - type: Transform pos: -20.5,-161.5 parent: 2 - - uid: 16319 + - uid: 10422 components: - type: Transform pos: -20.5,-162.5 parent: 2 - - uid: 16320 + - uid: 10423 components: - type: Transform pos: -19.5,-165.5 parent: 2 - - uid: 16321 + - uid: 10424 components: - type: Transform pos: -19.5,-166.5 parent: 2 - - uid: 16322 + - uid: 10425 components: - type: Transform pos: -19.5,-169.5 parent: 2 - - uid: 16323 + - uid: 10426 components: - type: Transform pos: -19.5,-168.5 parent: 2 - - uid: 16324 + - uid: 10427 components: - type: Transform pos: -18.5,-172.5 parent: 2 - - uid: 16325 + - uid: 10428 components: - type: Transform pos: -18.5,-173.5 parent: 2 - - uid: 16326 + - uid: 10429 components: - type: Transform pos: -18.5,-176.5 parent: 2 - - uid: 16327 + - uid: 10430 components: - type: Transform pos: -18.5,-175.5 parent: 2 - - uid: 16328 + - uid: 10431 components: - type: Transform pos: -17.5,-180.5 parent: 2 - - uid: 16329 + - uid: 10432 components: - type: Transform pos: -17.5,-179.5 parent: 2 - - uid: 16344 + - uid: 10433 components: - type: Transform pos: 19.5,-170.5 parent: 2 - - uid: 16345 + - uid: 10434 components: - type: Transform pos: 19.5,-171.5 parent: 2 - - uid: 16364 + - uid: 10435 components: - type: Transform pos: 18.5,-179.5 parent: 2 - - uid: 16365 + - uid: 10436 components: - type: Transform pos: 18.5,-178.5 parent: 2 - - uid: 16366 + - uid: 10437 components: - type: Transform pos: 18.5,-177.5 parent: 2 - - uid: 16367 + - uid: 10438 components: - type: Transform pos: 19.5,-175.5 parent: 2 - - uid: 16368 + - uid: 10439 components: - type: Transform pos: 19.5,-174.5 parent: 2 - - uid: 16369 + - uid: 10440 components: - type: Transform pos: 19.5,-173.5 parent: 2 - - uid: 16370 + - uid: 10441 components: - type: Transform pos: 20.5,-168.5 parent: 2 - - uid: 16371 + - uid: 10442 components: - type: Transform pos: 20.5,-167.5 parent: 2 - - uid: 16372 + - uid: 10443 components: - type: Transform pos: 20.5,-164.5 parent: 2 - - uid: 16374 + - uid: 10444 components: - type: Transform pos: 20.5,-163.5 parent: 2 - - uid: 16375 + - uid: 10445 components: - type: Transform pos: 20.5,-162.5 parent: 2 - - uid: 16376 + - uid: 10446 components: - type: Transform pos: 21.5,-160.5 parent: 2 - - uid: 16377 + - uid: 10447 components: - type: Transform pos: 21.5,-159.5 parent: 2 - - uid: 16378 + - uid: 10448 components: - type: Transform pos: 21.5,-161.5 parent: 2 - - uid: 16393 + - uid: 10449 components: - type: Transform pos: 22.5,-187.5 parent: 2 - - uid: 16409 + - uid: 10450 components: - type: Transform pos: 22.5,-188.5 parent: 2 - - uid: 16410 + - uid: 10451 components: - type: Transform pos: 22.5,-189.5 parent: 2 - - uid: 16411 + - uid: 10452 components: - type: Transform pos: 21.5,-191.5 parent: 2 - - uid: 16412 + - uid: 10453 components: - type: Transform pos: 21.5,-192.5 parent: 2 - - uid: 16413 + - uid: 10454 components: - type: Transform pos: 21.5,-193.5 parent: 2 - - uid: 16414 + - uid: 10455 components: - type: Transform pos: -17.5,-207.5 parent: 2 - - uid: 16415 + - uid: 10456 components: - type: Transform pos: 20.5,-198.5 parent: 2 - - uid: 16416 + - uid: 10457 components: - type: Transform pos: 20.5,-199.5 parent: 2 - - uid: 16417 + - uid: 10458 components: - type: Transform pos: 20.5,-200.5 parent: 2 - - uid: 16418 + - uid: 10459 components: - type: Transform pos: 19.5,-204.5 parent: 2 - - uid: 16419 + - uid: 10460 components: - type: Transform pos: 19.5,-205.5 parent: 2 - - uid: 16420 + - uid: 10461 components: - type: Transform pos: 19.5,-206.5 parent: 2 - - uid: 16421 + - uid: 10462 components: - type: Transform pos: 19.5,-207.5 parent: 2 - - uid: 16422 + - uid: 10463 components: - type: Transform pos: 20.5,-203.5 parent: 2 - - uid: 16423 + - uid: 10464 components: - type: Transform pos: 20.5,-202.5 parent: 2 - - uid: 16424 + - uid: 10465 components: - type: Transform pos: 19.5,-203.5 parent: 2 - - uid: 16426 + - uid: 10466 components: - type: Transform pos: -20.5,-187.5 parent: 2 - - uid: 16456 + - uid: 10467 components: - type: Transform pos: -20.5,-188.5 parent: 2 - - uid: 16457 + - uid: 10468 components: - type: Transform pos: -20.5,-189.5 parent: 2 - - uid: 16458 + - uid: 10469 components: - type: Transform pos: -19.5,-191.5 parent: 2 - - uid: 16459 + - uid: 10470 components: - type: Transform pos: -19.5,-192.5 parent: 2 - - uid: 16460 + - uid: 10471 components: - type: Transform pos: -19.5,-193.5 parent: 2 - - uid: 16461 + - uid: 10472 components: - type: Transform pos: -18.5,-198.5 parent: 2 - - uid: 16462 + - uid: 10473 components: - type: Transform pos: -19.5,-195.5 parent: 2 - - uid: 16463 + - uid: 10474 components: - type: Transform pos: -19.5,-196.5 parent: 2 - - uid: 16464 + - uid: 10475 components: - type: Transform pos: -18.5,-199.5 parent: 2 - - uid: 16465 + - uid: 10476 components: - type: Transform pos: -18.5,-200.5 parent: 2 - - uid: 16466 + - uid: 10477 components: - type: Transform pos: -17.5,-205.5 parent: 2 - - uid: 16467 + - uid: 10478 components: - type: Transform pos: -17.5,-206.5 parent: 2 - - uid: 16468 + - uid: 10479 components: - type: Transform pos: -18.5,-203.5 parent: 2 - - uid: 16469 + - uid: 10480 components: - type: Transform pos: -18.5,-202.5 parent: 2 - - uid: 16611 + - uid: 10481 components: - type: Transform pos: -15.5,-357.5 parent: 2 - - uid: 16612 + - uid: 10482 components: - type: Transform pos: -15.5,-358.5 parent: 2 - - uid: 16613 + - uid: 10483 components: - type: Transform pos: -14.5,-361.5 parent: 2 - - uid: 16614 + - uid: 10484 components: - type: Transform pos: -14.5,-362.5 parent: 2 - - uid: 16615 + - uid: 10485 components: - type: Transform pos: -14.5,-363.5 parent: 2 - - uid: 16616 + - uid: 10486 components: - type: Transform pos: -14.5,-366.5 parent: 2 - - uid: 16617 + - uid: 10487 components: - type: Transform pos: -13.5,-369.5 parent: 2 - - uid: 16618 + - uid: 10488 components: - type: Transform pos: -13.5,-370.5 parent: 2 - - uid: 16619 + - uid: 10489 components: - type: Transform pos: -13.5,-373.5 parent: 2 - - uid: 16620 + - uid: 10490 components: - type: Transform pos: -13.5,-372.5 parent: 2 - - uid: 16621 + - uid: 10491 components: - type: Transform pos: -12.5,-375.5 parent: 2 - - uid: 16622 + - uid: 10492 components: - type: Transform pos: -12.5,-376.5 parent: 2 - - uid: 16625 + - uid: 10493 components: - type: Transform pos: 13.5,-377.5 parent: 2 - - uid: 16626 + - uid: 10494 components: - type: Transform pos: 13.5,-376.5 parent: 2 - - uid: 16627 + - uid: 10495 components: - type: Transform pos: 13.5,-375.5 parent: 2 - - uid: 16629 + - uid: 10496 components: - type: Transform pos: 14.5,-371.5 parent: 2 - - uid: 16630 + - uid: 10497 components: - type: Transform pos: 14.5,-370.5 parent: 2 - - uid: 16631 + - uid: 10498 components: - type: Transform pos: 14.5,-369.5 parent: 2 - - uid: 16632 + - uid: 10499 components: - type: Transform pos: 14.5,-367.5 parent: 2 - - uid: 16633 + - uid: 10500 components: - type: Transform pos: 15.5,-366.5 parent: 2 - - uid: 16634 + - uid: 10501 components: - type: Transform pos: 15.5,-365.5 parent: 2 - - uid: 16635 + - uid: 10502 components: - type: Transform pos: 15.5,-364.5 parent: 2 - - uid: 16636 + - uid: 10503 components: - type: Transform pos: 15.5,-361.5 parent: 2 - - uid: 16637 + - uid: 10504 components: - type: Transform pos: 15.5,-360.5 parent: 2 - - uid: 16638 + - uid: 10505 components: - type: Transform pos: 15.5,-359.5 parent: 2 - - uid: 16639 + - uid: 10506 components: - type: Transform pos: 16.5,-357.5 parent: 2 - - uid: 16640 + - uid: 10507 components: - type: Transform pos: 16.5,-356.5 parent: 2 - - uid: 16730 + - uid: 10508 components: - type: Transform pos: 20.5,-293.5 parent: 2 - - uid: 16731 + - uid: 10509 components: - type: Transform pos: 22.5,-293.5 parent: 2 - - uid: 16732 + - uid: 10510 components: - type: Transform pos: 24.5,-293.5 parent: 2 - - uid: 16733 + - uid: 10511 components: - type: Transform pos: 23.5,-294.5 parent: 2 - - uid: 16734 + - uid: 10512 components: - type: Transform pos: 21.5,-294.5 parent: 2 - - uid: 16735 + - uid: 10513 components: - type: Transform pos: 19.5,-294.5 parent: 2 - - uid: 16736 + - uid: 10514 components: - type: Transform pos: 18.5,-294.5 parent: 2 - - uid: 16737 + - uid: 10515 components: - type: Transform pos: 25.5,-294.5 parent: 2 - - uid: 16738 + - uid: 10516 components: - type: Transform pos: 26.5,-294.5 parent: 2 - - uid: 16783 + - uid: 10517 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-314.5 parent: 2 - - uid: 16784 + - uid: 10518 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-313.5 parent: 2 - - uid: 16785 + - uid: 10519 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-310.5 parent: 2 - - uid: 16786 + - uid: 10520 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-309.5 parent: 2 - - uid: 16787 + - uid: 10521 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-308.5 parent: 2 - - uid: 16788 + - uid: 10522 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-306.5 parent: 2 - - uid: 16789 + - uid: 10523 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-305.5 parent: 2 - - uid: 16790 + - uid: 10524 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-304.5 parent: 2 - - uid: 16791 + - uid: 10525 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-303.5 parent: 2 - - uid: 16792 + - uid: 10526 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-302.5 parent: 2 - - uid: 16793 + - uid: 10527 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16794 + - uid: 10528 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16795 + - uid: 10529 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-316.5 parent: 2 - - uid: 16796 + - uid: 10530 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-318.5 parent: 2 - - uid: 16797 + - uid: 10531 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-321.5 parent: 2 - - uid: 16802 + - uid: 10532 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-301.5 parent: 2 - - uid: 16803 + - uid: 10533 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-300.5 parent: 2 - - uid: 16804 + - uid: 10534 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-297.5 parent: 2 - - uid: 16805 + - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-296.5 parent: 2 - - uid: 16806 + - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-295.5 parent: 2 - - uid: 16807 + - uid: 10537 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-293.5 parent: 2 - - uid: 16808 + - uid: 10538 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-298.5 parent: 2 - - uid: 16847 + - uid: 10539 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16848 + - uid: 10540 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16849 + - uid: 10541 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-296.5 parent: 2 - - uid: 16850 + - uid: 10542 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-297.5 parent: 2 - - uid: 16851 + - uid: 10543 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-299.5 parent: 2 - - uid: 16852 + - uid: 10544 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-300.5 parent: 2 - - uid: 16853 + - uid: 10545 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-302.5 parent: 2 - - uid: 16854 + - uid: 10546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-303.5 parent: 2 - - uid: 16855 + - uid: 10547 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-304.5 parent: 2 - - uid: 16856 + - uid: 10548 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-306.5 parent: 2 - - uid: 16857 + - uid: 10549 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-307.5 parent: 2 - - uid: 16858 + - uid: 10550 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-309.5 parent: 2 - - uid: 16859 + - uid: 10551 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-310.5 parent: 2 - - uid: 16860 + - uid: 10552 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-312.5 parent: 2 - - uid: 16861 + - uid: 10553 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-313.5 parent: 2 - - uid: 16862 + - uid: 10554 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-314.5 parent: 2 - - uid: 16863 + - uid: 10555 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-315.5 parent: 2 - - uid: 16864 + - uid: 10556 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-317.5 parent: 2 - - uid: 16865 + - uid: 10557 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-319.5 parent: 2 - - uid: 16866 + - uid: 10558 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-320.5 parent: 2 - - uid: 16905 + - uid: 10559 components: - type: Transform pos: -15.5,-168.5 parent: 2 - - uid: 16907 + - uid: 10560 components: - type: Transform pos: -15.5,-166.5 parent: 2 - - uid: 16908 + - uid: 10561 components: - type: Transform pos: -15.5,-165.5 parent: 2 - - uid: 16909 + - uid: 10562 components: - type: Transform pos: -15.5,-164.5 parent: 2 - - uid: 16910 + - uid: 10563 components: - type: Transform pos: -15.5,-163.5 parent: 2 - - uid: 16911 + - uid: 10564 components: - type: Transform pos: -15.5,-162.5 parent: 2 - - uid: 16912 + - uid: 10565 components: - type: Transform pos: -15.5,-161.5 parent: 2 - proto: GrilleBroken entities: - - uid: 2249 + - uid: 10566 components: - type: Transform pos: 7.5,-148.5 parent: 2 - - uid: 3030 + - uid: 10567 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3871 + - uid: 10568 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-202.5 parent: 2 - - uid: 3873 + - uid: 10569 components: - type: Transform pos: -3.5,-202.5 parent: 2 - - uid: 8098 + - uid: 10570 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-247.5 parent: 2 - - uid: 12091 + - uid: 10571 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-249.5 parent: 2 - - uid: 12107 + - uid: 10572 components: - type: Transform rot: -1.5707963267948966 rad @@ -71247,231 +70699,231 @@ entities: parent: 2 - proto: GrilleDiagonal entities: - - uid: 14 + - uid: 10573 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1491 + - uid: 10574 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1492 + - uid: 10575 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 1493 + - uid: 10576 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1659 + - uid: 10577 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 2791 + - uid: 10578 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 2794 + - uid: 10579 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 2842 + - uid: 10580 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 2855 + - uid: 10581 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 2907 + - uid: 10582 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 2942 + - uid: 10583 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 3158 + - uid: 10584 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 4511 + - uid: 10585 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4649 + - uid: 10586 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 6879 + - uid: 10587 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 7499 + - uid: 10588 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 7547 + - uid: 10589 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 7554 + - uid: 10590 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 7679 + - uid: 10591 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 7685 + - uid: 10592 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 7754 + - uid: 10593 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 7756 + - uid: 10594 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 7848 + - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 7896 + - uid: 10596 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 7899 + - uid: 10597 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7900 + - uid: 10598 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 8197 + - uid: 10599 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-309.5 parent: 2 - - uid: 8217 + - uid: 10600 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 8520 + - uid: 10601 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8533 + - uid: 10602 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8536 + - uid: 10603 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8641 + - uid: 10604 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8657 + - uid: 10605 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-286.5 parent: 2 - - uid: 8672 + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 9955 + - uid: 10607 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9956 + - uid: 10608 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10054 + - uid: 10609 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 10059 + - uid: 10610 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 10065 + - uid: 10611 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 13329 + - uid: 10612 components: - type: Transform rot: 3.141592653589793 rad @@ -71479,3048 +70931,3048 @@ entities: parent: 2 - proto: GrilleSpawner entities: - - uid: 1603 + - uid: 10613 components: - type: Transform pos: 22.5,-327.5 parent: 2 - - uid: 1692 + - uid: 10614 components: - type: Transform pos: 20.5,-338.5 parent: 2 - - uid: 1693 + - uid: 10615 components: - type: Transform pos: 21.5,-331.5 parent: 2 - - uid: 2939 + - uid: 10616 components: - type: Transform pos: 22.5,-326.5 parent: 2 - - uid: 8941 + - uid: 10617 components: - type: Transform pos: 20.5,-343.5 parent: 2 - - uid: 8966 + - uid: 10618 components: - type: Transform pos: 19.5,-347.5 parent: 2 - - uid: 8983 + - uid: 10619 components: - type: Transform pos: 19.5,-345.5 parent: 2 - - uid: 8985 + - uid: 10620 components: - type: Transform pos: -21.5,-327.5 parent: 2 - - uid: 8986 + - uid: 10621 components: - type: Transform pos: 20.5,-342.5 parent: 2 - - uid: 8987 + - uid: 10622 components: - type: Transform pos: 18.5,-349.5 parent: 2 - - uid: 8998 + - uid: 10623 components: - type: Transform pos: 19.5,-348.5 parent: 2 - - uid: 9035 + - uid: 10624 components: - type: Transform pos: -21.5,-326.5 parent: 2 - - uid: 9039 + - uid: 10625 components: - type: Transform pos: 18.5,-350.5 parent: 2 - - uid: 9062 + - uid: 10626 components: - type: Transform pos: -21.5,-328.5 parent: 2 - - uid: 10171 + - uid: 10627 components: - type: Transform pos: -20.5,-337.5 parent: 2 - - uid: 11953 + - uid: 10628 components: - type: Transform pos: 22.5,-330.5 parent: 2 - - uid: 11988 + - uid: 10629 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-323.5 parent: 2 - - uid: 12024 + - uid: 10630 components: - type: Transform pos: -20.5,-335.5 parent: 2 - - uid: 12026 + - uid: 10631 components: - type: Transform pos: -20.5,-333.5 parent: 2 - - uid: 12029 + - uid: 10632 components: - type: Transform pos: -20.5,-336.5 parent: 2 - - uid: 12030 + - uid: 10633 components: - type: Transform pos: -19.5,-344.5 parent: 2 - - uid: 12081 + - uid: 10634 components: - type: Transform pos: -19.5,-342.5 parent: 2 - - uid: 12087 + - uid: 10635 components: - type: Transform pos: -18.5,-347.5 parent: 2 - - uid: 12088 + - uid: 10636 components: - type: Transform pos: -17.5,-350.5 parent: 2 - - uid: 12098 + - uid: 10637 components: - type: Transform pos: -20.5,-334.5 parent: 2 - - uid: 12109 + - uid: 10638 components: - type: Transform pos: -18.5,-345.5 parent: 2 - - uid: 12113 + - uid: 10639 components: - type: Transform pos: -19.5,-343.5 parent: 2 - - uid: 12576 + - uid: 10640 components: - type: Transform pos: -19.5,-339.5 parent: 2 - - uid: 12689 + - uid: 10641 components: - type: Transform pos: -17.5,-349.5 parent: 2 - - uid: 12952 + - uid: 10642 components: - type: Transform pos: -19.5,-338.5 parent: 2 - - uid: 13007 + - uid: 10643 components: - type: Transform pos: -18.5,-346.5 parent: 2 - - uid: 13162 + - uid: 10644 components: - type: Transform pos: -19.5,-340.5 parent: 2 - - uid: 13195 + - uid: 10645 components: - type: Transform pos: -19.5,-341.5 parent: 2 - - uid: 13277 + - uid: 10646 components: - type: Transform pos: 22.5,-325.5 parent: 2 - - uid: 13279 + - uid: 10647 components: - type: Transform pos: 21.5,-332.5 parent: 2 - - uid: 13281 + - uid: 10648 components: - type: Transform pos: 21.5,-337.5 parent: 2 - - uid: 13282 + - uid: 10649 components: - type: Transform pos: -21.5,-329.5 parent: 2 - - uid: 13457 + - uid: 10650 components: - type: Transform pos: 21.5,-335.5 parent: 2 - - uid: 13821 + - uid: 10651 components: - type: Transform pos: 21.5,-333.5 parent: 2 - - uid: 13962 + - uid: 10652 components: - type: Transform pos: 22.5,-329.5 parent: 2 - - uid: 13994 + - uid: 10653 components: - type: Transform pos: 22.5,-328.5 parent: 2 - - uid: 14006 + - uid: 10654 components: - type: Transform pos: 21.5,-334.5 parent: 2 - - uid: 14012 + - uid: 10655 components: - type: Transform pos: 20.5,-339.5 parent: 2 - - uid: 14023 + - uid: 10656 components: - type: Transform pos: -18.5,-348.5 parent: 2 - - uid: 14225 + - uid: 10657 components: - type: Transform pos: 20.5,-341.5 parent: 2 - - uid: 14227 + - uid: 10658 components: - type: Transform pos: 21.5,-336.5 parent: 2 - - uid: 14612 + - uid: 10659 components: - type: Transform pos: -21.5,-325.5 parent: 2 - - uid: 14615 + - uid: 10660 components: - type: Transform pos: -20.5,-331.5 parent: 2 - - uid: 14616 + - uid: 10661 components: - type: Transform pos: -21.5,-330.5 parent: 2 - - uid: 14618 + - uid: 10662 components: - type: Transform pos: -20.5,-332.5 parent: 2 - - uid: 14685 + - uid: 10663 components: - type: Transform pos: 19.5,-346.5 parent: 2 - - uid: 14686 + - uid: 10664 components: - type: Transform pos: 20.5,-344.5 parent: 2 - - uid: 14785 + - uid: 10665 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-316.5 parent: 2 - - uid: 14874 + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-314.5 parent: 2 - - uid: 14875 + - uid: 10667 components: - type: Transform pos: 16.5,-360.5 parent: 2 - - uid: 14886 + - uid: 10668 components: - type: Transform pos: 15.5,-367.5 parent: 2 - - uid: 15692 + - uid: 10669 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-321.5 parent: 2 - - uid: 15784 + - uid: 10670 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-322.5 parent: 2 - - uid: 15851 + - uid: 10671 components: - type: Transform pos: 19.5,-18.5 parent: 2 - - uid: 15854 + - uid: 10672 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 15855 + - uid: 10673 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 15856 + - uid: 10674 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,17.5 parent: 2 - - uid: 15857 + - uid: 10675 components: - type: Transform pos: 20.5,-68.5 parent: 2 - - uid: 15858 + - uid: 10676 components: - type: Transform pos: 20.5,-69.5 parent: 2 - - uid: 15859 + - uid: 10677 components: - type: Transform pos: 20.5,-67.5 parent: 2 - - uid: 15860 + - uid: 10678 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 2 - - uid: 15861 + - uid: 10679 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 15862 + - uid: 10680 components: - type: Transform pos: 20.5,-66.5 parent: 2 - - uid: 15863 + - uid: 10681 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 15864 + - uid: 10682 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 - - uid: 15865 + - uid: 10683 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 15866 + - uid: 10684 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 15867 + - uid: 10685 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 15868 + - uid: 10686 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 - - uid: 15869 + - uid: 10687 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 2 - - uid: 15870 + - uid: 10688 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 15871 + - uid: 10689 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - uid: 15872 + - uid: 10690 components: - type: Transform pos: 19.5,-9.5 parent: 2 - - uid: 15873 + - uid: 10691 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 15874 + - uid: 10692 components: - type: Transform pos: 19.5,-11.5 parent: 2 - - uid: 15875 + - uid: 10693 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 15876 + - uid: 10694 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2 - - uid: 15877 + - uid: 10695 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 15878 + - uid: 10696 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 15879 + - uid: 10697 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 15880 + - uid: 10698 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 2 - - uid: 15881 + - uid: 10699 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 - - uid: 15882 + - uid: 10700 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 15883 + - uid: 10701 components: - type: Transform pos: 18.5,-102.5 parent: 2 - - uid: 15884 + - uid: 10702 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,19.5 parent: 2 - - uid: 15885 + - uid: 10703 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 2 - - uid: 15886 + - uid: 10704 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,17.5 parent: 2 - - uid: 15887 + - uid: 10705 components: - type: Transform pos: 19.5,-99.5 parent: 2 - - uid: 15888 + - uid: 10706 components: - type: Transform pos: 18.5,-100.5 parent: 2 - - uid: 15889 + - uid: 10707 components: - type: Transform pos: 19.5,-100.5 parent: 2 - - uid: 15890 + - uid: 10708 components: - type: Transform pos: 19.5,-97.5 parent: 2 - - uid: 15891 + - uid: 10709 components: - type: Transform pos: 18.5,-101.5 parent: 2 - - uid: 15892 + - uid: 10710 components: - type: Transform pos: 19.5,-98.5 parent: 2 - - uid: 15893 + - uid: 10711 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 15894 + - uid: 10712 components: - type: Transform pos: 20.5,-93.5 parent: 2 - - uid: 15895 + - uid: 10713 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 15896 + - uid: 10714 components: - type: Transform pos: 19.5,-96.5 parent: 2 - - uid: 15897 + - uid: 10715 components: - type: Transform pos: 20.5,-92.5 parent: 2 - - uid: 15898 + - uid: 10716 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 15899 + - uid: 10717 components: - type: Transform pos: 20.5,-96.5 parent: 2 - - uid: 15900 + - uid: 10718 components: - type: Transform pos: 20.5,-94.5 parent: 2 - - uid: 15901 + - uid: 10719 components: - type: Transform pos: 20.5,-95.5 parent: 2 - - uid: 15908 + - uid: 10720 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-24.5 parent: 2 - - uid: 15909 + - uid: 10721 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 15916 + - uid: 10722 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 2 - - uid: 15917 + - uid: 10723 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 - - uid: 15918 + - uid: 10724 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 15919 + - uid: 10725 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 15920 + - uid: 10726 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 15921 + - uid: 10727 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 15922 + - uid: 10728 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 15923 + - uid: 10729 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 15928 + - uid: 10730 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 15929 + - uid: 10731 components: - type: Transform pos: 22.5,-40.5 parent: 2 - - uid: 15930 + - uid: 10732 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 15931 + - uid: 10733 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 15932 + - uid: 10734 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 15933 + - uid: 10735 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 15934 + - uid: 10736 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 15935 + - uid: 10737 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 15936 + - uid: 10738 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 15937 + - uid: 10739 components: - type: Transform pos: 22.5,-39.5 parent: 2 - - uid: 15938 + - uid: 10740 components: - type: Transform pos: 22.5,-38.5 parent: 2 - - uid: 15939 + - uid: 10741 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 15941 + - uid: 10742 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 15942 + - uid: 10743 components: - type: Transform pos: 22.5,-35.5 parent: 2 - - uid: 15945 + - uid: 10744 components: - type: Transform pos: -17.5,9.5 parent: 2 - - uid: 15946 + - uid: 10745 components: - type: Transform pos: 21.5,-109.5 parent: 2 - - uid: 15947 + - uid: 10746 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 15949 + - uid: 10747 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 15950 + - uid: 10748 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 15951 + - uid: 10749 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 15952 + - uid: 10750 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 15953 + - uid: 10751 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 15954 + - uid: 10752 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 15955 + - uid: 10753 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 15956 + - uid: 10754 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 15957 + - uid: 10755 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 15958 + - uid: 10756 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 15959 + - uid: 10757 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 15960 + - uid: 10758 components: - type: Transform pos: 19.5,-2.5 parent: 2 - - uid: 15963 + - uid: 10759 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 15964 + - uid: 10760 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 15965 + - uid: 10761 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 15966 + - uid: 10762 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 15970 + - uid: 10763 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 15971 + - uid: 10764 components: - type: Transform pos: 22.5,-108.5 parent: 2 - - uid: 15972 + - uid: 10765 components: - type: Transform pos: 21.5,-114.5 parent: 2 - - uid: 15973 + - uid: 10766 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 15974 + - uid: 10767 components: - type: Transform pos: 21.5,-113.5 parent: 2 - - uid: 15982 + - uid: 10768 components: - type: Transform pos: 21.5,-112.5 parent: 2 - - uid: 15983 + - uid: 10769 components: - type: Transform pos: 21.5,-110.5 parent: 2 - - uid: 15984 + - uid: 10770 components: - type: Transform pos: 21.5,-111.5 parent: 2 - - uid: 15985 + - uid: 10771 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 15986 + - uid: 10772 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 15987 + - uid: 10773 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 15988 + - uid: 10774 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 15989 + - uid: 10775 components: - type: Transform pos: 22.5,-106.5 parent: 2 - - uid: 15990 + - uid: 10776 components: - type: Transform pos: 22.5,-105.5 parent: 2 - - uid: 15991 + - uid: 10777 components: - type: Transform pos: 22.5,-107.5 parent: 2 - - uid: 15992 + - uid: 10778 components: - type: Transform pos: 22.5,-103.5 parent: 2 - - uid: 15993 + - uid: 10779 components: - type: Transform pos: -21.5,-55.5 parent: 2 - - uid: 15994 + - uid: 10780 components: - type: Transform pos: 22.5,-104.5 parent: 2 - - uid: 15995 + - uid: 10781 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 15996 + - uid: 10782 components: - type: Transform pos: 22.5,-102.5 parent: 2 - - uid: 15997 + - uid: 10783 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 15998 + - uid: 10784 components: - type: Transform pos: 20.5,-119.5 parent: 2 - - uid: 15999 + - uid: 10785 components: - type: Transform pos: 20.5,-117.5 parent: 2 - - uid: 16000 + - uid: 10786 components: - type: Transform pos: 20.5,-118.5 parent: 2 - - uid: 16001 + - uid: 10787 components: - type: Transform pos: 20.5,-116.5 parent: 2 - - uid: 16002 + - uid: 10788 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 16003 + - uid: 10789 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 16004 + - uid: 10790 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 16009 + - uid: 10791 components: - type: Transform pos: -20.5,-116.5 parent: 2 - - uid: 16010 + - uid: 10792 components: - type: Transform pos: -21.5,-105.5 parent: 2 - - uid: 16011 + - uid: 10793 components: - type: Transform pos: -21.5,-106.5 parent: 2 - - uid: 16012 + - uid: 10794 components: - type: Transform pos: -21.5,-107.5 parent: 2 - - uid: 16013 + - uid: 10795 components: - type: Transform pos: -21.5,-109.5 parent: 2 - - uid: 16014 + - uid: 10796 components: - type: Transform pos: -21.5,-108.5 parent: 2 - - uid: 16015 + - uid: 10797 components: - type: Transform pos: -17.5,-129.5 parent: 2 - - uid: 16016 + - uid: 10798 components: - type: Transform pos: -20.5,-114.5 parent: 2 - - uid: 16017 + - uid: 10799 components: - type: Transform pos: -20.5,-115.5 parent: 2 - - uid: 16018 + - uid: 10800 components: - type: Transform pos: -20.5,-113.5 parent: 2 - - uid: 16019 + - uid: 10801 components: - type: Transform pos: -20.5,-111.5 parent: 2 - - uid: 16020 + - uid: 10802 components: - type: Transform pos: -20.5,-110.5 parent: 2 - - uid: 16021 + - uid: 10803 components: - type: Transform pos: -20.5,-112.5 parent: 2 - - uid: 16022 + - uid: 10804 components: - type: Transform pos: -18.5,-154.5 parent: 2 - - uid: 16023 + - uid: 10805 components: - type: Transform pos: -19.5,-123.5 parent: 2 - - uid: 16024 + - uid: 10806 components: - type: Transform pos: -17.5,-128.5 parent: 2 - - uid: 16025 + - uid: 10807 components: - type: Transform pos: -18.5,-125.5 parent: 2 - - uid: 16026 + - uid: 10808 components: - type: Transform pos: -18.5,-124.5 parent: 2 - - uid: 16027 + - uid: 10809 components: - type: Transform pos: -18.5,-153.5 parent: 2 - - uid: 16028 + - uid: 10810 components: - type: Transform pos: -18.5,-152.5 parent: 2 - - uid: 16029 + - uid: 10811 components: - type: Transform pos: -18.5,-151.5 parent: 2 - - uid: 16030 + - uid: 10812 components: - type: Transform pos: -18.5,-127.5 parent: 2 - - uid: 16031 + - uid: 10813 components: - type: Transform pos: -19.5,-119.5 parent: 2 - - uid: 16032 + - uid: 10814 components: - type: Transform pos: -18.5,-126.5 parent: 2 - - uid: 16033 + - uid: 10815 components: - type: Transform pos: -19.5,-121.5 parent: 2 - - uid: 16034 + - uid: 10816 components: - type: Transform pos: -19.5,-150.5 parent: 2 - - uid: 16035 + - uid: 10817 components: - type: Transform pos: -19.5,-149.5 parent: 2 - - uid: 16036 + - uid: 10818 components: - type: Transform pos: -19.5,-148.5 parent: 2 - - uid: 16037 + - uid: 10819 components: - type: Transform pos: -19.5,-147.5 parent: 2 - - uid: 16038 + - uid: 10820 components: - type: Transform pos: -19.5,-146.5 parent: 2 - - uid: 16039 + - uid: 10821 components: - type: Transform pos: -19.5,-145.5 parent: 2 - - uid: 16040 + - uid: 10822 components: - type: Transform pos: -19.5,-144.5 parent: 2 - - uid: 16041 + - uid: 10823 components: - type: Transform pos: -20.5,-143.5 parent: 2 - - uid: 16042 + - uid: 10824 components: - type: Transform pos: -20.5,-142.5 parent: 2 - - uid: 16043 + - uid: 10825 components: - type: Transform pos: -20.5,-141.5 parent: 2 - - uid: 16044 + - uid: 10826 components: - type: Transform pos: -20.5,-140.5 parent: 2 - - uid: 16045 + - uid: 10827 components: - type: Transform pos: -20.5,-139.5 parent: 2 - - uid: 16046 + - uid: 10828 components: - type: Transform pos: -20.5,-138.5 parent: 2 - - uid: 16047 + - uid: 10829 components: - type: Transform pos: -20.5,-137.5 parent: 2 - - uid: 16048 + - uid: 10830 components: - type: Transform pos: -17.5,-155.5 parent: 2 - - uid: 16049 + - uid: 10831 components: - type: Transform pos: -21.5,-136.5 parent: 2 - - uid: 16050 + - uid: 10832 components: - type: Transform pos: -21.5,-135.5 parent: 2 - - uid: 16051 + - uid: 10833 components: - type: Transform pos: -21.5,-134.5 parent: 2 - - uid: 16052 + - uid: 10834 components: - type: Transform pos: -21.5,-133.5 parent: 2 - - uid: 16053 + - uid: 10835 components: - type: Transform pos: -21.5,-132.5 parent: 2 - - uid: 16054 + - uid: 10836 components: - type: Transform pos: -21.5,-131.5 parent: 2 - - uid: 16055 + - uid: 10837 components: - type: Transform pos: -21.5,-130.5 parent: 2 - - uid: 16056 + - uid: 10838 components: - type: Transform pos: -19.5,-117.5 parent: 2 - - uid: 16057 + - uid: 10839 components: - type: Transform pos: -17.5,-156.5 parent: 2 - - uid: 16058 + - uid: 10840 components: - type: Transform pos: -19.5,-118.5 parent: 2 - - uid: 16059 + - uid: 10841 components: - type: Transform pos: -19.5,-122.5 parent: 2 - - uid: 16060 + - uid: 10842 components: - type: Transform pos: -19.5,-120.5 parent: 2 - - uid: 16061 + - uid: 10843 components: - type: Transform pos: -21.5,-104.5 parent: 2 - - uid: 16062 + - uid: 10844 components: - type: Transform pos: -17.5,-102.5 parent: 2 - - uid: 16063 + - uid: 10845 components: - type: Transform pos: -21.5,-103.5 parent: 2 - - uid: 16064 + - uid: 10846 components: - type: Transform pos: -17.5,-101.5 parent: 2 - - uid: 16065 + - uid: 10847 components: - type: Transform pos: -18.5,-100.5 parent: 2 - - uid: 16066 + - uid: 10848 components: - type: Transform pos: -18.5,-99.5 parent: 2 - - uid: 16067 + - uid: 10849 components: - type: Transform pos: -18.5,-98.5 parent: 2 - - uid: 16068 + - uid: 10850 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 16069 + - uid: 10851 components: - type: Transform pos: -19.5,-96.5 parent: 2 - - uid: 16070 + - uid: 10852 components: - type: Transform pos: -19.5,-95.5 parent: 2 - - uid: 16071 + - uid: 10853 components: - type: Transform pos: -19.5,-94.5 parent: 2 - - uid: 16072 + - uid: 10854 components: - type: Transform pos: -19.5,-93.5 parent: 2 - - uid: 16073 + - uid: 10855 components: - type: Transform pos: -19.5,-92.5 parent: 2 - - uid: 16074 + - uid: 10856 components: - type: Transform pos: -19.5,-91.5 parent: 2 - - uid: 16075 + - uid: 10857 components: - type: Transform pos: -19.5,-90.5 parent: 2 - - uid: 16076 + - uid: 10858 components: - type: Transform pos: -20.5,-89.5 parent: 2 - - uid: 16077 + - uid: 10859 components: - type: Transform pos: -20.5,-88.5 parent: 2 - - uid: 16078 + - uid: 10860 components: - type: Transform pos: -20.5,-87.5 parent: 2 - - uid: 16079 + - uid: 10861 components: - type: Transform pos: -20.5,-86.5 parent: 2 - - uid: 16080 + - uid: 10862 components: - type: Transform pos: -20.5,-85.5 parent: 2 - - uid: 16081 + - uid: 10863 components: - type: Transform pos: -20.5,-84.5 parent: 2 - - uid: 16082 + - uid: 10864 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 16083 + - uid: 10865 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 16084 + - uid: 10866 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 16085 + - uid: 10867 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 16086 + - uid: 10868 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 16087 + - uid: 10869 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 16088 + - uid: 10870 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 16089 + - uid: 10871 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 16090 + - uid: 10872 components: - type: Transform pos: -17.5,-74.5 parent: 2 - - uid: 16091 + - uid: 10873 components: - type: Transform pos: -17.5,-75.5 parent: 2 - - uid: 16092 + - uid: 10874 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 16093 + - uid: 10875 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 16094 + - uid: 10876 components: - type: Transform pos: -18.5,-71.5 parent: 2 - - uid: 16095 + - uid: 10877 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 16096 + - uid: 10878 components: - type: Transform pos: -20.5,-62.5 parent: 2 - - uid: 16097 + - uid: 10879 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 16098 + - uid: 10880 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 16099 + - uid: 10881 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 16100 + - uid: 10882 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 16101 + - uid: 10883 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 16102 + - uid: 10884 components: - type: Transform pos: -19.5,-64.5 parent: 2 - - uid: 16103 + - uid: 10885 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 16104 + - uid: 10886 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 16105 + - uid: 10887 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 16106 + - uid: 10888 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 16107 + - uid: 10889 components: - type: Transform pos: -20.5,-58.5 parent: 2 - - uid: 16108 + - uid: 10890 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 16109 + - uid: 10891 components: - type: Transform pos: -20.5,-56.5 parent: 2 - - uid: 16130 + - uid: 10892 components: - type: Transform pos: 18.5,-128.5 parent: 2 - - uid: 16132 + - uid: 10893 components: - type: Transform pos: 18.5,-127.5 parent: 2 - - uid: 16136 + - uid: 10894 components: - type: Transform pos: 19.5,-126.5 parent: 2 - - uid: 16137 + - uid: 10895 components: - type: Transform pos: 19.5,-125.5 parent: 2 - - uid: 16143 + - uid: 10896 components: - type: Transform pos: 20.5,-120.5 parent: 2 - - uid: 16144 + - uid: 10897 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 16145 + - uid: 10898 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 16146 + - uid: 10899 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 16147 + - uid: 10900 components: - type: Transform pos: 19.5,-123.5 parent: 2 - - uid: 16150 + - uid: 10901 components: - type: Transform pos: 20.5,-122.5 parent: 2 - - uid: 16152 + - uid: 10902 components: - type: Transform pos: 20.5,-121.5 parent: 2 - - uid: 16154 + - uid: 10903 components: - type: Transform pos: 19.5,-124.5 parent: 2 - - uid: 16155 + - uid: 10904 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16156 + - uid: 10905 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16157 + - uid: 10906 components: - type: Transform pos: -17.5,-185.5 parent: 2 - - uid: 16158 + - uid: 10907 components: - type: Transform pos: 20.5,-91.5 parent: 2 - - uid: 16159 + - uid: 10908 components: - type: Transform pos: 20.5,-90.5 parent: 2 - - uid: 16160 + - uid: 10909 components: - type: Transform pos: 20.5,-89.5 parent: 2 - - uid: 16161 + - uid: 10910 components: - type: Transform pos: 21.5,-89.5 parent: 2 - - uid: 16162 + - uid: 10911 components: - type: Transform pos: 21.5,-88.5 parent: 2 - - uid: 16163 + - uid: 10912 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 16164 + - uid: 10913 components: - type: Transform pos: 21.5,-86.5 parent: 2 - - uid: 16165 + - uid: 10914 components: - type: Transform pos: 21.5,-85.5 parent: 2 - - uid: 16166 + - uid: 10915 components: - type: Transform pos: 21.5,-84.5 parent: 2 - - uid: 16167 + - uid: 10916 components: - type: Transform pos: 21.5,-83.5 parent: 2 - - uid: 16168 + - uid: 10917 components: - type: Transform pos: 21.5,-82.5 parent: 2 - - uid: 16169 + - uid: 10918 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 16170 + - uid: 10919 components: - type: Transform pos: 22.5,-81.5 parent: 2 - - uid: 16171 + - uid: 10920 components: - type: Transform pos: 22.5,-80.5 parent: 2 - - uid: 16172 + - uid: 10921 components: - type: Transform pos: 22.5,-79.5 parent: 2 - - uid: 16173 + - uid: 10922 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 16174 + - uid: 10923 components: - type: Transform pos: 22.5,-77.5 parent: 2 - - uid: 16175 + - uid: 10924 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 16176 + - uid: 10925 components: - type: Transform pos: 20.5,-65.5 parent: 2 - - uid: 16177 + - uid: 10926 components: - type: Transform pos: 20.5,-64.5 parent: 2 - - uid: 16178 + - uid: 10927 components: - type: Transform pos: 20.5,-63.5 parent: 2 - - uid: 16179 + - uid: 10928 components: - type: Transform pos: 20.5,-62.5 parent: 2 - - uid: 16180 + - uid: 10929 components: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 16181 + - uid: 10930 components: - type: Transform pos: 21.5,-62.5 parent: 2 - - uid: 16182 + - uid: 10931 components: - type: Transform pos: 21.5,-61.5 parent: 2 - - uid: 16183 + - uid: 10932 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 16184 + - uid: 10933 components: - type: Transform pos: 21.5,-59.5 parent: 2 - - uid: 16185 + - uid: 10934 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 16186 + - uid: 10935 components: - type: Transform pos: 21.5,-57.5 parent: 2 - - uid: 16187 + - uid: 10936 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 16188 + - uid: 10937 components: - type: Transform pos: 21.5,-55.5 parent: 2 - - uid: 16194 + - uid: 10938 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 16195 + - uid: 10939 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 16196 + - uid: 10940 components: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 16197 + - uid: 10941 components: - type: Transform pos: 22.5,-52.5 parent: 2 - - uid: 16198 + - uid: 10942 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 16199 + - uid: 10943 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 16200 + - uid: 10944 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 16203 + - uid: 10945 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 16204 + - uid: 10946 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - uid: 16205 + - uid: 10947 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 16206 + - uid: 10948 components: - type: Transform pos: 22.5,-31.5 parent: 2 - - uid: 16207 + - uid: 10949 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 16208 + - uid: 10950 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 16209 + - uid: 10951 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 16210 + - uid: 10952 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 16211 + - uid: 10953 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 16212 + - uid: 10954 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 16213 + - uid: 10955 components: - type: Transform pos: 21.5,-45.5 parent: 2 - - uid: 16214 + - uid: 10956 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 16215 + - uid: 10957 components: - type: Transform pos: 21.5,-44.5 parent: 2 - - uid: 16216 + - uid: 10958 components: - type: Transform pos: 20.5,-28.5 parent: 2 - - uid: 16217 + - uid: 10959 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 16218 + - uid: 10960 components: - type: Transform pos: 20.5,-26.5 parent: 2 - - uid: 16219 + - uid: 10961 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 16221 + - uid: 10962 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 16223 + - uid: 10963 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 16225 + - uid: 10964 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16285 + - uid: 10965 components: - type: Transform pos: -19.5,-177.5 parent: 2 - - uid: 16286 + - uid: 10966 components: - type: Transform pos: -17.5,-184.5 parent: 2 - - uid: 16287 + - uid: 10967 components: - type: Transform pos: -17.5,-183.5 parent: 2 - - uid: 16288 + - uid: 10968 components: - type: Transform pos: -17.5,-182.5 parent: 2 - - uid: 16289 + - uid: 10969 components: - type: Transform pos: -17.5,-181.5 parent: 2 - - uid: 16290 + - uid: 10970 components: - type: Transform pos: -18.5,-181.5 parent: 2 - - uid: 16291 + - uid: 10971 components: - type: Transform pos: -18.5,-180.5 parent: 2 - - uid: 16292 + - uid: 10972 components: - type: Transform pos: -18.5,-179.5 parent: 2 - - uid: 16293 + - uid: 10973 components: - type: Transform pos: -18.5,-178.5 parent: 2 - - uid: 16294 + - uid: 10974 components: - type: Transform pos: -18.5,-177.5 parent: 2 - - uid: 16296 + - uid: 10975 components: - type: Transform pos: -19.5,-176.5 parent: 2 - - uid: 16297 + - uid: 10976 components: - type: Transform pos: -19.5,-175.5 parent: 2 - - uid: 16298 + - uid: 10977 components: - type: Transform pos: -19.5,-174.5 parent: 2 - - uid: 16299 + - uid: 10978 components: - type: Transform pos: -19.5,-173.5 parent: 2 - - uid: 16300 + - uid: 10979 components: - type: Transform pos: -19.5,-172.5 parent: 2 - - uid: 16301 + - uid: 10980 components: - type: Transform pos: -19.5,-171.5 parent: 2 - - uid: 16302 + - uid: 10981 components: - type: Transform pos: -19.5,-170.5 parent: 2 - - uid: 16303 + - uid: 10982 components: - type: Transform pos: -20.5,-170.5 parent: 2 - - uid: 16304 + - uid: 10983 components: - type: Transform pos: -20.5,-169.5 parent: 2 - - uid: 16305 + - uid: 10984 components: - type: Transform pos: -20.5,-168.5 parent: 2 - - uid: 16306 + - uid: 10985 components: - type: Transform pos: -20.5,-167.5 parent: 2 - - uid: 16307 + - uid: 10986 components: - type: Transform pos: -20.5,-166.5 parent: 2 - - uid: 16308 + - uid: 10987 components: - type: Transform pos: -20.5,-165.5 parent: 2 - - uid: 16309 + - uid: 10988 components: - type: Transform pos: -20.5,-164.5 parent: 2 - - uid: 16310 + - uid: 10989 components: - type: Transform pos: -20.5,-163.5 parent: 2 - - uid: 16311 + - uid: 10990 components: - type: Transform pos: -21.5,-163.5 parent: 2 - - uid: 16312 + - uid: 10991 components: - type: Transform pos: -21.5,-162.5 parent: 2 - - uid: 16313 + - uid: 10992 components: - type: Transform pos: -21.5,-161.5 parent: 2 - - uid: 16314 + - uid: 10993 components: - type: Transform pos: -21.5,-160.5 parent: 2 - - uid: 16315 + - uid: 10994 components: - type: Transform pos: -21.5,-159.5 parent: 2 - - uid: 16316 + - uid: 10995 components: - type: Transform pos: -21.5,-158.5 parent: 2 - - uid: 16330 + - uid: 10996 components: - type: Transform pos: 22.5,-157.5 parent: 2 - - uid: 16331 + - uid: 10997 components: - type: Transform pos: 22.5,-158.5 parent: 2 - - uid: 16332 + - uid: 10998 components: - type: Transform pos: 22.5,-159.5 parent: 2 - - uid: 16333 + - uid: 10999 components: - type: Transform pos: 22.5,-160.5 parent: 2 - - uid: 16334 + - uid: 11000 components: - type: Transform pos: 22.5,-161.5 parent: 2 - - uid: 16335 + - uid: 11001 components: - type: Transform pos: 22.5,-162.5 parent: 2 - - uid: 16336 + - uid: 11002 components: - type: Transform pos: 21.5,-163.5 parent: 2 - - uid: 16337 + - uid: 11003 components: - type: Transform pos: 21.5,-162.5 parent: 2 - - uid: 16338 + - uid: 11004 components: - type: Transform pos: 21.5,-164.5 parent: 2 - - uid: 16339 + - uid: 11005 components: - type: Transform pos: 21.5,-165.5 parent: 2 - - uid: 16340 + - uid: 11006 components: - type: Transform pos: 21.5,-166.5 parent: 2 - - uid: 16341 + - uid: 11007 components: - type: Transform pos: 21.5,-167.5 parent: 2 - - uid: 16342 + - uid: 11008 components: - type: Transform pos: 21.5,-168.5 parent: 2 - - uid: 16343 + - uid: 11009 components: - type: Transform pos: 21.5,-169.5 parent: 2 - - uid: 16346 + - uid: 11010 components: - type: Transform pos: 20.5,-169.5 parent: 2 - - uid: 16347 + - uid: 11011 components: - type: Transform pos: 20.5,-170.5 parent: 2 - - uid: 16348 + - uid: 11012 components: - type: Transform pos: 20.5,-171.5 parent: 2 - - uid: 16349 + - uid: 11013 components: - type: Transform pos: 20.5,-172.5 parent: 2 - - uid: 16350 + - uid: 11014 components: - type: Transform pos: 20.5,-173.5 parent: 2 - - uid: 16351 + - uid: 11015 components: - type: Transform pos: 20.5,-174.5 parent: 2 - - uid: 16352 + - uid: 11016 components: - type: Transform pos: 20.5,-175.5 parent: 2 - - uid: 16353 + - uid: 11017 components: - type: Transform pos: 20.5,-176.5 parent: 2 - - uid: 16354 + - uid: 11018 components: - type: Transform pos: 19.5,-176.5 parent: 2 - - uid: 16355 + - uid: 11019 components: - type: Transform pos: 19.5,-177.5 parent: 2 - - uid: 16356 + - uid: 11020 components: - type: Transform pos: 19.5,-178.5 parent: 2 - - uid: 16357 + - uid: 11021 components: - type: Transform pos: 19.5,-179.5 parent: 2 - - uid: 16358 + - uid: 11022 components: - type: Transform pos: 19.5,-180.5 parent: 2 - - uid: 16359 + - uid: 11023 components: - type: Transform pos: 18.5,-180.5 parent: 2 - - uid: 16360 + - uid: 11024 components: - type: Transform pos: 18.5,-181.5 parent: 2 - - uid: 16361 + - uid: 11025 components: - type: Transform pos: 18.5,-182.5 parent: 2 - - uid: 16362 + - uid: 11026 components: - type: Transform pos: 18.5,-183.5 parent: 2 - - uid: 16363 + - uid: 11027 components: - type: Transform pos: 18.5,-184.5 parent: 2 - - uid: 16373 + - uid: 11028 components: - type: Transform pos: 23.5,-189.5 parent: 2 - - uid: 16379 + - uid: 11029 components: - type: Transform pos: 23.5,-185.5 parent: 2 - - uid: 16380 + - uid: 11030 components: - type: Transform pos: 23.5,-186.5 parent: 2 - - uid: 16381 + - uid: 11031 components: - type: Transform pos: 23.5,-187.5 parent: 2 - - uid: 16382 + - uid: 11032 components: - type: Transform pos: 23.5,-188.5 parent: 2 - - uid: 16383 + - uid: 11033 components: - type: Transform pos: 23.5,-190.5 parent: 2 - - uid: 16384 + - uid: 11034 components: - type: Transform pos: 22.5,-190.5 parent: 2 - - uid: 16385 + - uid: 11035 components: - type: Transform pos: 22.5,-191.5 parent: 2 - - uid: 16386 + - uid: 11036 components: - type: Transform pos: 22.5,-192.5 parent: 2 - - uid: 16387 + - uid: 11037 components: - type: Transform pos: 22.5,-193.5 parent: 2 - - uid: 16388 + - uid: 11038 components: - type: Transform pos: 22.5,-194.5 parent: 2 - - uid: 16389 + - uid: 11039 components: - type: Transform pos: 22.5,-195.5 parent: 2 - - uid: 16390 + - uid: 11040 components: - type: Transform pos: 22.5,-196.5 parent: 2 - - uid: 16391 + - uid: 11041 components: - type: Transform pos: 22.5,-197.5 parent: 2 - - uid: 16392 + - uid: 11042 components: - type: Transform pos: 21.5,-197.5 parent: 2 - - uid: 16394 + - uid: 11043 components: - type: Transform pos: 21.5,-198.5 parent: 2 - - uid: 16395 + - uid: 11044 components: - type: Transform pos: 21.5,-199.5 parent: 2 - - uid: 16396 + - uid: 11045 components: - type: Transform pos: 21.5,-200.5 parent: 2 - - uid: 16397 + - uid: 11046 components: - type: Transform pos: 21.5,-201.5 parent: 2 - - uid: 16398 + - uid: 11047 components: - type: Transform pos: 21.5,-202.5 parent: 2 - - uid: 16399 + - uid: 11048 components: - type: Transform pos: 21.5,-203.5 parent: 2 - - uid: 16400 + - uid: 11049 components: - type: Transform pos: 21.5,-204.5 parent: 2 - - uid: 16401 + - uid: 11050 components: - type: Transform pos: 20.5,-204.5 parent: 2 - - uid: 16402 + - uid: 11051 components: - type: Transform pos: 20.5,-205.5 parent: 2 - - uid: 16403 + - uid: 11052 components: - type: Transform pos: 20.5,-206.5 parent: 2 - - uid: 16404 + - uid: 11053 components: - type: Transform pos: 20.5,-207.5 parent: 2 - - uid: 16405 + - uid: 11054 components: - type: Transform pos: 20.5,-208.5 parent: 2 - - uid: 16406 + - uid: 11055 components: - type: Transform pos: 19.5,-208.5 parent: 2 - - uid: 16407 + - uid: 11056 components: - type: Transform pos: 19.5,-209.5 parent: 2 - - uid: 16408 + - uid: 11057 components: - type: Transform pos: 19.5,-210.5 parent: 2 - - uid: 16425 + - uid: 11058 components: - type: Transform pos: -17.5,-210.5 parent: 2 - - uid: 16427 + - uid: 11059 components: - type: Transform pos: -17.5,-209.5 parent: 2 - - uid: 16428 + - uid: 11060 components: - type: Transform pos: -17.5,-208.5 parent: 2 - - uid: 16429 + - uid: 11061 components: - type: Transform pos: -18.5,-208.5 parent: 2 - - uid: 16430 + - uid: 11062 components: - type: Transform pos: -18.5,-207.5 parent: 2 - - uid: 16431 + - uid: 11063 components: - type: Transform pos: -18.5,-206.5 parent: 2 - - uid: 16432 + - uid: 11064 components: - type: Transform pos: -18.5,-205.5 parent: 2 - - uid: 16433 + - uid: 11065 components: - type: Transform pos: -18.5,-204.5 parent: 2 - - uid: 16434 + - uid: 11066 components: - type: Transform pos: -19.5,-204.5 parent: 2 - - uid: 16435 + - uid: 11067 components: - type: Transform pos: -19.5,-203.5 parent: 2 - - uid: 16436 + - uid: 11068 components: - type: Transform pos: -19.5,-202.5 parent: 2 - - uid: 16437 + - uid: 11069 components: - type: Transform pos: -19.5,-201.5 parent: 2 - - uid: 16438 + - uid: 11070 components: - type: Transform pos: -19.5,-200.5 parent: 2 - - uid: 16439 + - uid: 11071 components: - type: Transform pos: -19.5,-199.5 parent: 2 - - uid: 16440 + - uid: 11072 components: - type: Transform pos: -19.5,-198.5 parent: 2 - - uid: 16441 + - uid: 11073 components: - type: Transform pos: -19.5,-197.5 parent: 2 - - uid: 16442 + - uid: 11074 components: - type: Transform pos: -20.5,-197.5 parent: 2 - - uid: 16443 + - uid: 11075 components: - type: Transform pos: -20.5,-196.5 parent: 2 - - uid: 16444 + - uid: 11076 components: - type: Transform pos: -20.5,-195.5 parent: 2 - - uid: 16445 + - uid: 11077 components: - type: Transform pos: -20.5,-194.5 parent: 2 - - uid: 16446 + - uid: 11078 components: - type: Transform pos: -20.5,-193.5 parent: 2 - - uid: 16447 + - uid: 11079 components: - type: Transform pos: -20.5,-192.5 parent: 2 - - uid: 16448 + - uid: 11080 components: - type: Transform pos: -20.5,-191.5 parent: 2 - - uid: 16449 + - uid: 11081 components: - type: Transform pos: -20.5,-190.5 parent: 2 - - uid: 16450 + - uid: 11082 components: - type: Transform pos: -21.5,-190.5 parent: 2 - - uid: 16451 + - uid: 11083 components: - type: Transform pos: -21.5,-189.5 parent: 2 - - uid: 16452 + - uid: 11084 components: - type: Transform pos: -21.5,-188.5 parent: 2 - - uid: 16453 + - uid: 11085 components: - type: Transform pos: -21.5,-187.5 parent: 2 - - uid: 16454 + - uid: 11086 components: - type: Transform pos: -21.5,-186.5 parent: 2 - - uid: 16455 + - uid: 11087 components: - type: Transform pos: -21.5,-185.5 parent: 2 - - uid: 16537 + - uid: 11088 components: - type: Transform pos: 17.5,-354.5 parent: 2 - - uid: 16556 + - uid: 11089 components: - type: Transform pos: 17.5,-355.5 parent: 2 - - uid: 16557 + - uid: 11090 components: - type: Transform pos: 17.5,-356.5 parent: 2 - - uid: 16558 + - uid: 11091 components: - type: Transform pos: 17.5,-357.5 parent: 2 - - uid: 16559 + - uid: 11092 components: - type: Transform pos: 17.5,-358.5 parent: 2 - - uid: 16560 + - uid: 11093 components: - type: Transform pos: 17.5,-359.5 parent: 2 - - uid: 16562 + - uid: 11094 components: - type: Transform pos: 16.5,-361.5 parent: 2 - - uid: 16563 + - uid: 11095 components: - type: Transform pos: 16.5,-362.5 parent: 2 - - uid: 16564 + - uid: 11096 components: - type: Transform pos: 16.5,-363.5 parent: 2 - - uid: 16565 + - uid: 11097 components: - type: Transform pos: 16.5,-364.5 parent: 2 - - uid: 16566 + - uid: 11098 components: - type: Transform pos: 16.5,-365.5 parent: 2 - - uid: 16567 + - uid: 11099 components: - type: Transform pos: 16.5,-366.5 parent: 2 - - uid: 16568 + - uid: 11100 components: - type: Transform pos: 15.5,-368.5 parent: 2 - - uid: 16569 + - uid: 11101 components: - type: Transform pos: 15.5,-369.5 parent: 2 - - uid: 16570 + - uid: 11102 components: - type: Transform pos: 15.5,-370.5 parent: 2 - - uid: 16571 + - uid: 11103 components: - type: Transform pos: 15.5,-371.5 parent: 2 - - uid: 16572 + - uid: 11104 components: - type: Transform pos: 15.5,-372.5 parent: 2 - - uid: 16573 + - uid: 11105 components: - type: Transform pos: 15.5,-373.5 parent: 2 - - uid: 16574 + - uid: 11106 components: - type: Transform pos: 14.5,-374.5 parent: 2 - - uid: 16575 + - uid: 11107 components: - type: Transform pos: 14.5,-375.5 parent: 2 - - uid: 16576 + - uid: 11108 components: - type: Transform pos: 14.5,-376.5 parent: 2 - - uid: 16577 + - uid: 11109 components: - type: Transform pos: 14.5,-377.5 parent: 2 - - uid: 16578 + - uid: 11110 components: - type: Transform pos: 13.5,-378.5 parent: 2 - - uid: 16579 + - uid: 11111 components: - type: Transform pos: 13.5,-379.5 parent: 2 - - uid: 16580 + - uid: 11112 components: - type: Transform pos: -12.5,-379.5 parent: 2 - - uid: 16582 + - uid: 11113 components: - type: Transform pos: -12.5,-378.5 parent: 2 - - uid: 16587 + - uid: 11114 components: - type: Transform pos: -13.5,-377.5 parent: 2 - - uid: 16588 + - uid: 11115 components: - type: Transform pos: -13.5,-376.5 parent: 2 - - uid: 16589 + - uid: 11116 components: - type: Transform pos: -13.5,-375.5 parent: 2 - - uid: 16590 + - uid: 11117 components: - type: Transform pos: -13.5,-374.5 parent: 2 - - uid: 16591 + - uid: 11118 components: - type: Transform pos: -14.5,-373.5 parent: 2 - - uid: 16592 + - uid: 11119 components: - type: Transform pos: -14.5,-372.5 parent: 2 - - uid: 16593 + - uid: 11120 components: - type: Transform pos: -14.5,-371.5 parent: 2 - - uid: 16594 + - uid: 11121 components: - type: Transform pos: -14.5,-370.5 parent: 2 - - uid: 16595 + - uid: 11122 components: - type: Transform pos: -14.5,-369.5 parent: 2 - - uid: 16596 + - uid: 11123 components: - type: Transform pos: -14.5,-368.5 parent: 2 - - uid: 16597 + - uid: 11124 components: - type: Transform pos: -14.5,-367.5 parent: 2 - - uid: 16598 + - uid: 11125 components: - type: Transform pos: -15.5,-366.5 parent: 2 - - uid: 16599 + - uid: 11126 components: - type: Transform pos: -15.5,-365.5 parent: 2 - - uid: 16600 + - uid: 11127 components: - type: Transform pos: -15.5,-364.5 parent: 2 - - uid: 16601 + - uid: 11128 components: - type: Transform pos: -15.5,-363.5 parent: 2 - - uid: 16602 + - uid: 11129 components: - type: Transform pos: -15.5,-362.5 parent: 2 - - uid: 16603 + - uid: 11130 components: - type: Transform pos: -15.5,-361.5 parent: 2 - - uid: 16604 + - uid: 11131 components: - type: Transform pos: -15.5,-360.5 parent: 2 - - uid: 16605 + - uid: 11132 components: - type: Transform pos: -16.5,-359.5 parent: 2 - - uid: 16606 + - uid: 11133 components: - type: Transform pos: -16.5,-358.5 parent: 2 - - uid: 16607 + - uid: 11134 components: - type: Transform pos: -16.5,-357.5 parent: 2 - - uid: 16608 + - uid: 11135 components: - type: Transform pos: -16.5,-356.5 parent: 2 - - uid: 16609 + - uid: 11136 components: - type: Transform pos: -16.5,-355.5 parent: 2 - - uid: 16610 + - uid: 11137 components: - type: Transform pos: -16.5,-354.5 parent: 2 - - uid: 16744 + - uid: 11138 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-323.5 parent: 2 - - uid: 16745 + - uid: 11139 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-322.5 parent: 2 - - uid: 16746 + - uid: 11140 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-321.5 parent: 2 - - uid: 16747 + - uid: 11141 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-320.5 parent: 2 - - uid: 16748 + - uid: 11142 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-319.5 parent: 2 - - uid: 16749 + - uid: 11143 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-318.5 parent: 2 - - uid: 16750 + - uid: 11144 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-317.5 parent: 2 - - uid: 16751 + - uid: 11145 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-316.5 parent: 2 - - uid: 16752 + - uid: 11146 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-315.5 parent: 2 - - uid: 16753 + - uid: 11147 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-314.5 parent: 2 - - uid: 16754 + - uid: 11148 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-313.5 parent: 2 - - uid: 16755 + - uid: 11149 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-312.5 parent: 2 - - uid: 16756 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-315.5 parent: 2 - - uid: 16757 + - uid: 11151 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-313.5 parent: 2 - - uid: 16758 + - uid: 11152 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-312.5 parent: 2 - - uid: 16759 + - uid: 11153 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-311.5 parent: 2 - - uid: 16760 + - uid: 11154 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-310.5 parent: 2 - - uid: 16761 + - uid: 11155 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-309.5 parent: 2 - - uid: 16762 + - uid: 11156 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-308.5 parent: 2 - - uid: 16763 + - uid: 11157 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-307.5 parent: 2 - - uid: 16764 + - uid: 11158 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-306.5 parent: 2 - - uid: 16765 + - uid: 11159 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-305.5 parent: 2 - - uid: 16766 + - uid: 11160 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-304.5 parent: 2 - - uid: 16767 + - uid: 11161 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-303.5 parent: 2 - - uid: 16768 + - uid: 11162 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-302.5 parent: 2 - - uid: 16769 + - uid: 11163 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-301.5 parent: 2 - - uid: 16770 + - uid: 11164 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-300.5 parent: 2 - - uid: 16771 + - uid: 11165 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-299.5 parent: 2 - - uid: 16772 + - uid: 11166 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-297.5 parent: 2 - - uid: 16773 + - uid: 11167 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-296.5 parent: 2 - - uid: 16774 + - uid: 11168 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-295.5 parent: 2 - - uid: 16775 + - uid: 11169 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-294.5 parent: 2 - - uid: 16776 + - uid: 11170 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-293.5 parent: 2 - - uid: 16777 + - uid: 11171 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-292.5 parent: 2 - - uid: 16778 + - uid: 11172 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-298.5 parent: 2 - - uid: 16779 + - uid: 11173 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-299.5 parent: 2 - - uid: 16780 + - uid: 11174 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-300.5 parent: 2 - - uid: 16781 + - uid: 11175 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-301.5 parent: 2 - - uid: 16782 + - uid: 11176 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-302.5 parent: 2 - - uid: 16819 + - uid: 11177 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-317.5 parent: 2 - - uid: 16820 + - uid: 11178 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-320.5 parent: 2 - - uid: 16821 + - uid: 11179 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-319.5 parent: 2 - - uid: 16822 + - uid: 11180 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-318.5 parent: 2 - - uid: 16823 + - uid: 11181 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-316.5 parent: 2 - - uid: 16824 + - uid: 11182 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-315.5 parent: 2 - - uid: 16825 + - uid: 11183 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-314.5 parent: 2 - - uid: 16826 + - uid: 11184 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-313.5 parent: 2 - - uid: 16827 + - uid: 11185 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-312.5 parent: 2 - - uid: 16828 + - uid: 11186 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-311.5 parent: 2 - - uid: 16829 + - uid: 11187 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-310.5 parent: 2 - - uid: 16830 + - uid: 11188 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-309.5 parent: 2 - - uid: 16831 + - uid: 11189 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-308.5 parent: 2 - - uid: 16832 + - uid: 11190 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-307.5 parent: 2 - - uid: 16833 + - uid: 11191 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-306.5 parent: 2 - - uid: 16834 + - uid: 11192 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-305.5 parent: 2 - - uid: 16835 + - uid: 11193 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-304.5 parent: 2 - - uid: 16836 + - uid: 11194 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-303.5 parent: 2 - - uid: 16837 + - uid: 11195 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-302.5 parent: 2 - - uid: 16838 + - uid: 11196 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-301.5 parent: 2 - - uid: 16839 + - uid: 11197 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-300.5 parent: 2 - - uid: 16840 + - uid: 11198 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-299.5 parent: 2 - - uid: 16841 + - uid: 11199 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-298.5 parent: 2 - - uid: 16842 + - uid: 11200 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-297.5 parent: 2 - - uid: 16843 + - uid: 11201 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-296.5 parent: 2 - - uid: 16844 + - uid: 11202 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-295.5 parent: 2 - - uid: 16845 + - uid: 11203 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-294.5 parent: 2 - - uid: 16846 + - uid: 11204 components: - type: Transform rot: 1.5707963267948966 rad @@ -74528,7 +73980,7 @@ entities: parent: 2 - proto: GunSafeDisabler entities: - - uid: 12385 + - uid: 11205 components: - type: Transform pos: -0.5,-367.5 @@ -74553,70 +74005,70 @@ entities: - 0 - proto: GunSafeLaserCarbine entities: - - uid: 15797 + - uid: 11206 components: - type: Transform pos: 8.5,-338.5 parent: 2 - proto: GunSafePistolMk58 entities: - - uid: 9424 + - uid: 11207 components: - type: Transform pos: -0.5,-362.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 10696 + - uid: 11208 components: - type: Transform pos: 6.5,-338.5 parent: 2 - proto: GunSafeShotgunKammerer entities: - - uid: 10845 + - uid: 11209 components: - type: Transform pos: 6.5,-337.5 parent: 2 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10992 + - uid: 11210 components: - type: Transform pos: 8.5,-337.5 parent: 2 - proto: Handcuffs entities: - - uid: 11434 - components: - - type: Transform - pos: 4.456359,-358.63803 - parent: 2 - - uid: 12777 + - uid: 5607 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 11211 + components: + - type: Transform + pos: 4.456359,-358.63803 + parent: 2 - proto: HandheldGPSBasic entities: - - uid: 14076 + - uid: 11212 components: - type: Transform pos: -1.713614,-166.57089 parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 3890 + - uid: 11213 components: - type: Transform pos: -5.5934877,-206.55833 parent: 2 - proto: HandheldStationMap entities: - - uid: 8420 + - uid: 11214 components: - type: Transform rot: 3.141592653589793 rad @@ -74624,107 +74076,107 @@ entities: parent: 2 - proto: HappyHonk entities: - - uid: 15812 + - uid: 11215 components: - type: Transform pos: 7.0998864,-17.75665 parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 7735 + - uid: 11216 components: - type: Transform pos: 7.5,-339.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 102 + - uid: 11217 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 266 + - uid: 11218 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 7942 + - uid: 11219 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 8050 + - uid: 11220 components: - type: Transform pos: 22.5,-314.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 295 + - uid: 11221 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3188 + - uid: 11222 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-178.5 parent: 2 - - uid: 3685 + - uid: 11223 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3690 + - uid: 11224 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3691 + - uid: 11225 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3692 + - uid: 11226 components: - type: Transform pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -134439.94 + secondsUntilStateChange: -141100.73 state: Closing - - uid: 11796 + - uid: 11227 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11797 + - uid: 11228 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11798 + - uid: 11229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11799 + - uid: 11230 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11800 + - uid: 11231 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-372.5 parent: 2 - - uid: 11801 + - uid: 11232 components: - type: Transform rot: 3.141592653589793 rad @@ -74732,43 +74184,43 @@ entities: parent: 2 - proto: hydroponicsSoil entities: - - uid: 2028 + - uid: 11233 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-95.5 parent: 2 - - uid: 11467 + - uid: 11234 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11468 + - uid: 11235 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11469 + - uid: 11236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-373.5 parent: 2 - - uid: 11470 + - uid: 11237 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-373.5 parent: 2 - - uid: 11471 + - uid: 11238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-373.5 parent: 2 - - uid: 11472 + - uid: 11239 components: - type: Transform rot: 3.141592653589793 rad @@ -74776,63 +74228,63 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 2029 + - uid: 11240 components: - type: Transform pos: -4.9444575,-95.49014 parent: 2 - - uid: 26466 + - uid: 11241 components: - type: Transform pos: -1.4858844,-371.00397 parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 26463 + - uid: 11242 components: - type: Transform pos: -1.2279739,-371.28754 parent: 2 - proto: hydroponicsTray entities: - - uid: 1730 + - uid: 11243 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 1731 + - uid: 11244 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 1737 + - uid: 11245 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 1739 + - uid: 11246 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 1740 + - uid: 11247 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 1744 + - uid: 11248 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 - - uid: 1745 + - uid: 11249 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 1746 + - uid: 11250 components: - type: Transform rot: -1.5707963267948966 rad @@ -74840,49 +74292,49 @@ entities: parent: 2 - proto: Igniter entities: - - uid: 17063 + - uid: 11251 components: - type: Transform pos: -13.294711,-246.58882 parent: 2 - - uid: 17064 + - uid: 11252 components: - type: Transform pos: -13.227223,-246.42015 parent: 2 - proto: InflatableWall entities: - - uid: 1860 + - uid: 11253 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-96.5 parent: 2 - - uid: 7348 + - uid: 11254 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-163.5 parent: 2 - - uid: 7350 + - uid: 11255 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-163.5 parent: 2 - - uid: 7351 + - uid: 11256 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-164.5 parent: 2 - - uid: 7352 + - uid: 11257 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-163.5 parent: 2 - - uid: 7353 + - uid: 11258 components: - type: Transform rot: -1.5707963267948966 rad @@ -74890,13 +74342,13 @@ entities: parent: 2 - proto: InflatableWallStack1 entities: - - uid: 1861 + - uid: 11259 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.53376,-97.54558 parent: 2 - - uid: 1862 + - uid: 11260 components: - type: Transform rot: 1.5707963267948966 rad @@ -74904,50 +74356,50 @@ entities: parent: 2 - proto: IngotGold1 entities: - - uid: 14450 + - uid: 11261 components: - type: Transform pos: 17.62472,-83.47914 parent: 2 - - uid: 14452 + - uid: 11262 components: - type: Transform pos: 17.334173,-83.06987 parent: 2 - - uid: 14453 + - uid: 11263 components: - type: Transform pos: 13.557059,-82.449356 parent: 2 - - uid: 14454 + - uid: 11264 components: - type: Transform pos: 13.821194,-78.3566 parent: 2 - proto: IngotSilver entities: - - uid: 89 + - uid: 11265 components: - type: Transform pos: -3.4884946,-1.3774483 parent: 2 - proto: IngotSilver1 entities: - - uid: 14455 + - uid: 11266 components: - type: Transform pos: 13.464613,-83.32071 parent: 2 - proto: IntercomCommand entities: - - uid: 69 + - uid: 11267 components: - type: Transform pos: 1.5,-13.5 parent: 2 - proto: IntercomEngineering entities: - - uid: 9078 + - uid: 11268 components: - type: Transform rot: -1.5707963267948966 rad @@ -74955,7 +74407,7 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 12199 + - uid: 11269 components: - type: Transform rot: -1.5707963267948966 rad @@ -74963,7 +74415,7 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 12201 + - uid: 11270 components: - type: Transform rot: 1.5707963267948966 rad @@ -74971,7 +74423,7 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2852 + - uid: 11271 components: - type: Transform rot: 1.5707963267948966 rad @@ -74979,13 +74431,13 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 1736 + - uid: 11272 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-85.5 parent: 2 - - uid: 12202 + - uid: 11273 components: - type: Transform rot: 1.5707963267948966 rad @@ -74993,7 +74445,7 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 1613 + - uid: 11274 components: - type: Transform rot: -1.5707963267948966 rad @@ -75001,7 +74453,7 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 2775 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad @@ -75009,7 +74461,7 @@ entities: parent: 2 - proto: JetpackBlackFilled entities: - - uid: 11980 + - uid: 11276 components: - type: Transform rot: 3.141592653589793 rad @@ -75017,166 +74469,166 @@ entities: parent: 2 - proto: JetpackBlueFilled entities: - - uid: 914 + - uid: 11277 components: - type: Transform pos: 4.6285653,0.46697795 parent: 2 - - uid: 915 + - uid: 11278 components: - type: Transform pos: 4.3160653,0.73260295 parent: 2 - proto: JetpackMini entities: - - uid: 16812 + - uid: 4697 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: JetpackMiniFilled entities: - - uid: 5136 + - uid: 11279 components: - type: Transform pos: 9.644433,-115.42764 parent: 2 - - uid: 10822 + - uid: 11280 components: - type: Transform pos: 9.44197,-115.30394 parent: 2 - - uid: 15167 + - uid: 11281 components: - type: Transform pos: 9.644433,-115.27022 parent: 2 - proto: KitchenElectricGrill entities: - - uid: 1930 + - uid: 11282 components: - type: Transform pos: 1.5,-88.5 parent: 2 - proto: KitchenKnife entities: - - uid: 2309 + - uid: 11283 components: - type: Transform pos: -0.53435105,-85.90257 parent: 2 - proto: KitchenMicrowave entities: - - uid: 206 + - uid: 11284 components: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 580 + - uid: 11285 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 1944 + - uid: 11286 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 8638 + - uid: 11287 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8915 + - uid: 11288 components: - type: Transform pos: 8.5,-253.5 parent: 2 - - uid: 9986 + - uid: 11289 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 12364 + - uid: 11290 components: - type: Transform pos: 0.5,-370.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 1947 + - uid: 11291 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 3128 + - uid: 11292 components: - type: Transform pos: 4.5,-169.5 parent: 2 - - uid: 10936 + - uid: 11293 components: - type: Transform pos: -5.5,-193.5 parent: 2 - proto: KitchenSpike entities: - - uid: 1781 + - uid: 11294 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1785 + - uid: 11295 components: - type: Transform pos: -5.5,-91.5 parent: 2 - proto: KoboldCubeBox entities: - - uid: 3907 + - uid: 11296 components: - type: Transform pos: -6.325115,-194.94174 parent: 2 - proto: KudzuFlowerFriendly entities: - - uid: 16531 + - uid: 11297 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 16532 + - uid: 11298 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 16533 + - uid: 11299 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 16534 + - uid: 11300 components: - type: Transform pos: -13.5,-166.5 parent: 2 - proto: LampBanana entities: - - uid: 2013 + - uid: 11301 components: - type: Transform pos: -7.310762,-123.94716 parent: 2 - proto: LampGold entities: - - uid: 1369 + - uid: 11302 components: - type: Transform pos: -5.572312,-71.25691 parent: 2 - - uid: 10922 + - uid: 11303 components: - type: Transform rot: -1.5707963267948966 rad @@ -75184,92 +74636,92 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 12080 + - uid: 11304 components: - type: Transform pos: -5.6837883,-357.0308 parent: 2 - proto: LandMineExplosive entities: - - uid: 11530 + - uid: 11305 components: - type: Transform pos: -4.5384116,-351.36267 parent: 2 - proto: Lantern entities: - - uid: 2675 + - uid: 11306 components: - type: Transform pos: 3.728132,-143.36674 parent: 2 - - uid: 2676 + - uid: 11307 components: - type: Transform pos: 5.2072816,-143.33742 parent: 2 - proto: LargeBeaker entities: - - uid: 2295 + - uid: 11308 components: - type: Transform pos: 1.582355,-86.26639 parent: 2 - - uid: 3146 + - uid: 11309 components: - type: Transform pos: 4.313154,-165.64075 parent: 2 - - uid: 3918 + - uid: 11310 components: - type: Transform pos: -4.4480414,-198.16447 parent: 2 - proto: LauncherCreamPie entities: - - uid: 10163 + - uid: 5476 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LeavesCannabis entities: - - uid: 14914 + - uid: 11311 components: - type: Transform rot: 3.141592653589793 rad pos: -6.4884734,-144.73663 parent: 2 - - uid: 14921 + - uid: 11312 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4209847,-144.91653 parent: 2 - - uid: 14922 + - uid: 11313 components: - type: Transform pos: -6.55596,-148.32358 parent: 2 - proto: LightImplanter entities: - - uid: 3977 + - uid: 11314 components: - type: Transform pos: -2.5364327,-207.28964 parent: 2 - proto: LightReplacer entities: - - uid: 8901 + - uid: 11315 components: - type: Transform pos: -13.643399,-246.28522 parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 13287 + - uid: 11316 components: - type: Transform anchored: True @@ -75277,7 +74729,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14009 + - uid: 11317 components: - type: Transform anchored: True @@ -75285,7 +74737,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14297 + - uid: 11318 components: - type: Transform anchored: True @@ -75295,59 +74747,59 @@ entities: bodyType: Static - proto: LockerBoozeFilled entities: - - uid: 1115 + - uid: 11319 components: - type: Transform pos: 4.5,-61.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 1129 + - uid: 11320 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 2058 + - uid: 11321 components: - type: Transform pos: -6.5,-89.5 parent: 2 - proto: LockerCaptainFilled entities: - - uid: 297 + - uid: 11322 components: - type: Transform pos: -3.5,-14.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 3123 + - uid: 11323 components: - type: Transform pos: 7.5,-165.5 parent: 2 - - uid: 3124 + - uid: 11324 components: - type: Transform pos: 7.5,-166.5 parent: 2 - proto: LockerChiefEngineerFilled entities: - - uid: 8794 + - uid: 11325 components: - type: Transform pos: 11.5,-254.5 parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 3764 + - uid: 11326 components: - type: Transform pos: -0.5,-202.5 parent: 2 - proto: LockerClown entities: - - uid: 2003 + - uid: 5467 components: - type: Transform pos: -8.5,-124.5 @@ -75376,149 +74828,149 @@ entities: showEnts: False occludes: True ents: - - 8788 - - 8946 - - 10014 - - 10018 - - 10091 - - 10092 - - 10163 - - 10639 - - 10781 + - 5469 + - 5471 + - 5474 + - 5472 + - 5473 + - 5470 + - 5476 + - 5468 + - 5475 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 9400 + - uid: 11327 components: - type: Transform pos: -2.5,-73.5 parent: 2 - proto: LockerElectricalSupplies entities: - - uid: 14316 + - uid: 11328 components: - type: Transform pos: -2.5,-244.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: - - uid: 3255 + - uid: 11329 components: - type: Transform pos: 3.5,-107.5 parent: 2 - - uid: 4239 + - uid: 11330 components: - type: Transform pos: -2.5,-18.5 parent: 2 - proto: LockerEngineerFilledHardsuit entities: - - uid: 4850 + - uid: 11331 components: - type: Transform pos: 6.5,-257.5 parent: 2 - - uid: 4977 + - uid: 11332 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 5103 + - uid: 11333 components: - type: Transform pos: 5.5,-255.5 parent: 2 - - uid: 7779 + - uid: 11334 components: - type: Transform pos: 5.5,-257.5 parent: 2 - - uid: 7817 + - uid: 11335 components: - type: Transform pos: 4.5,-257.5 parent: 2 - - uid: 7875 + - uid: 11336 components: - type: Transform pos: 4.5,-255.5 parent: 2 - - uid: 8234 + - uid: 11337 components: - type: Transform pos: 3.5,-255.5 parent: 2 - - uid: 9869 + - uid: 11338 components: - type: Transform pos: 3.5,-257.5 parent: 2 - proto: LockerEvidence entities: - - uid: 11352 + - uid: 11339 components: - type: Transform pos: -1.5,-342.5 parent: 2 - - uid: 11353 + - uid: 11340 components: - type: Transform pos: -0.5,-342.5 parent: 2 - - uid: 11378 + - uid: 11341 components: - type: Transform pos: 3.5,-368.5 parent: 2 - - uid: 11379 + - uid: 11342 components: - type: Transform pos: -2.5,-368.5 parent: 2 - - uid: 11403 + - uid: 11343 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11404 + - uid: 11344 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11405 + - uid: 11345 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11406 + - uid: 11346 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11408 + - uid: 11347 components: - type: Transform pos: -0.5,-368.5 parent: 2 - proto: LockerFreezer entities: - - uid: 1939 + - uid: 11348 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1941 + - uid: 11349 components: - type: Transform pos: -0.5,-89.5 parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 83 + - uid: 11350 components: - type: Transform pos: -0.5,-1.5 @@ -75547,62 +74999,62 @@ entities: showEnts: False occludes: True ents: - - 76 + - 11351 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2232 + - uid: 11352 components: - type: Transform pos: -1.5,-117.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 11098 + - uid: 11353 components: - type: Transform pos: -5.5,-344.5 parent: 2 - proto: LockerMedicalFilled entities: - - uid: 2440 + - uid: 11354 components: - type: Transform pos: -0.5,-194.5 parent: 2 - - uid: 3175 + - uid: 11355 components: - type: Transform pos: 3.5,-193.5 parent: 2 - - uid: 3177 + - uid: 11356 components: - type: Transform pos: 3.5,-194.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 291 + - uid: 11357 components: - type: Transform pos: 7.5,-171.5 parent: 2 - - uid: 294 + - uid: 11358 components: - type: Transform pos: 3.5,-176.5 parent: 2 - - uid: 2370 + - uid: 11359 components: - type: Transform pos: 5.5,-180.5 parent: 2 - proto: LockerMime entities: - - uid: 2019 + - uid: 5479 components: - type: Transform pos: -8.5,-121.5 @@ -75631,171 +75083,171 @@ entities: showEnts: False occludes: True ents: - - 11491 - - 11453 - - 11452 - - 11288 - - 11287 - - 11286 - - 11661 + - 5485 + - 5480 + - 5482 + - 5484 + - 5481 + - 5483 + - 5486 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerParamedicFilled entities: - - uid: 2047 + - uid: 11360 components: - type: Transform pos: -2.5,-166.5 parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 9012 + - uid: 11361 components: - type: Transform pos: 6.5,-285.5 parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10049 + - uid: 11362 components: - type: Transform pos: -8.5,-305.5 parent: 2 - proto: LockerSalvageSpecialistFilled entities: - - uid: 8489 + - uid: 11363 components: - type: Transform pos: -6.5,-287.5 parent: 2 - - uid: 8494 + - uid: 11364 components: - type: Transform pos: -6.5,-285.5 parent: 2 - - uid: 8507 + - uid: 11365 components: - type: Transform pos: -6.5,-286.5 parent: 2 - proto: LockerScienceFilled entities: - - uid: 10026 + - uid: 11366 components: - type: Transform pos: 7.5,-302.5 parent: 2 - - uid: 10028 + - uid: 11367 components: - type: Transform pos: 4.5,-310.5 parent: 2 - - uid: 10038 + - uid: 11368 components: - type: Transform pos: -2.5,-313.5 parent: 2 - - uid: 10039 + - uid: 11369 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 10088 + - uid: 11370 components: - type: Transform pos: -2.5,-315.5 parent: 2 - - uid: 10128 + - uid: 11371 components: - type: Transform pos: -6.5,-302.5 parent: 2 - proto: LockerSecurityFilled entities: - - uid: 596 + - uid: 11372 components: - type: Transform pos: -8.5,-338.5 parent: 2 - - uid: 1145 + - uid: 11373 components: - type: Transform pos: -8.5,-339.5 parent: 2 - - uid: 7216 + - uid: 11374 components: - type: Transform pos: -8.5,-337.5 parent: 2 - - uid: 7249 + - uid: 11375 components: - type: Transform pos: -8.5,-340.5 parent: 2 - - uid: 7254 + - uid: 11376 components: - type: Transform pos: -7.5,-336.5 parent: 2 - - uid: 9416 + - uid: 11377 components: - type: Transform pos: -7.5,-342.5 parent: 2 - - uid: 10747 + - uid: 11378 components: - type: Transform pos: -8.5,-341.5 parent: 2 - proto: LockerWardenFilled entities: - - uid: 12854 + - uid: 11379 components: - type: Transform pos: 1.5,-363.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 3673 + - uid: 11380 components: - type: Transform pos: 5.5,-111.5 parent: 2 - - uid: 14346 + - uid: 11381 components: - type: Transform pos: -2.5,-261.5 parent: 2 - - uid: 14347 + - uid: 11382 components: - type: Transform pos: 3.5,-261.5 parent: 2 - proto: LuxuryPen entities: - - uid: 11103 + - uid: 11383 components: - type: Transform pos: 5.7372117,-332.35062 parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 9998 + - uid: 11384 components: - type: Transform pos: 6.5,-300.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 10010 + - uid: 11385 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-299.5 parent: 2 - - uid: 10011 + - uid: 11386 components: - type: Transform rot: -1.5707963267948966 rad @@ -75803,13 +75255,13 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 10006 + - uid: 11387 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-304.5 parent: 2 - - uid: 10007 + - uid: 11388 components: - type: Transform rot: -1.5707963267948966 rad @@ -75817,143 +75269,143 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 10029 + - uid: 11389 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 3161 + - uid: 11390 components: - type: Transform pos: 4.5,-165.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 3698 + - uid: 11391 components: - type: Transform pos: 7.5,-168.5 parent: 2 - proto: MachineFrame entities: - - uid: 16496 + - uid: 11392 components: - type: Transform pos: -1.5,-172.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 6704 + - uid: 11393 components: - type: Transform pos: 31.5,-260.5 parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 10716 + - uid: 11394 components: - type: Transform pos: -3.9900005,-346.49026 parent: 2 - - uid: 10718 + - uid: 11395 components: - type: Transform pos: -4.0056252,-346.584 parent: 2 - proto: MagicDiceBag entities: - - uid: 14459 + - uid: 11396 components: - type: Transform pos: 17.444256,-79.34277 parent: 2 - proto: MailingUnit entities: - - uid: 2711 + - uid: 11397 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: MailingUnit tag: Chapel - - uid: 5864 + - uid: 11398 components: - type: Transform pos: -0.5,-279.5 parent: 2 - type: MailingUnit tag: Cargo - - uid: 6643 + - uid: 11399 components: - type: Transform pos: 6.5,-176.5 parent: 2 - type: MailingUnit tag: Medical - - uid: 8111 + - uid: 11400 components: - type: Transform pos: 13.5,-250.5 parent: 2 - type: MailingUnit tag: Engineering - - uid: 9040 + - uid: 11401 components: - type: Transform pos: -6.5,-142.5 parent: 2 - type: MailingUnit tag: Library - - uid: 12147 + - uid: 11402 components: - type: Transform pos: 2.5,-91.5 parent: 2 - type: MailingUnit tag: Kitchen - - uid: 12394 + - uid: 11403 components: - type: Transform pos: 2.5,-119.5 parent: 2 - type: MailingUnit tag: HoP Office - - uid: 13434 + - uid: 11404 components: - type: Transform pos: -3.5,-342.5 parent: 2 - - uid: 13518 + - uid: 11405 components: - type: Transform pos: 4.5,-10.5 parent: 2 - type: MailingUnit tag: Bridge - - uid: 13625 + - uid: 11406 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: MailingUnit tag: Bar - - uid: 13819 + - uid: 11407 components: - type: Transform pos: -3.5,-288.5 parent: 2 - type: MailingUnit tag: Salvage - - uid: 14134 + - uid: 11408 components: - type: Transform pos: -3.5,-303.5 parent: 2 - type: MailingUnit tag: Science - - uid: 17005 + - uid: 11409 components: - type: Transform pos: -13.5,-261.5 @@ -75962,373 +75414,373 @@ entities: tag: Atmos - proto: MaintenanceFluffSpawner entities: - - uid: 1036 + - uid: 11410 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1133 + - uid: 11411 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1134 + - uid: 11412 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 2757 + - uid: 11413 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 7403 + - uid: 11414 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7404 + - uid: 11415 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7405 + - uid: 11416 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7406 + - uid: 11417 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7407 + - uid: 11418 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 11698 + - uid: 11419 components: - type: Transform pos: -6.5,-146.5 parent: 2 - - uid: 13432 + - uid: 11420 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 14651 + - uid: 11421 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 14652 + - uid: 11422 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14653 + - uid: 11423 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14654 + - uid: 11424 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14681 + - uid: 11425 components: - type: Transform pos: -12.5,-168.5 parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 1033 + - uid: 11426 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 1035 + - uid: 11427 components: - type: Transform pos: -3.5,-41.5 parent: 2 - - uid: 1590 + - uid: 11428 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 1591 + - uid: 11429 components: - type: Transform pos: 6.5,-54.5 parent: 2 - - uid: 1596 + - uid: 11430 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1608 + - uid: 11431 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 3561 + - uid: 11432 components: - type: Transform pos: -5.5,-162.5 parent: 2 - - uid: 5256 + - uid: 11433 components: - type: Transform pos: 7.5,-162.5 parent: 2 - - uid: 7412 + - uid: 11434 components: - type: Transform pos: 16.5,-158.5 parent: 2 - - uid: 7413 + - uid: 11435 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 7414 + - uid: 11436 components: - type: Transform pos: 14.5,-158.5 parent: 2 - - uid: 12117 + - uid: 11437 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 14624 + - uid: 11438 components: - type: Transform pos: -5.5,-243.5 parent: 2 - - uid: 16498 + - uid: 11439 components: - type: Transform pos: -14.5,-165.5 parent: 2 - - uid: 16499 + - uid: 11440 components: - type: Transform pos: -14.5,-164.5 parent: 2 - - uid: 16516 + - uid: 11441 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16518 + - uid: 11442 components: - type: Transform pos: -12.5,-164.5 parent: 2 - - uid: 16520 + - uid: 11443 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 16521 + - uid: 11444 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 16522 + - uid: 11445 components: - type: Transform pos: -12.5,-166.5 parent: 2 - - uid: 16523 + - uid: 11446 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 16524 + - uid: 11447 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 16884 + - uid: 11448 components: - type: Transform pos: -5.5,-250.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 1169 + - uid: 11449 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 2673 + - uid: 11450 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 2756 + - uid: 11451 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 3639 + - uid: 11452 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 7408 + - uid: 11453 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-146.5 parent: 2 - - uid: 7409 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7410 + - uid: 11455 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 9059 + - uid: 11456 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9060 + - uid: 11457 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 14626 + - uid: 11458 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14680 + - uid: 11459 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16887 + - uid: 11460 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 1106 + - uid: 11461 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 2750 + - uid: 11462 components: - type: Transform pos: -2.5,-148.5 parent: 2 - - uid: 7411 + - uid: 11463 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 16515 + - uid: 11464 components: - type: Transform pos: -11.5,-164.5 parent: 2 - - uid: 16904 + - uid: 11465 components: - type: Transform pos: -13.5,-161.5 parent: 2 - proto: Matchbox entities: - - uid: 14413 + - uid: 11466 components: - type: Transform pos: 13.58873,-63.406937 parent: 2 - proto: MaterialBones1 entities: - - uid: 1178 + - uid: 11467 components: - type: Transform pos: -9.6216,-313.45743 parent: 2 - - uid: 1328 + - uid: 11468 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.432205,-287.74188 parent: 2 - - uid: 2268 + - uid: 11469 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.485611,-116.31554 parent: 2 - - uid: 12160 + - uid: 11470 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.70648,-164.34258 parent: 2 - - uid: 12161 + - uid: 11471 components: - type: Transform rot: 3.141592653589793 rad pos: 3.2381563,-139.7225 parent: 2 - - uid: 12162 + - uid: 11472 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.6467605,-95.3029 parent: 2 - - uid: 12163 + - uid: 11473 components: - type: Transform pos: 7.7499275,-57.722916 parent: 2 - - uid: 12164 + - uid: 11474 components: - type: Transform pos: 4.1805468,-18.559465 parent: 2 - - uid: 12165 + - uid: 11475 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.3194995,-200.24161 parent: 2 - - uid: 12168 + - uid: 11476 components: - type: Transform pos: -7.709251,-14.40967 parent: 2 - - uid: 12169 + - uid: 11477 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.665835,-223.53601 parent: 2 - - uid: 12171 + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad @@ -76336,192 +75788,192 @@ entities: parent: 2 - proto: MaterialCloth entities: - - uid: 2261 + - uid: 11479 components: - type: Transform pos: 2.2574189,-121.30031 parent: 2 - proto: MaterialDiamond1 entities: - - uid: 95 + - uid: 11480 components: - type: Transform pos: -2.44932,-1.350307 parent: 2 - proto: MaterialDurathread entities: - - uid: 2259 + - uid: 11481 components: - type: Transform pos: 2.6536188,-121.53795 parent: 2 - proto: MaterialReclaimer entities: - - uid: 9053 + - uid: 11482 components: - type: Transform pos: 6.5,-276.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 6887 + - uid: 11483 components: - type: Transform pos: 19.673317,-257.24585 parent: 2 - proto: MatterBinStockPart entities: - - uid: 9979 + - uid: 11484 components: - type: Transform pos: -1.6846497,-303.9585 parent: 2 - proto: MedicalBed entities: - - uid: 477 + - uid: 11485 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 478 + - uid: 11486 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 2419 + - uid: 11487 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3136 + - uid: 11488 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3169 + - uid: 11489 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 11437 + - uid: 11490 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 3219 + - uid: 11491 components: - type: Transform pos: -0.5,-192.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 403 + - uid: 11492 components: - type: Transform pos: 1.6380901,2.7440202 parent: 2 - - uid: 11429 + - uid: 11493 components: - type: Transform pos: -6.360816,-360.66074 parent: 2 - proto: MedkitBruteFilled entities: - - uid: 3232 + - uid: 11494 components: - type: Transform pos: 1.9111176,-192.26358 parent: 2 - - uid: 3233 + - uid: 11495 components: - type: Transform pos: 2.104815,-192.52763 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 3226 + - uid: 11496 components: - type: Transform pos: 3.7108743,-192.53125 parent: 2 - - uid: 3227 + - uid: 11497 components: - type: Transform pos: 3.5171762,-192.26721 parent: 2 - proto: MedkitFilled entities: - - uid: 3235 + - uid: 11498 components: - type: Transform pos: 1.6602318,-193.5479 parent: 2 - - uid: 3236 + - uid: 11499 components: - type: Transform pos: 1.4137071,-193.27406 parent: 2 - - uid: 3237 + - uid: 11500 components: - type: Transform pos: 1.6367531,-192.97285 parent: 2 - - uid: 3238 + - uid: 11501 components: - type: Transform pos: 1.4137071,-192.68338 parent: 2 - - uid: 8892 + - uid: 11502 components: - type: Transform pos: -7.402346,-271.4695 parent: 2 - - uid: 11435 + - uid: 11503 components: - type: Transform pos: -6.627599,-360.45245 parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 3228 + - uid: 11504 components: - type: Transform pos: 2.9762833,-192.27135 parent: 2 - - uid: 3229 + - uid: 11505 components: - type: Transform pos: 3.1699817,-192.5354 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 3230 + - uid: 11506 components: - type: Transform pos: 2.436729,-192.26717 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 2761 + - uid: 11507 components: - type: Transform pos: 6.701955,-163.31392 parent: 2 - - uid: 3231 + - uid: 11508 components: - type: Transform pos: 2.6417062,-192.53575 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 9971 + - uid: 11509 components: - type: Transform pos: -1.635678,-304.48248 parent: 2 - - uid: 9978 + - uid: 11510 components: - type: Transform rot: -1.5707963267948966 rad @@ -76529,287 +75981,287 @@ entities: parent: 2 - proto: MiningWindow entities: - - uid: 3246 + - uid: 11511 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-136.5 parent: 2 - - uid: 4182 + - uid: 11512 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 2 - - uid: 7253 + - uid: 11513 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-144.5 parent: 2 - - uid: 7256 + - uid: 11514 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-147.5 parent: 2 - - uid: 7257 + - uid: 11515 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-144.5 parent: 2 - - uid: 7258 + - uid: 11516 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-145.5 parent: 2 - - uid: 7259 + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-146.5 parent: 2 - - uid: 7260 + - uid: 11518 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-147.5 parent: 2 - - uid: 7265 + - uid: 11519 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-138.5 parent: 2 - - uid: 7266 + - uid: 11520 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-139.5 parent: 2 - - uid: 7267 + - uid: 11521 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-139.5 parent: 2 - - uid: 7268 + - uid: 11522 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-138.5 parent: 2 - - uid: 7273 + - uid: 11523 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-153.5 parent: 2 - - uid: 7274 + - uid: 11524 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-152.5 parent: 2 - - uid: 7275 + - uid: 11525 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-153.5 parent: 2 - - uid: 7276 + - uid: 11526 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-152.5 parent: 2 - - uid: 7299 + - uid: 11527 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-160.5 parent: 2 - - uid: 7300 + - uid: 11528 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-159.5 parent: 2 - - uid: 7301 + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-159.5 parent: 2 - - uid: 7302 + - uid: 11530 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-160.5 parent: 2 - - uid: 7309 + - uid: 11531 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-166.5 parent: 2 - - uid: 7310 + - uid: 11532 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-165.5 parent: 2 - - uid: 14249 + - uid: 11533 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - uid: 14250 + - uid: 11534 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 14251 + - uid: 11535 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 14252 + - uid: 11536 components: - type: Transform pos: 18.5,-77.5 parent: 2 - - uid: 14253 + - uid: 11537 components: - type: Transform pos: 18.5,-78.5 parent: 2 - - uid: 14254 + - uid: 11538 components: - type: Transform pos: 18.5,-79.5 parent: 2 - - uid: 14255 + - uid: 11539 components: - type: Transform pos: 18.5,-73.5 parent: 2 - - uid: 14256 + - uid: 11540 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 14257 + - uid: 11541 components: - type: Transform pos: 18.5,-72.5 parent: 2 - - uid: 14258 + - uid: 11542 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 14259 + - uid: 11543 components: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 14260 + - uid: 11544 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 14272 + - uid: 11545 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-87.5 parent: 2 - - uid: 14276 + - uid: 11546 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-86.5 parent: 2 - - uid: 14281 + - uid: 11547 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-86.5 parent: 2 - - uid: 14284 + - uid: 11548 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-136.5 parent: 2 - - uid: 14285 + - uid: 11549 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-136.5 parent: 2 - - uid: 14286 + - uid: 11550 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-135.5 parent: 2 - - uid: 14414 + - uid: 11551 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14415 + - uid: 11552 components: - type: Transform pos: 14.5,-76.5 parent: 2 - proto: MiningWindowDiagonal entities: - - uid: 4198 + - uid: 11553 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-137.5 parent: 2 - - uid: 7490 + - uid: 11554 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-137.5 parent: 2 - - uid: 9808 + - uid: 11555 components: - type: Transform pos: 14.5,-135.5 parent: 2 - - uid: 9814 + - uid: 11556 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-135.5 parent: 2 - - uid: 14004 + - uid: 11557 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-85.5 parent: 2 - - uid: 14097 + - uid: 11558 components: - type: Transform pos: 16.5,-85.5 parent: 2 - - uid: 14101 + - uid: 11559 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 - - uid: 14282 + - uid: 11560 components: - type: Transform rot: 1.5707963267948966 rad @@ -76817,19 +76269,19 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 2873 + - uid: 11561 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2874 + - uid: 11562 components: - type: Transform pos: -2.5,-154.5 parent: 2 - proto: MopBucket entities: - - uid: 14774 + - uid: 11563 components: - type: Transform pos: 3.5661294,-32.585365 @@ -76843,122 +76295,122 @@ entities: shark_slot: !type:ContainerSlot showEnts: False occludes: True - ent: 14775 + ent: 11564 - proto: MopItem entities: - - uid: 1734 + - uid: 627 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11565 components: - type: Transform pos: -2.979488,-53.533066 parent: 2 - - uid: 3243 + - uid: 11566 components: - type: Transform pos: -1.3489041,-172.98175 parent: 2 - - uid: 12296 + - uid: 11567 components: - type: Transform pos: -4.5275626,-374.4991 parent: 2 - - uid: 14478 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Morgue entities: - - uid: 2693 + - uid: 7557 + components: + - type: Transform + pos: -3.5,-172.5 + parent: 2 + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-138.5 parent: 2 - - uid: 2783 + - uid: 11569 components: - type: Transform pos: -4.5,-172.5 parent: 2 - - uid: 2889 + - uid: 11570 components: - type: Transform pos: -4.5,-175.5 parent: 2 - - uid: 2903 + - uid: 11571 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-177.5 parent: 2 - - uid: 2908 + - uid: 11572 components: - type: Transform pos: -3.5,-175.5 parent: 2 - - uid: 2983 + - uid: 11573 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-174.5 parent: 2 - - uid: 2984 + - uid: 11574 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - - uid: 3045 + - uid: 11575 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-177.5 parent: 2 - - uid: 3047 + - uid: 11576 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-177.5 parent: 2 - - uid: 3049 + - uid: 11577 components: - type: Transform pos: -2.5,-172.5 parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -3.5,-172.5 - parent: 2 - proto: MothroachCube entities: - - uid: 13991 + - uid: 11579 components: - type: Transform pos: 20.53401,-238.32663 parent: 2 - proto: MouseTimedSpawner entities: - - uid: 8968 + - uid: 11580 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 14691 + - uid: 11581 components: - type: Transform pos: -6.5,-169.5 parent: 2 - proto: Multitool entities: - - uid: 12376 + - uid: 11582 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4878173,-317.32074 parent: 2 - - uid: 15095 + - uid: 11583 components: - type: Transform rot: -1.5707963267948966 rad @@ -76966,59 +76418,59 @@ entities: parent: 2 - proto: MysteryFigureBoxTrash entities: - - uid: 14731 + - uid: 11584 components: - type: Transform pos: -6.5606046,-189.40254 parent: 2 - - uid: 14732 + - uid: 11585 components: - type: Transform pos: -6.3614616,-189.46121 parent: 2 - proto: NitrogenCanister entities: - - uid: 3602 + - uid: 11586 components: - type: Transform pos: -7.5,-175.5 parent: 2 - - uid: 9822 + - uid: 11587 components: - type: Transform pos: -4.5,-311.5 parent: 2 - - uid: 11937 + - uid: 11588 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 12143 + - uid: 11589 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 16957 + - uid: 11590 components: - type: Transform pos: -21.5,-257.5 parent: 2 - proto: NitrousOxideCanister entities: - - uid: 11220 + - uid: 11591 components: - type: Transform pos: 5.5,-355.5 parent: 2 - proto: NoticeBoard entities: - - uid: 2785 + - uid: 11592 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-142.5 parent: 2 - - uid: 12137 + - uid: 11593 components: - type: Transform rot: 3.141592653589793 rad @@ -77026,7 +76478,7 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 82 + - uid: 11594 components: - type: Transform rot: 3.141592653589793 rad @@ -77034,193 +76486,193 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 1634 + - uid: 11595 components: - type: Transform pos: 5.5,-66.5 parent: 2 - proto: OperatingTable entities: - - uid: 3778 + - uid: 11596 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 6913 + - uid: 11597 components: - type: Transform pos: -11.5,-165.5 parent: 2 - - uid: 6960 + - uid: 11598 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 6964 + - uid: 11599 components: - type: Transform pos: -11.5,-164.5 parent: 2 - proto: OreBag entities: - - uid: 8956 + - uid: 11600 components: - type: Transform pos: -4.660206,-273.15723 parent: 2 - - uid: 8957 + - uid: 11601 components: - type: Transform pos: -4.3602595,-273.51703 parent: 2 - proto: OreProcessor entities: - - uid: 8856 + - uid: 11602 components: - type: Transform pos: -1.5,-270.5 parent: 2 - proto: OxygenCanister entities: - - uid: 7196 + - uid: 11603 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 8891 + - uid: 11604 components: - type: Transform pos: -6.5,-268.5 parent: 2 - - uid: 9992 + - uid: 11605 components: - type: Transform pos: -5.5,-312.5 parent: 2 - - uid: 11914 + - uid: 11606 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 12140 + - uid: 11607 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 14640 + - uid: 11608 components: - type: Transform pos: -6.5,-258.5 parent: 2 - proto: PaintingAmogusTriptych entities: - - uid: 14569 + - uid: 11609 components: - type: Transform pos: 13.5,-308.5 parent: 2 - proto: PaintingSkeletonCigarette entities: - - uid: 14384 + - uid: 11610 components: - type: Transform pos: 13.5,-59.5 parent: 2 - proto: Paper entities: - - uid: 1458 + - uid: 11611 components: - type: Transform pos: -5.538568,-72.16771 parent: 2 - - uid: 4686 + - uid: 11612 components: - type: Transform pos: -5.6735435,-72.06651 parent: 2 - - uid: 6645 + - uid: 11613 components: - type: Transform pos: 1.2017322,-250.54102 parent: 2 - - uid: 6646 + - uid: 11614 components: - type: Transform pos: 1.1885252,-250.9767 parent: 2 - - uid: 11069 + - uid: 11615 components: - type: Transform pos: 5.1001754,-328.37433 parent: 2 - - uid: 11070 + - uid: 11616 components: - type: Transform pos: 5.271862,-328.51956 parent: 2 - proto: PaperBin10 entities: - - uid: 318 + - uid: 11617 components: - type: Transform pos: -1.5,-9.5 parent: 2 - proto: PaperBin20 entities: - - uid: 216 + - uid: 11618 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 2748 + - uid: 11619 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 10164 + - uid: 11620 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 11067 + - uid: 11621 components: - type: Transform pos: 6.5,-332.5 parent: 2 - proto: PaperBin5 entities: - - uid: 2746 + - uid: 11622 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-139.5 parent: 2 - - uid: 14786 + - uid: 11623 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: PaperOffice entities: - - uid: 8542 + - uid: 11624 components: - type: Transform pos: 4.3584957,-272.45734 parent: 2 - - uid: 9082 + - uid: 11625 components: - type: Transform pos: 4.538463,-272.60727 parent: 2 - proto: PaperScrap entities: - - uid: 2636 + - uid: 11626 components: - type: Transform pos: -6.3057356,-152.6655 parent: 2 - - uid: 2751 + - uid: 11627 components: - type: Transform rot: 3.141592653589793 rad @@ -77228,7 +76680,7 @@ entities: parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 8939 + - uid: 11628 components: - type: Transform rot: 1.5707963267948966 rad @@ -77236,7 +76688,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 7727 + - uid: 11629 components: - type: Transform rot: 1.5707963267948966 rad @@ -77244,7 +76696,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 7581 + - uid: 11630 components: - type: Transform rot: 1.5707963267948966 rad @@ -77252,7 +76704,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 8523 + - uid: 11631 components: - type: Transform rot: 1.5707963267948966 rad @@ -77260,7 +76712,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8100 + - uid: 11632 components: - type: Transform rot: 1.5707963267948966 rad @@ -77268,7 +76720,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamber entities: - - uid: 7461 + - uid: 11633 components: - type: Transform rot: 1.5707963267948966 rad @@ -77276,7 +76728,7 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8488 + - uid: 11634 components: - type: Transform rot: 1.5707963267948966 rad @@ -77284,41 +76736,41 @@ entities: parent: 2 - proto: Pen entities: - - uid: 217 + - uid: 11635 components: - type: Transform pos: 6.0078807,-6.5636206 parent: 2 - - uid: 218 + - uid: 11636 components: - type: Transform pos: 6.1091127,-6.4286876 parent: 2 - - uid: 2740 + - uid: 11637 components: - type: Transform pos: -5.6306825,-140.2427 parent: 2 - - uid: 2760 + - uid: 11638 components: - type: Transform pos: -5.401766,-139.93465 parent: 2 - - uid: 9084 + - uid: 11639 components: - type: Transform pos: 4.3734927,-272.86963 parent: 2 - proto: PhoneInstrument entities: - - uid: 207 + - uid: 11640 components: - type: Transform pos: 6.5365367,-7.3394823 parent: 2 - proto: PianoInstrument entities: - - uid: 7212 + - uid: 11641 components: - type: Transform rot: -1.5707963267948966 rad @@ -77326,68 +76778,68 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 8860 + - uid: 11642 components: - type: Transform pos: -7.5629373,-271.36987 parent: 2 - - uid: 8864 + - uid: 11643 components: - type: Transform pos: -4.5245614,-272.94254 parent: 2 - - uid: 14358 + - uid: 11644 components: - type: Transform pos: 13.454053,-140.39398 parent: 2 - proto: PillCanisterIron entities: - - uid: 3696 + - uid: 11645 components: - type: Transform pos: 3.6948316,-173.37283 parent: 2 - proto: PinpointerNuclear entities: - - uid: 76 + - uid: 11351 components: - type: Transform - parent: 83 + parent: 11350 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasmaCanister entities: - - uid: 1617 + - uid: 11646 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 9821 + - uid: 11647 components: - type: Transform pos: -5.5,-311.5 parent: 2 - - uid: 11915 + - uid: 11648 components: - type: Transform pos: -21.5,-251.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 2470 + - uid: 11649 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - - uid: 2472 + - uid: 11650 components: - type: Transform pos: 6.5,-341.5 parent: 2 - - uid: 6889 + - uid: 11651 components: - type: Transform rot: 1.5707963267948966 rad @@ -77395,53 +76847,53 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 8763 + - uid: 11652 components: - type: Transform pos: 2.5,-273.5 parent: 2 - - uid: 11957 + - uid: 11653 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 11958 + - uid: 11654 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 11959 + - uid: 11655 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 11970 + - uid: 11656 components: - type: Transform pos: 11.5,-277.5 parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - - uid: 4416 + - uid: 11657 components: - type: Transform pos: 4.5,-217.5 parent: 2 - proto: PlushieArachind entities: - - uid: 13435 + - uid: 11658 components: - type: Transform pos: -0.6106252,-27.432035 parent: 2 - proto: PlushieCarp entities: - - uid: 3706 + - uid: 11659 components: - type: Transform pos: 6.685664,-122.428696 parent: 2 - - uid: 3708 + - uid: 11660 components: - type: Transform rot: 3.141592653589793 rad @@ -77449,45 +76901,45 @@ entities: parent: 2 - proto: PlushieDiona entities: - - uid: 2253 + - uid: 11661 components: - type: Transform pos: 1.9108882,-40.77967 parent: 2 - proto: PlushieHuman entities: - - uid: 4139 + - uid: 11662 components: - type: Transform pos: -2.1023247,-3.5538187 parent: 2 - proto: PlushieLizard entities: - - uid: 14372 + - uid: 11663 components: - type: Transform pos: 16.56339,-60.471424 parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 1461 + - uid: 11664 components: - type: Transform pos: 3.2787921,-72.53624 parent: 2 - - uid: 4140 + - uid: 11665 components: - type: Transform pos: -3.6779807,-3.613141 parent: 2 - - uid: 14334 + - uid: 11666 components: - type: Transform pos: 14.486045,-60.418846 parent: 2 - proto: PlushieRGBee entities: - - uid: 9987 + - uid: 11667 components: - type: Transform rot: 3.141592653589793 rad @@ -77495,7 +76947,7 @@ entities: parent: 2 - proto: PlushieRouny entities: - - uid: 3887 + - uid: 11668 components: - type: Transform rot: 1.5707963267948966 rad @@ -77503,64 +76955,64 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 14775 + - uid: 11564 components: - type: Transform - parent: 14774 + parent: 11563 - type: Physics canCollide: False - proto: PlushieSpaceLizard entities: - - uid: 5362 + - uid: 11669 components: - type: Transform pos: -22.266762,-264.84647 parent: 2 - proto: PortableFlasher entities: - - uid: 14602 + - uid: 11670 components: - type: Transform pos: 9.5,-340.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 351 + - uid: 11671 components: - type: Transform pos: 6.5,-372.5 parent: 2 - - uid: 372 + - uid: 11672 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 1050 + - uid: 11673 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 2332 + - uid: 11674 components: - type: Transform pos: -2.5,-80.5 parent: 2 - - uid: 10720 + - uid: 11675 components: - type: Transform pos: -7.5,-174.5 parent: 2 - - uid: 10735 + - uid: 11676 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 10848 + - uid: 11677 components: - type: Transform pos: 4.5,-67.5 parent: 2 - - uid: 14617 + - uid: 11678 components: - type: Transform anchored: True @@ -77568,100 +77020,100 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14806 + - uid: 11679 components: - type: Transform pos: 16.5,-154.5 parent: 2 - - uid: 15585 + - uid: 11680 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 15787 + - uid: 11681 components: - type: Transform pos: 16.5,-142.5 parent: 2 - - uid: 15790 + - uid: 11682 components: - type: Transform pos: 5.5,-259.5 parent: 2 - - uid: 15791 + - uid: 11683 components: - type: Transform pos: -5.5,-296.5 parent: 2 - - uid: 15792 + - uid: 11684 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 15793 + - uid: 11685 components: - type: Transform pos: 1.5,-348.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 3745 + - uid: 11686 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3787 + - uid: 11687 components: - type: Transform pos: 18.5,-241.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 2379 + - uid: 11688 components: - type: Transform pos: 18.5,-242.5 parent: 2 - proto: PortableScrubber entities: - - uid: 3 + - uid: 11689 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 2337 + - uid: 11690 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 2387 + - uid: 11691 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 4904 + - uid: 11692 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7436 + - uid: 11693 components: - type: Transform pos: 2.5,-112.5 parent: 2 - - uid: 12101 + - uid: 11694 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 12631 + - uid: 11695 components: - type: Transform pos: 10.5,-310.5 parent: 2 - proto: PortalGatewayBlue entities: - - uid: 6620 + - uid: 11696 components: - type: Transform pos: -3.5,-254.5 @@ -77669,8 +77121,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6619 - - uid: 15817 + - 11698 + - uid: 11697 components: - type: Transform pos: 4.5,-15.5 @@ -77678,10 +77130,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15816 + - 11699 - proto: PortalGatewayOrange entities: - - uid: 6619 + - uid: 11698 components: - type: Transform pos: -0.5,-113.5 @@ -77689,8 +77141,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6620 - - uid: 15816 + - 11696 + - uid: 11699 components: - type: Transform pos: -4.5,-330.5 @@ -77698,10 +77150,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15817 + - 11697 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 378 + - uid: 11700 components: - type: MetaData name: Beach Star Bratton! @@ -77711,18 +77163,18 @@ entities: parent: 2 - proto: PosterContrabandClown entities: - - uid: 875 + - uid: 11701 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 1996 + - uid: 11702 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-124.5 parent: 2 - - uid: 14882 + - uid: 11703 components: - type: Transform rot: -1.5707963267948966 rad @@ -77730,41 +77182,41 @@ entities: parent: 2 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 1210 + - uid: 11704 components: - type: Transform pos: 20.5,-249.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 7980 + - uid: 11705 components: - type: Transform pos: 20.5,-240.5 parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 3752 + - uid: 11706 components: - type: Transform pos: -3.5,-0.5 parent: 2 - proto: PosterContrabandSmoke entities: - - uid: 6624 + - uid: 11707 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 12669 + - uid: 11708 components: - type: Transform pos: 1.5,-267.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 3709 + - uid: 11709 components: - type: Transform rot: 3.141592653589793 rad @@ -77772,7 +77224,7 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 3710 + - uid: 11710 components: - type: Transform rot: 3.141592653589793 rad @@ -77780,21 +77232,21 @@ entities: parent: 2 - proto: PosterLegitMime entities: - - uid: 2018 + - uid: 11711 components: - type: Transform pos: -5.5,-121.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 3895 + - uid: 11712 components: - type: Transform pos: -1.5,-0.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 2393 + - uid: 11713 components: - type: Transform rot: -1.5707963267948966 rad @@ -77802,425 +77254,425 @@ entities: parent: 2 - proto: PosterLegitSafetyMothHardhat entities: - - uid: 4223 + - uid: 11714 components: - type: Transform pos: -7.5,-111.5 parent: 2 - proto: PottedPlant16 entities: - - uid: 3909 + - uid: 11715 components: - type: Transform pos: -3.5,-198.5 parent: 2 - proto: PottedPlant7 entities: - - uid: 12408 + - uid: 11716 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 12440 + - uid: 11717 components: - type: Transform pos: -3.5,-299.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 65 + - uid: 11718 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 133 + - uid: 11719 components: - type: Transform pos: 2.5,-1.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 223 + - uid: 11720 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 313 + - uid: 11721 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 775 + - uid: 11722 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 2438 + - uid: 11723 components: - type: Transform pos: 6.5,-98.5 parent: 2 - - uid: 2439 + - uid: 11724 components: - type: Transform pos: -0.5,-98.5 parent: 2 - - uid: 2442 + - uid: 11725 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2509 + - uid: 11726 components: - type: Transform pos: -0.5,-135.5 parent: 2 - - uid: 2532 + - uid: 11727 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 3129 + - uid: 11728 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7789 + - uid: 11729 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 12701 + - uid: 11730 components: - type: Transform pos: 7.5,-306.5 parent: 2 - - uid: 12702 + - uid: 11731 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14745 + - uid: 11732 components: - type: Transform pos: -7.5,-309.5 parent: 2 - - uid: 14771 + - uid: 11733 components: - type: Transform pos: -1.5,-39.5 parent: 2 - - uid: 15032 + - uid: 11734 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 15033 + - uid: 11735 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 15035 + - uid: 11736 components: - type: Transform pos: 1.5,-110.5 parent: 2 - - uid: 15089 + - uid: 11737 components: - type: Transform pos: 10.5,-201.5 parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 9046 + - uid: 11738 components: - type: Transform pos: 3.5,-269.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 4045 + - uid: 11739 components: - type: Transform pos: -5.5,-305.5 parent: 2 - proto: PowerCellHigh entities: - - uid: 8833 + - uid: 11740 components: - type: Transform pos: 7.3432894,-115.48833 parent: 2 - - uid: 15160 + - uid: 11741 components: - type: Transform pos: 7.332042,-115.285934 parent: 2 - proto: PowerCellMedium entities: - - uid: 5120 + - uid: 11742 components: - type: Transform pos: 7.725722,-115.285934 parent: 2 - - uid: 15164 + - uid: 11743 components: - type: Transform pos: 7.7144737,-115.522064 parent: 2 - proto: PowerCellRecharger entities: - - uid: 1074 + - uid: 11744 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 9058 + - uid: 11745 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9065 + - uid: 11746 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 9066 + - uid: 11747 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 9067 + - uid: 11748 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 10129 + - uid: 11749 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 15267 + - uid: 11750 components: - type: Transform pos: 4.5,-245.5 parent: 2 - proto: Poweredlight entities: - - uid: 1244 + - uid: 11751 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-251.5 parent: 2 - - uid: 1454 + - uid: 11752 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-257.5 parent: 2 - - uid: 1805 + - uid: 11753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-165.5 parent: 2 - - uid: 2041 + - uid: 11754 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-168.5 parent: 2 - - uid: 2467 + - uid: 11755 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-237.5 parent: 2 - - uid: 3174 + - uid: 11756 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-169.5 parent: 2 - - uid: 3204 + - uid: 11757 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-172.5 parent: 2 - - uid: 3205 + - uid: 11758 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-177.5 parent: 2 - - uid: 3209 + - uid: 11759 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 3211 + - uid: 11760 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 3212 + - uid: 11761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 3249 + - uid: 11762 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-179.5 parent: 2 - - uid: 3679 + - uid: 11763 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-172.5 parent: 2 - - uid: 3776 + - uid: 11764 components: - type: Transform pos: -18.5,-236.5 parent: 2 - - uid: 3777 + - uid: 11765 components: - type: Transform pos: -21.5,-240.5 parent: 2 - - uid: 3779 + - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-194.5 parent: 2 - - uid: 3780 + - uid: 11767 components: - type: Transform pos: -0.5,-192.5 parent: 2 - - uid: 3781 + - uid: 11768 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-190.5 parent: 2 - - uid: 3785 + - uid: 11769 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-196.5 parent: 2 - - uid: 3786 + - uid: 11770 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-196.5 parent: 2 - - uid: 3828 + - uid: 11771 components: - type: Transform pos: 4.5,-205.5 parent: 2 - - uid: 3953 + - uid: 11772 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 4233 + - uid: 11773 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 4680 + - uid: 11774 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-191.5 parent: 2 - - uid: 4773 + - uid: 11775 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 4868 + - uid: 11776 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 - - uid: 4979 + - uid: 11777 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 5036 + - uid: 11778 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 6781 + - uid: 11779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 7323 + - uid: 11780 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-247.5 parent: 2 - - uid: 7719 + - uid: 11781 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-201.5 parent: 2 - - uid: 7720 + - uid: 11782 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 7904 + - uid: 11783 components: - type: Transform pos: -6.5,-189.5 parent: 2 - - uid: 13288 + - uid: 11784 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 16960 + - uid: 11785 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 16964 + - uid: 11786 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-265.5 parent: 2 - - uid: 16966 + - uid: 11787 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-241.5 parent: 2 - - uid: 16967 + - uid: 11788 components: - type: Transform rot: -1.5707963267948966 rad @@ -78228,7 +77680,7 @@ entities: parent: 2 - proto: PoweredlightBlue entities: - - uid: 5653 + - uid: 11789 components: - type: Transform rot: 1.5707963267948966 rad @@ -78236,22 +77688,22 @@ entities: parent: 2 - proto: PoweredlightCyan entities: - - uid: 6962 + - uid: 11790 components: - type: Transform pos: -3.5,-253.5 parent: 2 - - uid: 9692 + - uid: 11791 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 10799 + - uid: 11792 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 14344 + - uid: 11793 components: - type: Transform rot: 1.5707963267948966 rad @@ -78259,13 +77711,13 @@ entities: parent: 2 - proto: PoweredlightExterior entities: - - uid: 401 + - uid: 11794 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 - - uid: 421 + - uid: 11795 components: - type: Transform rot: 3.141592653589793 rad @@ -78273,13 +77725,13 @@ entities: parent: 2 - proto: PoweredlightGreen entities: - - uid: 4220 + - uid: 11796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-110.5 parent: 2 - - uid: 9694 + - uid: 11797 components: - type: Transform rot: 3.141592653589793 rad @@ -78287,465 +77739,465 @@ entities: parent: 2 - proto: PoweredlightLED entities: - - uid: 202 + - uid: 11798 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 757 + - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-122.5 parent: 2 - - uid: 1389 + - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-93.5 parent: 2 - - uid: 1394 + - uid: 11801 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1399 + - uid: 11802 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-91.5 parent: 2 - - uid: 1552 + - uid: 11803 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-85.5 parent: 2 - - uid: 1572 + - uid: 11804 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 1574 + - uid: 11805 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 1768 + - uid: 11806 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-113.5 parent: 2 - - uid: 2042 + - uid: 11807 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-5.5 parent: 2 - - uid: 2057 + - uid: 11808 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-176.5 parent: 2 - - uid: 2064 + - uid: 11809 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 2 - - uid: 2575 + - uid: 11810 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-252.5 parent: 2 - - uid: 3800 + - uid: 11811 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-261.5 parent: 2 - - uid: 4048 + - uid: 11812 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 4211 + - uid: 11813 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-249.5 parent: 2 - - uid: 4351 + - uid: 11814 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 4415 + - uid: 11815 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 5144 + - uid: 11816 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - - uid: 5479 + - uid: 11817 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-249.5 parent: 2 - - uid: 5489 + - uid: 11818 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 5503 + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-248.5 parent: 2 - - uid: 5504 + - uid: 11820 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-255.5 parent: 2 - - uid: 5654 + - uid: 11821 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-240.5 parent: 2 - - uid: 5661 + - uid: 11822 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 5699 + - uid: 11823 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-142.5 parent: 2 - - uid: 5700 + - uid: 11824 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-142.5 parent: 2 - - uid: 5961 + - uid: 11825 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-117.5 parent: 2 - - uid: 6015 + - uid: 11826 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 6019 + - uid: 11827 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 parent: 2 - - uid: 6038 + - uid: 11828 components: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 6062 + - uid: 11829 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 2 - - uid: 6068 + - uid: 11830 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 7497 + - uid: 11831 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-240.5 parent: 2 - - uid: 7777 + - uid: 11832 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 7858 + - uid: 11833 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8193 + - uid: 11834 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8277 + - uid: 11835 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-255.5 parent: 2 - - uid: 8350 + - uid: 11836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-249.5 parent: 2 - - uid: 8482 + - uid: 11837 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - - uid: 8663 + - uid: 11838 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-253.5 parent: 2 - - uid: 9444 + - uid: 11839 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-311.5 parent: 2 - - uid: 9534 + - uid: 11840 components: - type: Transform pos: 20.5,-315.5 parent: 2 - - uid: 9535 + - uid: 11841 components: - type: Transform pos: 24.5,-315.5 parent: 2 - - uid: 9537 + - uid: 11842 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-317.5 parent: 2 - - uid: 9538 + - uid: 11843 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-317.5 parent: 2 - - uid: 9544 + - uid: 11844 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9545 + - uid: 11845 components: - type: Transform pos: 23.5,-303.5 parent: 2 - - uid: 9546 + - uid: 11846 components: - type: Transform pos: 21.5,-303.5 parent: 2 - - uid: 9696 + - uid: 11847 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-306.5 parent: 2 - - uid: 9697 + - uid: 11848 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-308.5 parent: 2 - - uid: 9708 + - uid: 11849 components: - type: Transform pos: 24.5,-297.5 parent: 2 - - uid: 9709 + - uid: 11850 components: - type: Transform pos: 20.5,-297.5 parent: 2 - - uid: 9713 + - uid: 11851 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 9714 + - uid: 11852 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-300.5 parent: 2 - - uid: 9734 + - uid: 11853 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-300.5 parent: 2 - - uid: 9988 + - uid: 11854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-311.5 parent: 2 - - uid: 9989 + - uid: 11855 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-315.5 parent: 2 - - uid: 9990 + - uid: 11856 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - - uid: 9991 + - uid: 11857 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-315.5 parent: 2 - - uid: 9994 + - uid: 11858 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-311.5 parent: 2 - - uid: 9995 + - uid: 11859 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-303.5 parent: 2 - - uid: 10030 + - uid: 11860 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 10047 + - uid: 11861 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-308.5 parent: 2 - - uid: 10055 + - uid: 11862 components: - type: Transform pos: 11.5,-306.5 parent: 2 - - uid: 10056 + - uid: 11863 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-308.5 parent: 2 - - uid: 10081 + - uid: 11864 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-120.5 parent: 2 - - uid: 10094 + - uid: 11865 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-303.5 parent: 2 - - uid: 10095 + - uid: 11866 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-303.5 parent: 2 - - uid: 10109 + - uid: 11867 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 10110 + - uid: 11868 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-305.5 parent: 2 - - uid: 10111 + - uid: 11869 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-305.5 parent: 2 - - uid: 10137 + - uid: 11870 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-319.5 parent: 2 - - uid: 10142 + - uid: 11871 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-318.5 parent: 2 - - uid: 10144 + - uid: 11872 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10146 + - uid: 11873 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-311.5 parent: 2 - - uid: 10147 + - uid: 11874 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-311.5 parent: 2 - - uid: 10766 + - uid: 11875 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 - - uid: 11080 + - uid: 11876 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-332.5 parent: 2 - - uid: 11349 + - uid: 11877 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-346.5 parent: 2 - - uid: 12226 + - uid: 11878 components: - type: Transform rot: -1.5707963267948966 rad @@ -78753,120 +78205,120 @@ entities: parent: 2 - proto: PoweredlightOrange entities: - - uid: 1764 + - uid: 11879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-64.5 parent: 2 - - uid: 1803 + - uid: 11880 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 - - uid: 2290 + - uid: 11881 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 2327 + - uid: 11882 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 2421 + - uid: 11883 components: - type: Transform pos: -5.5,-138.5 parent: 2 - - uid: 4042 + - uid: 11884 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-252.5 parent: 2 - - uid: 4751 + - uid: 11885 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-263.5 parent: 2 - - uid: 5024 + - uid: 11886 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-45.5 parent: 2 - - uid: 5363 + - uid: 11887 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 5676 + - uid: 11888 components: - type: Transform pos: 3.5,-141.5 parent: 2 - - uid: 5781 + - uid: 11889 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 5805 + - uid: 11890 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-152.5 parent: 2 - - uid: 6390 + - uid: 11891 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-220.5 parent: 2 - - uid: 6392 + - uid: 11892 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-220.5 parent: 2 - - uid: 6394 + - uid: 11893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - - uid: 6397 + - uid: 11894 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-229.5 parent: 2 - - uid: 6961 + - uid: 11895 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 10136 + - uid: 11896 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10162 + - uid: 11897 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-285.5 parent: 2 - - uid: 10914 + - uid: 11898 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-331.5 parent: 2 - - uid: 11089 + - uid: 11899 components: - type: Transform rot: 1.5707963267948966 rad @@ -78874,37 +78326,37 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 1687 + - uid: 11900 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-54.5 parent: 2 - - uid: 2292 + - uid: 11901 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-125.5 parent: 2 - - uid: 10089 + - uid: 11902 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-315.5 parent: 2 - - uid: 10145 + - uid: 11903 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-313.5 parent: 2 - - uid: 10530 + - uid: 11904 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-304.5 parent: 2 - - uid: 14893 + - uid: 11905 components: - type: Transform rot: 1.5707963267948966 rad @@ -78912,301 +78364,301 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 2067 + - uid: 11906 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 2793 + - uid: 11907 components: - type: Transform pos: 12.5,-244.5 parent: 2 - - uid: 4224 + - uid: 11908 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 4515 + - uid: 11909 components: - type: Transform pos: -8.5,-221.5 parent: 2 - - uid: 4516 + - uid: 11910 components: - type: Transform pos: -8.5,-228.5 parent: 2 - - uid: 4517 + - uid: 11911 components: - type: Transform pos: 9.5,-221.5 parent: 2 - - uid: 4518 + - uid: 11912 components: - type: Transform pos: 9.5,-228.5 parent: 2 - - uid: 9712 + - uid: 11913 components: - type: Transform pos: 29.5,-303.5 parent: 2 - - uid: 9716 + - uid: 11914 components: - type: Transform pos: 16.5,-309.5 parent: 2 - - uid: 9717 + - uid: 11915 components: - type: Transform pos: 16.5,-305.5 parent: 2 - - uid: 9719 + - uid: 11916 components: - type: Transform pos: 17.5,-314.5 parent: 2 - - uid: 9721 + - uid: 11917 components: - type: Transform pos: 17.5,-300.5 parent: 2 - - uid: 9733 + - uid: 11918 components: - type: Transform pos: 29.5,-311.5 parent: 2 - - uid: 14904 + - uid: 11919 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14905 + - uid: 11920 components: - type: Transform pos: -10.5,-136.5 parent: 2 - - uid: 14912 + - uid: 11921 components: - type: Transform pos: -6.5,-133.5 parent: 2 - - uid: 14948 + - uid: 11922 components: - type: Transform pos: -9.5,-143.5 parent: 2 - - uid: 14949 + - uid: 11923 components: - type: Transform pos: -9.5,-148.5 parent: 2 - - uid: 14992 + - uid: 11924 components: - type: Transform pos: -9.5,-155.5 parent: 2 - - uid: 15082 + - uid: 11925 components: - type: Transform pos: 8.5,-203.5 parent: 2 - - uid: 15083 + - uid: 11926 components: - type: Transform pos: 8.5,-192.5 parent: 2 - - uid: 15084 + - uid: 11927 components: - type: Transform pos: 12.5,-194.5 parent: 2 - - uid: 15085 + - uid: 11928 components: - type: Transform pos: 12.5,-201.5 parent: 2 - - uid: 16968 + - uid: 11929 components: - type: Transform pos: -10.5,-249.5 parent: 2 - - uid: 16969 + - uid: 11930 components: - type: Transform pos: -10.5,-261.5 parent: 2 - - uid: 16970 + - uid: 11931 components: - type: Transform pos: -10.5,-242.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 1766 + - uid: 11932 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-78.5 parent: 2 - - uid: 2325 + - uid: 11933 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-78.5 parent: 2 - - uid: 2352 + - uid: 11934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-132.5 parent: 2 - - uid: 2420 + - uid: 11935 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-132.5 parent: 2 - - uid: 5428 + - uid: 11936 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 - - uid: 5429 + - uid: 11937 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-51.5 parent: 2 - - uid: 5749 + - uid: 11938 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-159.5 parent: 2 - - uid: 5750 + - uid: 11939 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-159.5 parent: 2 - - uid: 5761 + - uid: 11940 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-105.5 parent: 2 - - uid: 5768 + - uid: 11941 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-105.5 parent: 2 - - uid: 5991 + - uid: 11942 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 2 - - uid: 6003 + - uid: 11943 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - uid: 6346 + - uid: 11944 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-240.5 parent: 2 - - uid: 6348 + - uid: 11945 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-240.5 parent: 2 - - uid: 6359 + - uid: 11946 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-214.5 parent: 2 - - uid: 6361 + - uid: 11947 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-214.5 parent: 2 - - uid: 7060 + - uid: 11948 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-186.5 parent: 2 - - uid: 7061 + - uid: 11949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-186.5 parent: 2 - - uid: 8880 + - uid: 11950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-267.5 parent: 2 - - uid: 8881 + - uid: 11951 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-267.5 parent: 2 - - uid: 9707 + - uid: 11952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-294.5 parent: 2 - - uid: 9718 + - uid: 11953 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-294.5 parent: 2 - - uid: 11065 + - uid: 11954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-326.5 parent: 2 - - uid: 11066 + - uid: 11955 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-326.5 parent: 2 - - uid: 11090 + - uid: 11956 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-353.5 parent: 2 - - uid: 11091 + - uid: 11957 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-353.5 parent: 2 - - uid: 12947 + - uid: 11958 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-380.5 parent: 2 - - uid: 12948 + - uid: 11959 components: - type: Transform rot: 3.141592653589793 rad @@ -79214,7 +78666,7 @@ entities: parent: 2 - proto: PoweredlightSodium entities: - - uid: 8525 + - uid: 11960 components: - type: Transform rot: 1.5707963267948966 rad @@ -79222,1247 +78674,1247 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 62 + - uid: 11961 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 92 + - uid: 11962 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 141 + - uid: 11963 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 210 + - uid: 11964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 2 - - uid: 356 + - uid: 11965 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-114.5 parent: 2 - - uid: 419 + - uid: 11966 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 641 + - uid: 11967 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 730 + - uid: 11968 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 - - uid: 764 + - uid: 11969 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - - uid: 821 + - uid: 11970 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 891 + - uid: 11971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 898 + - uid: 11972 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 - - uid: 1104 + - uid: 11973 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 2 - - uid: 1114 + - uid: 11974 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-62.5 parent: 2 - - uid: 1226 + - uid: 11975 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 1327 + - uid: 11976 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 - - uid: 1467 + - uid: 11977 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-37.5 parent: 2 - - uid: 1471 + - uid: 11978 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1488 + - uid: 11979 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-69.5 parent: 2 - - uid: 1489 + - uid: 11980 components: - type: Transform pos: 4.5,-56.5 parent: 2 - - uid: 1753 + - uid: 11981 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 1809 + - uid: 11982 components: - type: Transform pos: 2.5,-94.5 parent: 2 - - uid: 1810 + - uid: 11983 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-82.5 parent: 2 - - uid: 1918 + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-115.5 parent: 2 - - uid: 1920 + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-121.5 parent: 2 - - uid: 1923 + - uid: 11986 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - - uid: 2043 + - uid: 11987 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2044 + - uid: 11988 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2045 + - uid: 11989 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2050 + - uid: 11990 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 2051 + - uid: 11991 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-98.5 parent: 2 - - uid: 2052 + - uid: 11992 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-98.5 parent: 2 - - uid: 2053 + - uid: 11993 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-92.5 parent: 2 - - uid: 2054 + - uid: 11994 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-86.5 parent: 2 - - uid: 2055 + - uid: 11995 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 2072 + - uid: 11996 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 2185 + - uid: 11997 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-282.5 parent: 2 - - uid: 2218 + - uid: 11998 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 2219 + - uid: 11999 components: - type: Transform pos: 3.5,-276.5 parent: 2 - - uid: 2252 + - uid: 12000 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-32.5 parent: 2 - - uid: 2272 + - uid: 12001 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-125.5 parent: 2 - - uid: 2273 + - uid: 12002 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-125.5 parent: 2 - - uid: 2274 + - uid: 12003 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2275 + - uid: 12004 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - - uid: 2326 + - uid: 12005 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 2351 + - uid: 12006 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 2423 + - uid: 12007 components: - type: Transform pos: -5.5,-95.5 parent: 2 - - uid: 2441 + - uid: 12008 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 2592 + - uid: 12009 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-136.5 parent: 2 - - uid: 2658 + - uid: 12010 components: - type: Transform pos: 2.5,-148.5 parent: 2 - - uid: 2659 + - uid: 12011 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 2759 + - uid: 12012 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 2821 + - uid: 12013 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 2822 + - uid: 12014 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-152.5 parent: 2 - - uid: 2823 + - uid: 12015 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-151.5 parent: 2 - - uid: 2841 + - uid: 12016 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-142.5 parent: 2 - - uid: 2843 + - uid: 12017 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 2888 + - uid: 12018 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-152.5 parent: 2 - - uid: 3016 + - uid: 12019 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 3074 + - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 3252 + - uid: 12021 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-180.5 parent: 2 - - uid: 3253 + - uid: 12022 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 3332 + - uid: 12023 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 3395 + - uid: 12024 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 3686 + - uid: 12025 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-285.5 parent: 2 - - uid: 3711 + - uid: 12026 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 3713 + - uid: 12027 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-161.5 parent: 2 - - uid: 3837 + - uid: 12028 components: - type: Transform pos: 1.5,-344.5 parent: 2 - - uid: 3923 + - uid: 12029 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 3978 + - uid: 12030 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 3988 + - uid: 12031 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-201.5 parent: 2 - - uid: 4144 + - uid: 12032 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - - uid: 4145 + - uid: 12033 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 4236 + - uid: 12034 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 4241 + - uid: 12035 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 4259 + - uid: 12036 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 4263 + - uid: 12037 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-73.5 parent: 2 - - uid: 4295 + - uid: 12038 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-221.5 parent: 2 - - uid: 4352 + - uid: 12039 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-228.5 parent: 2 - - uid: 4527 + - uid: 12040 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 4684 + - uid: 12041 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 4687 + - uid: 12042 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 4797 + - uid: 12043 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-253.5 parent: 2 - - uid: 5028 + - uid: 12044 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5029 + - uid: 12045 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 5071 + - uid: 12046 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 5172 + - uid: 12047 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 5274 + - uid: 12048 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 5323 + - uid: 12049 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 5324 + - uid: 12050 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 5340 + - uid: 12051 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-360.5 parent: 2 - - uid: 5351 + - uid: 12052 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-360.5 parent: 2 - - uid: 5355 + - uid: 12053 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-336.5 parent: 2 - - uid: 5383 + - uid: 12054 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 5416 + - uid: 12055 components: - type: Transform pos: -0.5,-108.5 parent: 2 - - uid: 5884 + - uid: 12056 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 5963 + - uid: 12057 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5965 + - uid: 12058 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-44.5 parent: 2 - - uid: 5970 + - uid: 12059 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 6618 + - uid: 12060 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-29.5 parent: 2 - - uid: 7483 + - uid: 12061 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 8018 + - uid: 12062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-287.5 parent: 2 - - uid: 8357 + - uid: 12063 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-245.5 parent: 2 - - uid: 8372 + - uid: 12064 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-260.5 parent: 2 - - uid: 8442 + - uid: 12065 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - - uid: 8711 + - uid: 12066 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-275.5 parent: 2 - - uid: 8728 + - uid: 12067 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-288.5 parent: 2 - - uid: 8741 + - uid: 12068 components: - type: Transform pos: -1.5,-270.5 parent: 2 - - uid: 8767 + - uid: 12069 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - - uid: 8768 + - uid: 12070 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-276.5 parent: 2 - - uid: 8879 + - uid: 12071 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 8885 + - uid: 12072 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 8888 + - uid: 12073 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 8955 + - uid: 12074 components: - type: Transform pos: -0.5,-273.5 parent: 2 - - uid: 8961 + - uid: 12075 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 9042 + - uid: 12076 components: - type: Transform pos: 7.5,-276.5 parent: 2 - - uid: 9044 + - uid: 12077 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-282.5 parent: 2 - - uid: 9068 + - uid: 12078 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-274.5 parent: 2 - - uid: 9070 + - uid: 12079 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-274.5 parent: 2 - - uid: 9071 + - uid: 12080 components: - type: Transform pos: 6.5,-270.5 parent: 2 - - uid: 9322 + - uid: 12081 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-281.5 parent: 2 - - uid: 9336 + - uid: 12082 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-277.5 parent: 2 - - uid: 9337 + - uid: 12083 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 9430 + - uid: 12084 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 - - uid: 9715 + - uid: 12085 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9932 + - uid: 12086 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10148 + - uid: 12087 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-313.5 parent: 2 - - uid: 10150 + - uid: 12088 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-319.5 parent: 2 - - uid: 10152 + - uid: 12089 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10529 + - uid: 12090 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-298.5 parent: 2 - - uid: 10740 + - uid: 12091 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - - uid: 10913 + - uid: 12092 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - - uid: 11063 + - uid: 12093 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 11120 + - uid: 12094 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-358.5 parent: 2 - - uid: 11188 + - uid: 12095 components: - type: Transform pos: 1.5,-362.5 parent: 2 - - uid: 11498 + - uid: 12096 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11713 + - uid: 12097 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 11714 + - uid: 12098 components: - type: Transform pos: 2.5,-356.5 parent: 2 - - uid: 11717 + - uid: 12099 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-362.5 parent: 2 - - uid: 11718 + - uid: 12100 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-365.5 parent: 2 - - uid: 11719 + - uid: 12101 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-368.5 parent: 2 - - uid: 11720 + - uid: 12102 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-368.5 parent: 2 - - uid: 11722 + - uid: 12103 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-365.5 parent: 2 - - uid: 11723 + - uid: 12104 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-367.5 parent: 2 - - uid: 11724 + - uid: 12105 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-367.5 parent: 2 - - uid: 11727 + - uid: 12106 components: - type: Transform pos: -2.5,-370.5 parent: 2 - - uid: 11728 + - uid: 12107 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-362.5 parent: 2 - - uid: 11730 + - uid: 12108 components: - type: Transform pos: 3.5,-370.5 parent: 2 - - uid: 11731 + - uid: 12109 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11733 + - uid: 12110 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11734 + - uid: 12111 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11735 + - uid: 12112 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11736 + - uid: 12113 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11740 + - uid: 12114 components: - type: Transform pos: 4.5,-355.5 parent: 2 - - uid: 11741 + - uid: 12115 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-358.5 parent: 2 - - uid: 11742 + - uid: 12116 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - - uid: 11746 + - uid: 12117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-374.5 parent: 2 - - uid: 11747 + - uid: 12118 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-374.5 parent: 2 - - uid: 11748 + - uid: 12119 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-374.5 parent: 2 - - uid: 11749 + - uid: 12120 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-374.5 parent: 2 - - uid: 11750 + - uid: 12121 components: - type: Transform pos: 6.5,-369.5 parent: 2 - - uid: 11751 + - uid: 12122 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 12138 + - uid: 12123 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 12139 + - uid: 12124 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 12343 + - uid: 12125 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-327.5 parent: 2 - - uid: 12371 + - uid: 12126 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 12472 + - uid: 12127 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - - uid: 12855 + - uid: 12128 components: - type: Transform pos: -0.5,-362.5 parent: 2 - - uid: 12915 + - uid: 12129 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 12919 + - uid: 12130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-348.5 parent: 2 - - uid: 14321 + - uid: 12131 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-63.5 parent: 2 - - uid: 14351 + - uid: 12132 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 14353 + - uid: 12133 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-63.5 parent: 2 - - uid: 14359 + - uid: 12134 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14419 + - uid: 12135 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-80.5 parent: 2 - - uid: 14463 + - uid: 12136 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 14465 + - uid: 12137 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 - - uid: 14466 + - uid: 12138 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 - - uid: 14467 + - uid: 12139 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-75.5 parent: 2 - - uid: 14468 + - uid: 12140 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-71.5 parent: 2 - - uid: 14469 + - uid: 12141 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 - - uid: 14470 + - uid: 12142 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-67.5 parent: 2 - - uid: 14471 + - uid: 12143 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-71.5 parent: 2 - - uid: 14472 + - uid: 12144 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-75.5 parent: 2 - - uid: 14563 + - uid: 12145 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14600 + - uid: 12146 components: - type: Transform pos: 5.5,-242.5 parent: 2 - - uid: 14606 + - uid: 12147 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-332.5 parent: 2 - - uid: 14622 + - uid: 12148 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 - - uid: 15293 + - uid: 12149 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-336.5 parent: 2 - - uid: 15789 + - uid: 12150 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-342.5 parent: 2 - - uid: 16660 + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-336.5 parent: 2 - - uid: 16698 + - uid: 12152 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-342.5 parent: 2 - - uid: 16699 + - uid: 12153 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 16710 + - uid: 12154 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-336.5 parent: 2 - - uid: 16712 + - uid: 12155 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - - uid: 16869 + - uid: 12156 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-251.5 parent: 2 - - uid: 16876 + - uid: 12157 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-245.5 parent: 2 - - uid: 16906 + - uid: 12158 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-168.5 parent: 2 - - uid: 16913 + - uid: 12159 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-168.5 parent: 2 - - uid: 16914 + - uid: 12160 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16915 + - uid: 12161 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16916 + - uid: 12162 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-166.5 parent: 2 - - uid: 16917 + - uid: 12163 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-163.5 parent: 2 - - uid: 16944 + - uid: 12164 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-166.5 parent: 2 - - uid: 16946 + - uid: 12165 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-177.5 parent: 2 - - uid: 16958 + - uid: 12166 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16962 + - uid: 12167 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-263.5 parent: 2 - - uid: 16963 + - uid: 12168 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-265.5 parent: 2 - - uid: 17004 + - uid: 12169 components: - type: Transform pos: -6.5,-248.5 parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 1776 + - uid: 12170 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 2732 + - uid: 12171 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-148.5 parent: 2 - - uid: 3947 + - uid: 12172 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-198.5 parent: 2 - - uid: 3948 + - uid: 12173 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-194.5 parent: 2 - - uid: 3981 + - uid: 12174 components: - type: Transform pos: -4.5,-204.5 parent: 2 - - uid: 3998 + - uid: 12175 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-202.5 parent: 2 - - uid: 7380 + - uid: 12176 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-154.5 parent: 2 - - uid: 7381 + - uid: 12177 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7382 + - uid: 12178 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7383 + - uid: 12179 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7384 + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad @@ -80470,689 +79922,689 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 10027 + - uid: 12181 components: - type: Transform pos: -4.5,-299.5 parent: 2 - proto: PumpkinLantern entities: - - uid: 1703 + - uid: 12182 components: - type: Transform pos: 6.365387,-27.206318 parent: 2 - proto: Rack entities: - - uid: 105 + - uid: 12183 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 - - uid: 120 + - uid: 12184 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 422 + - uid: 12185 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - - uid: 955 + - uid: 12186 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - - uid: 1111 + - uid: 12187 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 1112 + - uid: 12188 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 1113 + - uid: 12189 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1116 + - uid: 12190 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 1131 + - uid: 12191 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1132 + - uid: 12192 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 1167 + - uid: 12193 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 1583 + - uid: 12194 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 1778 + - uid: 12195 components: - type: Transform pos: 4.5,-242.5 parent: 2 - - uid: 2381 + - uid: 12196 components: - type: Transform pos: 16.5,-242.5 parent: 2 - - uid: 2396 + - uid: 12197 components: - type: Transform pos: 20.5,-253.5 parent: 2 - - uid: 2436 + - uid: 12198 components: - type: Transform pos: 6.5,-108.5 parent: 2 - - uid: 2705 + - uid: 12199 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 3571 + - uid: 12200 components: - type: Transform pos: -7.5,-177.5 parent: 2 - - uid: 3573 + - uid: 12201 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 3971 + - uid: 12202 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-207.5 parent: 2 - - uid: 7791 + - uid: 12203 components: - type: Transform pos: 6.5,-242.5 parent: 2 - - uid: 8554 + - uid: 12204 components: - type: Transform pos: -5.5,-288.5 parent: 2 - - uid: 8651 + - uid: 12205 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 9516 + - uid: 12206 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 - - uid: 10123 + - uid: 12207 components: - type: Transform pos: 7.5,-115.5 parent: 2 - - uid: 12210 + - uid: 12208 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 12411 + - uid: 12209 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 12423 + - uid: 12210 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-304.5 parent: 2 - - uid: 14627 + - uid: 12211 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14637 + - uid: 12212 components: - type: Transform pos: -2.5,-259.5 parent: 2 - - uid: 14643 + - uid: 12213 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 15173 + - uid: 12214 components: - type: Transform pos: 9.5,-119.5 parent: 2 - - uid: 15174 + - uid: 12215 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 15301 + - uid: 12216 components: - type: Transform pos: 3.5,-163.5 parent: 2 - - uid: 16885 + - uid: 12217 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: RadiationCollectorNoTank entities: - - uid: 3192 + - uid: 12218 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 6911 + - uid: 12219 components: - type: Transform pos: 19.5,-241.5 parent: 2 - - uid: 7441 + - uid: 12220 components: - type: Transform pos: 18.5,-240.5 parent: 2 - proto: RagItem entities: - - uid: 2128 + - uid: 628 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 935 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12221 components: - type: Transform pos: -2.1022174,-60.36517 parent: 2 - - uid: 7427 + - uid: 12222 components: - type: Transform pos: 14.739458,-59.475845 parent: 2 - - uid: 7454 + - uid: 12223 components: - type: Transform pos: 16.746363,-59.466587 parent: 2 - - uid: 14480 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14766 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Railing entities: - - uid: 13 + - uid: 12224 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 21 + - uid: 12225 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 56 + - uid: 12226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 2 - - uid: 57 + - uid: 12227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 88 + - uid: 12228 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 - - uid: 91 + - uid: 12229 components: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 786 + - uid: 12230 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 787 + - uid: 12231 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 788 + - uid: 12232 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 796 + - uid: 12233 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-42.5 parent: 2 - - uid: 797 + - uid: 12234 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-42.5 parent: 2 - - uid: 798 + - uid: 12235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-42.5 parent: 2 - - uid: 800 + - uid: 12236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-41.5 parent: 2 - - uid: 801 + - uid: 12237 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - - uid: 802 + - uid: 12238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-39.5 parent: 2 - - uid: 824 + - uid: 12239 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 826 + - uid: 12240 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-42.5 parent: 2 - - uid: 828 + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 829 + - uid: 12242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 830 + - uid: 12243 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 2289 + - uid: 12244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-280.5 parent: 2 - - uid: 2634 + - uid: 12245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-142.5 parent: 2 - - uid: 2635 + - uid: 12246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-142.5 parent: 2 - - uid: 2758 + - uid: 12247 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 2849 + - uid: 12248 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 3107 + - uid: 12249 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-48.5 parent: 2 - - uid: 3109 + - uid: 12250 components: - type: Transform pos: -1.5,-50.5 parent: 2 - - uid: 3527 + - uid: 12251 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 - - uid: 3533 + - uid: 12252 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-21.5 parent: 2 - - uid: 6712 + - uid: 12253 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-163.5 parent: 2 - - uid: 8036 + - uid: 12254 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-75.5 parent: 2 - - uid: 8467 + - uid: 12255 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 8913 + - uid: 12256 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-75.5 parent: 2 - - uid: 9340 + - uid: 12257 components: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 9341 + - uid: 12258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-48.5 parent: 2 - - uid: 9344 + - uid: 12259 components: - type: Transform pos: -1.5,-23.5 parent: 2 - - uid: 9687 + - uid: 12260 components: - type: Transform pos: 2.5,-104.5 parent: 2 - - uid: 9689 + - uid: 12261 components: - type: Transform pos: -1.5,-104.5 parent: 2 - - uid: 9710 + - uid: 12262 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-102.5 parent: 2 - - uid: 9711 + - uid: 12263 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-102.5 parent: 2 - - uid: 9996 + - uid: 12264 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-300.5 parent: 2 - - uid: 10000 + - uid: 12265 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-299.5 parent: 2 - - uid: 10041 + - uid: 12266 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-311.5 parent: 2 - - uid: 10043 + - uid: 12267 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-312.5 parent: 2 - - uid: 10160 + - uid: 12268 components: - type: Transform pos: 2.5,-131.5 parent: 2 - - uid: 10573 + - uid: 12269 components: - type: Transform pos: -1.5,-131.5 parent: 2 - - uid: 10577 + - uid: 12270 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-129.5 parent: 2 - - uid: 10578 + - uid: 12271 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-129.5 parent: 2 - - uid: 10602 + - uid: 12272 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-156.5 parent: 2 - - uid: 10603 + - uid: 12273 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-156.5 parent: 2 - - uid: 10604 + - uid: 12274 components: - type: Transform pos: 2.5,-158.5 parent: 2 - - uid: 10605 + - uid: 12275 components: - type: Transform pos: -1.5,-158.5 parent: 2 - - uid: 10832 + - uid: 12276 components: - type: Transform pos: 2.5,-185.5 parent: 2 - - uid: 10842 + - uid: 12277 components: - type: Transform pos: -1.5,-185.5 parent: 2 - - uid: 10843 + - uid: 12278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-183.5 parent: 2 - - uid: 10867 + - uid: 12279 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-183.5 parent: 2 - - uid: 11559 + - uid: 12280 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-210.5 parent: 2 - - uid: 11589 + - uid: 12281 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-210.5 parent: 2 - - uid: 11637 + - uid: 12282 components: - type: Transform pos: 2.5,-212.5 parent: 2 - - uid: 11646 + - uid: 12283 components: - type: Transform pos: -1.5,-212.5 parent: 2 - - uid: 11827 + - uid: 12284 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11828 + - uid: 12285 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 11830 + - uid: 12286 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11836 + - uid: 12287 components: - type: Transform pos: 2.5,-239.5 parent: 2 - - uid: 11837 + - uid: 12288 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-237.5 parent: 2 - - uid: 11838 + - uid: 12289 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-237.5 parent: 2 - - uid: 11839 + - uid: 12290 components: - type: Transform pos: -1.5,-239.5 parent: 2 - - uid: 12074 + - uid: 12291 components: - type: Transform pos: 2.5,-266.5 parent: 2 - - uid: 12075 + - uid: 12292 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-264.5 parent: 2 - - uid: 12093 + - uid: 12293 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-264.5 parent: 2 - - uid: 12104 + - uid: 12294 components: - type: Transform pos: -1.5,-266.5 parent: 2 - - uid: 13198 + - uid: 12295 components: - type: Transform pos: 2.5,-293.5 parent: 2 - - uid: 13208 + - uid: 12296 components: - type: Transform pos: -1.5,-293.5 parent: 2 - - uid: 13260 + - uid: 12297 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-291.5 parent: 2 - - uid: 13261 + - uid: 12298 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-291.5 parent: 2 - - uid: 14294 + - uid: 12299 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-323.5 parent: 2 - - uid: 14295 + - uid: 12300 components: - type: Transform pos: 2.5,-325.5 parent: 2 - - uid: 14296 + - uid: 12301 components: - type: Transform pos: -1.5,-325.5 parent: 2 - - uid: 14303 + - uid: 12302 components: - type: Transform rot: 3.141592653589793 rad @@ -81160,999 +80612,999 @@ entities: parent: 2 - proto: RailingCornerSmall entities: - - uid: 11 + - uid: 12303 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 48 + - uid: 12304 components: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 55 + - uid: 12305 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 100 + - uid: 12306 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 101 + - uid: 12307 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 201 + - uid: 12308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-47.5 parent: 2 - - uid: 272 + - uid: 12309 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 273 + - uid: 12310 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 - - uid: 275 + - uid: 12311 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 681 + - uid: 12312 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 - - uid: 682 + - uid: 12313 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 - - uid: 683 + - uid: 12314 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-42.5 parent: 2 - - uid: 696 + - uid: 12315 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 698 + - uid: 12316 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 700 + - uid: 12317 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 - - uid: 701 + - uid: 12318 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-28.5 parent: 2 - - uid: 793 + - uid: 12319 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-38.5 parent: 2 - - uid: 804 + - uid: 12320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-38.5 parent: 2 - - uid: 806 + - uid: 12321 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - - uid: 832 + - uid: 12322 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 2181 + - uid: 12323 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-278.5 parent: 2 - - uid: 2282 + - uid: 12324 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 2627 + - uid: 12325 components: - type: Transform pos: 3.5,-142.5 parent: 2 - - uid: 2637 + - uid: 12326 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-142.5 parent: 2 - - uid: 2647 + - uid: 12327 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-141.5 parent: 2 - - uid: 2648 + - uid: 12328 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-141.5 parent: 2 - - uid: 2649 + - uid: 12329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-141.5 parent: 2 - - uid: 2650 + - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-141.5 parent: 2 - - uid: 2893 + - uid: 12331 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 2894 + - uid: 12332 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-152.5 parent: 2 - - uid: 2895 + - uid: 12333 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-150.5 parent: 2 - - uid: 2896 + - uid: 12334 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 3064 + - uid: 12335 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 - - uid: 3091 + - uid: 12336 components: - type: Transform pos: 3.5,-51.5 parent: 2 - - uid: 3092 + - uid: 12337 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 - - uid: 3193 + - uid: 12338 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-50.5 parent: 2 - - uid: 3194 + - uid: 12339 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 3353 + - uid: 12340 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 - - uid: 3524 + - uid: 12341 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 3525 + - uid: 12342 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-78.5 parent: 2 - - uid: 3526 + - uid: 12343 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 3534 + - uid: 12344 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 3543 + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-23.5 parent: 2 - - uid: 4353 + - uid: 12346 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 7834 + - uid: 12347 components: - type: Transform pos: 3.5,-48.5 parent: 2 - - uid: 7871 + - uid: 12348 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-20.5 parent: 2 - - uid: 7897 + - uid: 12349 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 8065 + - uid: 12350 components: - type: Transform pos: 3.5,-75.5 parent: 2 - - uid: 8107 + - uid: 12351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-77.5 parent: 2 - - uid: 8108 + - uid: 12352 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 2 - - uid: 8134 + - uid: 12353 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 8481 + - uid: 12354 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-163.5 parent: 2 - - uid: 8687 + - uid: 12355 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-166.5 parent: 2 - - uid: 8690 + - uid: 12356 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 8812 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 8825 + - uid: 12358 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-271.5 parent: 2 - - uid: 8826 + - uid: 12359 components: - type: Transform pos: -7.5,-274.5 parent: 2 - - uid: 8866 + - uid: 12360 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-51.5 parent: 2 - - uid: 8912 + - uid: 12361 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-50.5 parent: 2 - - uid: 8914 + - uid: 12362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-77.5 parent: 2 - - uid: 9095 + - uid: 12363 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 - - uid: 9338 + - uid: 12364 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 9339 + - uid: 12365 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 9342 + - uid: 12366 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 9345 + - uid: 12367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 9790 + - uid: 12368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-104.5 parent: 2 - - uid: 9813 + - uid: 12369 components: - type: Transform pos: 3.5,-105.5 parent: 2 - - uid: 9815 + - uid: 12370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 9907 + - uid: 12371 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 9913 + - uid: 12372 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-105.5 parent: 2 - - uid: 9940 + - uid: 12373 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-104.5 parent: 2 - - uid: 9943 + - uid: 12374 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-101.5 parent: 2 - - uid: 9944 + - uid: 12375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 9945 + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-102.5 parent: 2 - - uid: 9946 + - uid: 12377 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 10002 + - uid: 12378 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-301.5 parent: 2 - - uid: 10044 + - uid: 12379 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-101.5 parent: 2 - - uid: 10133 + - uid: 12380 components: - type: Transform pos: 3.5,-102.5 parent: 2 - - uid: 10579 + - uid: 12381 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-128.5 parent: 2 - - uid: 10580 + - uid: 12382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 10581 + - uid: 12383 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-129.5 parent: 2 - - uid: 10586 + - uid: 12384 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 10594 + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-128.5 parent: 2 - - uid: 10595 + - uid: 12386 components: - type: Transform pos: 3.5,-129.5 parent: 2 - - uid: 10596 + - uid: 12387 components: - type: Transform pos: 3.5,-132.5 parent: 2 - - uid: 10597 + - uid: 12388 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 10598 + - uid: 12389 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-131.5 parent: 2 - - uid: 10599 + - uid: 12390 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 10600 + - uid: 12391 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-132.5 parent: 2 - - uid: 10601 + - uid: 12392 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-131.5 parent: 2 - - uid: 10606 + - uid: 12393 components: - type: Transform pos: 3.5,-159.5 parent: 2 - - uid: 10607 + - uid: 12394 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 10608 + - uid: 12395 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-158.5 parent: 2 - - uid: 10609 + - uid: 12396 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-155.5 parent: 2 - - uid: 10726 + - uid: 12397 components: - type: Transform pos: 3.5,-156.5 parent: 2 - - uid: 10741 + - uid: 12398 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 10749 + - uid: 12399 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-155.5 parent: 2 - - uid: 10753 + - uid: 12400 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 10761 + - uid: 12401 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-156.5 parent: 2 - - uid: 10819 + - uid: 12402 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-159.5 parent: 2 - - uid: 10820 + - uid: 12403 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-158.5 parent: 2 - - uid: 10831 + - uid: 12404 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 10875 + - uid: 12405 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-185.5 parent: 2 - - uid: 10969 + - uid: 12406 components: - type: Transform pos: 3.5,-186.5 parent: 2 - - uid: 10970 + - uid: 12407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 11081 + - uid: 12408 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-186.5 parent: 2 - - uid: 11082 + - uid: 12409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-185.5 parent: 2 - - uid: 11092 + - uid: 12410 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-182.5 parent: 2 - - uid: 11346 + - uid: 12411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 11350 + - uid: 12412 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-182.5 parent: 2 - - uid: 11409 + - uid: 12413 components: - type: Transform pos: 3.5,-183.5 parent: 2 - - uid: 11475 + - uid: 12414 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 11527 + - uid: 12415 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-183.5 parent: 2 - - uid: 11554 + - uid: 12416 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 11649 + - uid: 12417 components: - type: Transform pos: 3.5,-213.5 parent: 2 - - uid: 11653 + - uid: 12418 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 11670 + - uid: 12419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-212.5 parent: 2 - - uid: 11671 + - uid: 12420 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 11675 + - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-213.5 parent: 2 - - uid: 11676 + - uid: 12422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-212.5 parent: 2 - - uid: 11705 + - uid: 12423 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-209.5 parent: 2 - - uid: 11831 + - uid: 12424 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 11832 + - uid: 12425 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-210.5 parent: 2 - - uid: 11833 + - uid: 12426 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 11834 + - uid: 12427 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-209.5 parent: 2 - - uid: 11835 + - uid: 12428 components: - type: Transform pos: 3.5,-210.5 parent: 2 - - uid: 11899 + - uid: 12429 components: - type: Transform pos: 3.5,-240.5 parent: 2 - - uid: 11926 + - uid: 12430 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 11936 + - uid: 12431 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-239.5 parent: 2 - - uid: 11955 + - uid: 12432 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-236.5 parent: 2 - - uid: 11967 + - uid: 12433 components: - type: Transform pos: 3.5,-237.5 parent: 2 - - uid: 11990 + - uid: 12434 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 12007 + - uid: 12435 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-236.5 parent: 2 - - uid: 12012 + - uid: 12436 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 12013 + - uid: 12437 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-237.5 parent: 2 - - uid: 12020 + - uid: 12438 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-240.5 parent: 2 - - uid: 12023 + - uid: 12439 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-239.5 parent: 2 - - uid: 12073 + - uid: 12440 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 12152 + - uid: 12441 components: - type: Transform pos: 3.5,-267.5 parent: 2 - - uid: 12195 + - uid: 12442 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 12200 + - uid: 12443 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-266.5 parent: 2 - - uid: 12214 + - uid: 12444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-263.5 parent: 2 - - uid: 12220 + - uid: 12445 components: - type: Transform pos: 3.5,-264.5 parent: 2 - - uid: 12229 + - uid: 12446 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 12230 + - uid: 12447 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-263.5 parent: 2 - - uid: 12232 + - uid: 12448 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 12339 + - uid: 12449 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-264.5 parent: 2 - - uid: 12578 + - uid: 12450 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-267.5 parent: 2 - - uid: 12633 + - uid: 12451 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-266.5 parent: 2 - - uid: 13021 + - uid: 12452 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 13262 + - uid: 12453 components: - type: Transform pos: 3.5,-294.5 parent: 2 - - uid: 13263 + - uid: 12454 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 13269 + - uid: 12455 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-293.5 parent: 2 - - uid: 13299 + - uid: 12456 components: - type: Transform pos: 3.5,-291.5 parent: 2 - - uid: 13445 + - uid: 12457 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 13449 + - uid: 12458 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-290.5 parent: 2 - - uid: 13995 + - uid: 12459 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 14003 + - uid: 12460 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-294.5 parent: 2 - - uid: 14024 + - uid: 12461 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-293.5 parent: 2 - - uid: 14049 + - uid: 12462 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-290.5 parent: 2 - - uid: 14292 + - uid: 12463 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 14293 + - uid: 12464 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-291.5 parent: 2 - - uid: 14307 + - uid: 12465 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-325.5 parent: 2 - - uid: 14578 + - uid: 12466 components: - type: Transform pos: 3.5,-326.5 parent: 2 - - uid: 14609 + - uid: 12467 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 14613 + - uid: 12468 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-323.5 parent: 2 - - uid: 14614 + - uid: 12469 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-322.5 parent: 2 - - uid: 14619 + - uid: 12470 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 14620 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-322.5 parent: 2 - - uid: 14621 + - uid: 12472 components: - type: Transform pos: 3.5,-323.5 parent: 2 - - uid: 14625 + - uid: 12473 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 14638 + - uid: 12474 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-325.5 parent: 2 - - uid: 14682 + - uid: 12475 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 14683 + - uid: 12476 components: - type: Transform rot: -1.5707963267948966 rad @@ -82160,19 +81612,19 @@ entities: parent: 2 - proto: RandomArcade entities: - - uid: 9469 + - uid: 12477 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-308.5 parent: 2 - - uid: 10676 + - uid: 12478 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-373.5 parent: 2 - - uid: 10874 + - uid: 12479 components: - type: Transform rot: 3.141592653589793 rad @@ -82180,163 +81632,163 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 9997 + - uid: 12480 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: RandomArtifactSpawner20 entities: - - uid: 13304 + - uid: 12481 components: - type: Transform pos: -9.5,-311.5 parent: 2 - proto: RandomBoard entities: - - uid: 2364 + - uid: 12482 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 2382 + - uid: 12483 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 2391 + - uid: 12484 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 3747 + - uid: 12485 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 6908 + - uid: 12486 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 7191 + - uid: 12487 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 729 + - uid: 12488 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 1272 + - uid: 12489 components: - type: Transform pos: -2.5,-63.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 1276 + - uid: 12490 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 1277 + - uid: 12491 components: - type: Transform pos: -2.5,-62.5 parent: 2 - - uid: 1413 + - uid: 12492 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 1416 + - uid: 12493 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 3206 + - uid: 12494 components: - type: Transform pos: -3.5,-58.5 parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 763 + - uid: 12495 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 2073 + - uid: 12496 components: - type: Transform pos: -7.5,-115.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 762 + - uid: 12497 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 2147 + - uid: 12498 components: - type: Transform pos: -7.5,-118.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 1671 + - uid: 12499 components: - type: Transform pos: 3.5,-89.5 parent: 2 - - uid: 1748 + - uid: 12500 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 2036 + - uid: 12501 components: - type: Transform pos: 4.5,-99.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 2034 + - uid: 12502 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 2037 + - uid: 12503 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2038 + - uid: 12504 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2311 + - uid: 12505 components: - type: Transform pos: 3.5,-87.5 parent: 2 - - uid: 2312 + - uid: 12506 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 4196 + - uid: 12507 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 4519 + - uid: 12508 components: - type: Transform rot: -1.5707963267948966 rad @@ -82344,55 +81796,55 @@ entities: parent: 2 - proto: RandomInstruments entities: - - uid: 7765 + - uid: 12509 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 13433 + - uid: 12510 components: - type: Transform pos: -2.5,-32.5 parent: 2 - proto: RandomPosterAny entities: - - uid: 12999 + - uid: 12511 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 13000 + - uid: 12512 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 13026 + - uid: 12513 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-229.5 parent: 2 - - uid: 13038 + - uid: 12514 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-149.5 parent: 2 - - uid: 13045 + - uid: 12515 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-114.5 parent: 2 - - uid: 13047 + - uid: 12516 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-120.5 parent: 2 - - uid: 13061 + - uid: 12517 components: - type: Transform rot: 3.141592653589793 rad @@ -82400,53 +81852,53 @@ entities: parent: 2 - proto: RandomPosterContraband entities: - - uid: 598 + - uid: 12518 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 10833 + - uid: 12519 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 12926 + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-374.5 parent: 2 - - uid: 12990 + - uid: 12521 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-373.5 parent: 2 - - uid: 13036 + - uid: 12522 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-180.5 parent: 2 - - uid: 13037 + - uid: 12523 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-153.5 parent: 2 - - uid: 13042 + - uid: 12524 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - - uid: 13057 + - uid: 12525 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-70.5 parent: 2 - - uid: 13069 + - uid: 12526 components: - type: Transform rot: 3.141592653589793 rad @@ -82454,140 +81906,140 @@ entities: parent: 2 - proto: RandomPosterLegit entities: - - uid: 434 + - uid: 12527 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 771 + - uid: 12528 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 772 + - uid: 12529 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-35.5 parent: 2 - - uid: 1419 + - uid: 12530 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 4240 + - uid: 12531 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 - - uid: 7214 + - uid: 12532 components: - type: Transform pos: 2.5,-346.5 parent: 2 - - uid: 7753 + - uid: 12533 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 10814 + - uid: 12534 components: - type: Transform pos: 2.5,-344.5 parent: 2 - - uid: 12993 + - uid: 12535 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-355.5 parent: 2 - - uid: 13001 + - uid: 12536 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - - uid: 13002 + - uid: 12537 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-275.5 parent: 2 - - uid: 13012 + - uid: 12538 components: - type: Transform anchored: False rot: 3.141592653589793 rad pos: 21.5,-252.5 parent: 2 - - uid: 13029 + - uid: 12539 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-204.5 parent: 2 - - uid: 13031 + - uid: 12540 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-191.5 parent: 2 - - uid: 13033 + - uid: 12541 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-164.5 parent: 2 - - uid: 13043 + - uid: 12542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13052 + - uid: 12543 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-95.5 parent: 2 - - uid: 13054 + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-83.5 parent: 2 - - uid: 13056 + - uid: 12545 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-69.5 parent: 2 - - uid: 13063 + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-43.5 parent: 2 - - uid: 13066 + - uid: 12547 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-31.5 parent: 2 - - uid: 13075 + - uid: 12548 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 13076 + - uid: 12549 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 2 - - uid: 13078 + - uid: 12550 components: - type: Transform rot: 3.141592653589793 rad @@ -82595,7 +82047,7 @@ entities: parent: 2 - proto: RandomSnacks entities: - - uid: 7788 + - uid: 12551 components: - type: Transform rot: 3.141592653589793 rad @@ -82603,42 +82055,42 @@ entities: parent: 2 - proto: RandomSoap entities: - - uid: 352 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - - uid: 7818 + - uid: 12553 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 9410 + - uid: 12554 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 12120 + - uid: 12555 components: - type: Transform pos: -4.5,-374.5 parent: 2 - proto: RandomSpawner entities: - - uid: 14655 + - uid: 12556 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-69.5 parent: 2 - - uid: 14656 + - uid: 12557 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-68.5 parent: 2 - - uid: 14657 + - uid: 12558 components: - type: Transform rot: 3.141592653589793 rad @@ -82646,1678 +82098,1675 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 559 + - uid: 12559 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 2512 + - uid: 12560 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 2580 + - uid: 12561 components: - type: Transform pos: 1.5,-136.5 parent: 2 - - uid: 7903 + - uid: 12562 components: - type: Transform pos: 12.5,-306.5 parent: 2 - - uid: 9017 + - uid: 12563 components: - type: Transform pos: -0.5,-287.5 parent: 2 - - uid: 10126 + - uid: 12564 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14734 + - uid: 12565 components: - type: Transform pos: -2.5,-191.5 parent: 2 - - uid: 14735 + - uid: 12566 components: - type: Transform pos: -6.5,-191.5 parent: 2 - - uid: 14741 + - uid: 12567 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 15034 + - uid: 12568 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 15653 + - uid: 12569 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 15654 + - uid: 12570 components: - type: Transform pos: -5.5,-280.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 752 + - uid: 12571 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 810 + - uid: 12572 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 887 + - uid: 12573 components: - type: Transform pos: -1.5,-37.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 755 + - uid: 12574 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 886 + - uid: 12575 components: - type: Transform pos: -1.5,-40.5 parent: 2 - proto: RCD entities: - - uid: 13005 + - uid: 12576 components: - type: Transform pos: 11.623424,-252.29977 parent: 2 - proto: RCDAmmo entities: - - uid: 8444 + - uid: 12577 components: - type: Transform pos: 11.413898,-252.65977 parent: 2 - - uid: 13004 + - uid: 12578 components: - type: Transform pos: 11.262441,-252.55502 parent: 2 - - uid: 13006 + - uid: 12579 components: - type: Transform pos: 11.403312,-252.39659 parent: 2 - proto: Recycler entities: - - uid: 5452 + - uid: 12580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - proto: ReinforcedPlasmaWindow entities: - - uid: 2056 + - uid: 12581 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2211 + - uid: 12582 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2478 + - uid: 12583 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 2920 + - uid: 12584 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 7580 + - uid: 12585 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 7739 + - uid: 12586 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 7909 + - uid: 12587 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 8616 + - uid: 12588 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 9386 + - uid: 12589 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9432 + - uid: 12590 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9436 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9437 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9438 + - uid: 12593 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9440 + - uid: 12594 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9441 + - uid: 12595 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9442 + - uid: 12596 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9443 + - uid: 12597 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9445 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9446 + - uid: 12599 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9447 + - uid: 12600 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9448 + - uid: 12601 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9449 + - uid: 12602 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9450 + - uid: 12603 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 11210 + - uid: 12604 components: - type: Transform pos: -7.5,-316.5 parent: 2 - - uid: 11213 + - uid: 12605 components: - type: Transform pos: -8.5,-316.5 parent: 2 - - uid: 12390 + - uid: 12606 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 12404 + - uid: 12607 components: - type: Transform pos: -7.5,-312.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 15 + - uid: 12608 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 16 + - uid: 12609 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 17 + - uid: 12610 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 18 + - uid: 12611 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 19 + - uid: 12612 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 106 + - uid: 12613 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 140 + - uid: 12614 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 143 + - uid: 12615 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 144 + - uid: 12616 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 156 + - uid: 12617 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 158 + - uid: 12618 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 226 + - uid: 12619 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 227 + - uid: 12620 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 228 + - uid: 12621 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 229 + - uid: 12622 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 230 + - uid: 12623 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 231 + - uid: 12624 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 264 + - uid: 12625 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 315 + - uid: 12626 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 322 + - uid: 12627 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 440 + - uid: 12628 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 486 + - uid: 12629 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 578 + - uid: 12630 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 579 + - uid: 12631 components: - type: Transform pos: -6.5,-372.5 parent: 2 - - uid: 589 + - uid: 12632 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 591 + - uid: 12633 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 592 + - uid: 12634 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 593 + - uid: 12635 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 890 + - uid: 12636 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 893 + - uid: 12637 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 904 + - uid: 12638 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 909 + - uid: 12639 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 936 + - uid: 12640 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 937 + - uid: 12641 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 942 + - uid: 12642 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 946 + - uid: 12643 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 948 + - uid: 12644 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 949 + - uid: 12645 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 958 + - uid: 12646 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 1016 + - uid: 12647 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 1030 + - uid: 12648 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 1031 + - uid: 12649 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 1034 + - uid: 12650 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1228 + - uid: 12651 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1440 + - uid: 12652 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 1584 + - uid: 12653 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1586 + - uid: 12654 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1588 + - uid: 12655 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1592 + - uid: 12656 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1593 + - uid: 12657 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1594 + - uid: 12658 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1595 + - uid: 12659 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1598 + - uid: 12660 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1599 + - uid: 12661 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1600 + - uid: 12662 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1601 + - uid: 12663 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1602 + - uid: 12664 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1604 + - uid: 12665 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1605 + - uid: 12666 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1606 + - uid: 12667 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1607 + - uid: 12668 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1732 + - uid: 12669 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1752 + - uid: 12670 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 1774 + - uid: 12671 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1775 + - uid: 12672 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1779 + - uid: 12673 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1807 + - uid: 12674 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 1945 + - uid: 12675 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1964 + - uid: 12676 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1965 + - uid: 12677 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1966 + - uid: 12678 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1967 + - uid: 12679 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1968 + - uid: 12680 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1969 + - uid: 12681 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1970 + - uid: 12682 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1971 + - uid: 12683 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1972 + - uid: 12684 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1974 + - uid: 12685 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 2124 + - uid: 12686 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2125 + - uid: 12687 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2126 + - uid: 12688 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2129 + - uid: 12689 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 2149 + - uid: 12690 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2150 + - uid: 12691 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2151 + - uid: 12692 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2152 + - uid: 12693 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2168 + - uid: 12694 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2568 + - uid: 12695 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2569 + - uid: 12696 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2571 + - uid: 12697 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2572 + - uid: 12698 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 2577 + - uid: 12699 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2594 + - uid: 12700 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2595 + - uid: 12701 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2597 + - uid: 12702 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2598 + - uid: 12703 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2603 + - uid: 12704 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2652 + - uid: 12705 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2655 + - uid: 12706 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 2782 + - uid: 12707 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2943 + - uid: 12708 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2944 + - uid: 12709 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2945 + - uid: 12710 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2946 + - uid: 12711 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2947 + - uid: 12712 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2949 + - uid: 12713 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2950 + - uid: 12714 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2951 + - uid: 12715 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2952 + - uid: 12716 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2953 + - uid: 12717 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3060 + - uid: 12718 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 3182 + - uid: 12719 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 3559 + - uid: 12720 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3784 + - uid: 12721 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 3788 + - uid: 12722 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 3795 + - uid: 12723 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3796 + - uid: 12724 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3797 + - uid: 12725 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3802 + - uid: 12726 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3803 + - uid: 12727 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3805 + - uid: 12728 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3806 + - uid: 12729 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3843 + - uid: 12730 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3850 + - uid: 12731 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3870 + - uid: 12732 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 4243 + - uid: 12733 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 4324 + - uid: 12734 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4325 + - uid: 12735 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4326 + - uid: 12736 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4327 + - uid: 12737 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4328 + - uid: 12738 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 4331 + - uid: 12739 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4332 + - uid: 12740 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4336 + - uid: 12741 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4337 + - uid: 12742 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4338 + - uid: 12743 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4339 + - uid: 12744 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4506 + - uid: 12745 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4634 + - uid: 12746 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 4662 + - uid: 12747 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 4739 + - uid: 12748 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4817 + - uid: 12749 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4818 + - uid: 12750 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4819 + - uid: 12751 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4897 + - uid: 12752 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-218.5 parent: 2 - - uid: 5449 + - uid: 12753 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 6794 + - uid: 12754 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 6804 + - uid: 12755 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 6805 + - uid: 12756 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 6806 + - uid: 12757 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 6876 + - uid: 12758 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6877 + - uid: 12759 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6880 + - uid: 12760 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6892 + - uid: 12761 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 6893 + - uid: 12762 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 6895 + - uid: 12763 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 7190 + - uid: 12764 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 7192 + - uid: 12765 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7419 + - uid: 12766 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 7552 + - uid: 12767 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 7606 + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-217.5 parent: 2 - - uid: 7703 + - uid: 12769 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7704 + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7705 + - uid: 12771 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7706 + - uid: 12772 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7707 + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7708 + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7709 + - uid: 12775 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7710 + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7717 + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-219.5 parent: 2 - - uid: 7773 + - uid: 12778 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7943 + - uid: 12779 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 8146 + - uid: 12780 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 8170 + - uid: 12781 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 8177 + - uid: 12782 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8232 + - uid: 12783 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 8388 + - uid: 12784 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 8395 + - uid: 12785 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 8436 + - uid: 12786 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8562 + - uid: 12787 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 8602 + - uid: 12788 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8603 + - uid: 12789 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8606 + - uid: 12790 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8607 + - uid: 12791 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8608 + - uid: 12792 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8642 + - uid: 12793 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 8940 + - uid: 12794 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 8999 + - uid: 12795 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 9461 + - uid: 12796 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9466 + - uid: 12797 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9729 + - uid: 12798 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 9730 + - uid: 12799 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 9731 + - uid: 12800 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 9747 + - uid: 12801 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-309.5 parent: 2 - - uid: 9748 + - uid: 12802 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-305.5 parent: 2 - - uid: 9755 + - uid: 12803 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 9756 + - uid: 12804 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 9757 + - uid: 12805 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 9796 + - uid: 12806 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 9797 + - uid: 12807 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 9798 + - uid: 12808 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 9799 + - uid: 12809 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 9864 + - uid: 12810 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9899 + - uid: 12811 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-309.5 parent: 2 - - uid: 9902 + - uid: 12812 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-305.5 parent: 2 - - uid: 9903 + - uid: 12813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-304.5 parent: 2 - - uid: 9935 + - uid: 12814 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 9936 + - uid: 12815 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 9937 + - uid: 12816 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 9938 + - uid: 12817 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10021 + - uid: 12818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 10031 + - uid: 12819 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 10051 + - uid: 12820 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 10632 + - uid: 12821 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 10719 + - uid: 12822 components: - type: Transform pos: 8.5,-366.5 parent: 2 - - uid: 10748 + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 10750 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 10815 + - uid: 12825 components: - type: Transform pos: 8.5,-367.5 parent: 2 - - uid: 10920 + - uid: 12826 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10923 + - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 11048 + - uid: 12828 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11049 + - uid: 12829 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11050 + - uid: 12830 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11051 + - uid: 12831 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11064 + - uid: 12832 components: - type: Transform pos: -7.5,-360.5 parent: 2 - - uid: 11104 + - uid: 12833 components: - type: Transform pos: -7.5,-361.5 parent: 2 - - uid: 11105 + - uid: 12834 components: - type: Transform pos: -7.5,-363.5 parent: 2 - - uid: 11106 + - uid: 12835 components: - type: Transform pos: -7.5,-364.5 parent: 2 - - uid: 11107 + - uid: 12836 components: - type: Transform pos: -7.5,-366.5 parent: 2 - - uid: 11108 + - uid: 12837 components: - type: Transform pos: -7.5,-367.5 parent: 2 - - uid: 11109 + - uid: 12838 components: - type: Transform pos: -6.5,-370.5 parent: 2 - - uid: 11110 + - uid: 12839 components: - type: Transform pos: -6.5,-371.5 parent: 2 - - uid: 11116 + - uid: 12840 components: - type: Transform pos: 7.5,-370.5 parent: 2 - - uid: 11117 + - uid: 12841 components: - type: Transform pos: 7.5,-371.5 parent: 2 - - uid: 11118 + - uid: 12842 components: - type: Transform pos: 7.5,-372.5 parent: 2 - - uid: 11123 + - uid: 12843 components: - type: Transform pos: 8.5,-364.5 parent: 2 - - uid: 11124 + - uid: 12844 components: - type: Transform pos: 8.5,-363.5 parent: 2 - - uid: 11256 + - uid: 12845 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11367 + - uid: 12846 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11386 + - uid: 12847 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11387 + - uid: 12848 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11388 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11389 + - uid: 12850 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11390 + - uid: 12851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11391 + - uid: 12852 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11392 + - uid: 12853 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11393 + - uid: 12854 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11402 + - uid: 12855 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 12021 + - uid: 12856 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 12027 + - uid: 12857 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 12028 + - uid: 12858 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 12083 + - uid: 12859 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12606 + - uid: 12860 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 13216 + - uid: 12861 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 13300 + - uid: 12862 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13349 + - uid: 12863 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14313 + - uid: 12864 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14314 + - uid: 12865 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14913 + - uid: 12866 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 14915 + - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 15134 + - uid: 12868 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 15135 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 15136 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 15138 + - uid: 12871 components: - type: Transform rot: -1.5707963267948966 rad @@ -84325,185 +83774,185 @@ entities: parent: 2 - proto: ReinforcedWindowDiagonal entities: - - uid: 9 + - uid: 12872 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1237 + - uid: 12873 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 1609 + - uid: 12874 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1610 + - uid: 12875 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1611 + - uid: 12876 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 2788 + - uid: 12877 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 2941 + - uid: 12878 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 4440 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4635 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 4641 + - uid: 12881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 4647 + - uid: 12882 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 4949 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 4987 + - uid: 12884 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 4993 + - uid: 12885 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 4995 + - uid: 12886 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 4996 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 4998 + - uid: 12888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 6202 + - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 6663 + - uid: 12890 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-307.5 parent: 2 - - uid: 6680 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 6682 + - uid: 12892 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 6878 + - uid: 12893 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 6894 + - uid: 12894 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7677 + - uid: 12895 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 9072 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 9743 + - uid: 12897 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 9800 + - uid: 12898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 9904 + - uid: 12899 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9954 + - uid: 12900 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10057 + - uid: 12901 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 13291 + - uid: 12902 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 13292 + - uid: 12903 components: - type: Transform rot: 1.5707963267948966 rad @@ -84511,7 +83960,7 @@ entities: parent: 2 - proto: RemoteSignaller entities: - - uid: 17036 + - uid: 12904 components: - type: Transform rot: 1.5707963267948966 rad @@ -84519,20 +83968,20 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 6662 + - uid: 12905 components: - type: Transform pos: -9.5,-299.5 parent: 2 - proto: RevolverCapGun entities: - - uid: 14632 + - uid: 12906 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.741016,-256.2104 parent: 2 - - uid: 14633 + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad @@ -84540,41 +83989,41 @@ entities: parent: 2 - proto: SadTromboneImplanter entities: - - uid: 2503 + - uid: 12908 components: - type: Transform pos: 3.4744065,-18.482784 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 7330 + - uid: 12909 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 7860 + - uid: 12910 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 8416 + - uid: 12911 components: - type: Transform pos: -2.5,-214.5 parent: 2 - - uid: 9418 + - uid: 12912 components: - type: Transform pos: -2.5,-193.5 parent: 2 - - uid: 16809 + - uid: 12913 components: - type: Transform pos: 6.5,-131.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 8874 + - uid: 12914 components: - type: Transform rot: 1.5707963267948966 rad @@ -84582,32 +84031,32 @@ entities: parent: 2 - proto: SalvageMaterialCrateSpawner entities: - - uid: 7391 + - uid: 12915 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 9048 + - uid: 12916 components: - type: Transform pos: 6.5,-279.5 parent: 2 - proto: SawElectric entities: - - uid: 3972 + - uid: 12917 components: - type: Transform pos: -2.4659972,-207.5625 parent: 2 - proto: SciFlash entities: - - uid: 12415 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.375178,-310.24973 parent: 2 - - uid: 12416 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad @@ -84615,77 +84064,77 @@ entities: parent: 2 - proto: Screen entities: - - uid: 420 + - uid: 12920 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 903 + - uid: 12921 components: - type: Transform pos: -7.5,-64.5 parent: 2 - proto: Screwdriver entities: - - uid: 9519 + - uid: 12922 components: - type: Transform pos: 22.486492,-317.5223 parent: 2 - - uid: 9613 + - uid: 12923 components: - type: Transform pos: 23.43425,-299.4721 parent: 2 - - uid: 14744 + - uid: 12924 components: - type: Transform pos: -5.5653863,-307.57385 parent: 2 - proto: SecurityTechFab entities: - - uid: 2286 + - uid: 12925 components: - type: Transform pos: 4.5,-338.5 parent: 2 - proto: SeedExtractor entities: - - uid: 754 + - uid: 12926 components: - type: Transform pos: 3.5,-374.5 parent: 2 - - uid: 2330 + - uid: 12927 components: - type: Transform pos: -8.5,-84.5 parent: 2 - proto: ShardCrystalGreen entities: - - uid: 7386 + - uid: 12928 components: - type: Transform pos: 13.519403,-147.44946 parent: 2 - - uid: 7387 + - uid: 12929 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.347023,-140.45216 parent: 2 - - uid: 7388 + - uid: 12930 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.448226,-151.46065 parent: 2 - - uid: 7389 + - uid: 12931 components: - type: Transform pos: 16.276836,-137.70845 parent: 2 - - uid: 7390 + - uid: 12932 components: - type: Transform rot: 1.5707963267948966 rad @@ -84693,49 +84142,49 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 3891 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.7093341,-202.65921 parent: 2 - - uid: 3892 + - uid: 12934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.8729095,-202.42155 parent: 2 - - uid: 3949 + - uid: 12935 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4470973,-197.77046 parent: 2 - - uid: 3950 + - uid: 12936 components: - type: Transform pos: -5.135233,-195.4101 parent: 2 - proto: ShardGlassReinforced entities: - - uid: 11709 + - uid: 12937 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.35029945,-377.53983 parent: 2 - - uid: 11823 + - uid: 12938 components: - type: Transform pos: -0.9622005,-378.77563 parent: 2 - - uid: 11824 + - uid: 12939 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.20967445,-378.4539 parent: 2 - - uid: 11826 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad @@ -84743,171 +84192,171 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 3203 + - uid: 12941 components: - type: Transform pos: 18.454567,-257.30835 parent: 2 - - uid: 8926 + - uid: 12942 components: - type: Transform pos: 18.142067,-257.4021 parent: 2 - - uid: 9970 + - uid: 12943 components: - type: Transform pos: 3.3460228,-315.99377 parent: 2 - - uid: 9973 + - uid: 12944 components: - type: Transform pos: -4.3694625,-303.88837 parent: 2 - - uid: 12369 + - uid: 12945 components: - type: Transform pos: -1.1593688,-5.49177 parent: 2 - proto: SheetPlasma entities: - - uid: 94 + - uid: 12946 components: - type: Transform pos: 5.525622,-345.48483 parent: 2 - - uid: 2365 + - uid: 12947 components: - type: Transform pos: 16.489702,-242.50365 parent: 2 - - uid: 9976 + - uid: 12948 components: - type: Transform pos: 3.5577743,-304.39993 parent: 2 - proto: SheetPlasma1 entities: - - uid: 3148 + - uid: 12949 components: - type: Transform pos: 5.3013034,-167.3674 parent: 2 - proto: SheetPlasteel entities: - - uid: 6886 + - uid: 12950 components: - type: Transform pos: 19.023344,-257.24518 parent: 2 - proto: SheetPlastic entities: - - uid: 8540 + - uid: 12951 components: - type: Transform pos: 17.492094,-257.47955 parent: 2 - - uid: 8896 + - uid: 12952 components: - type: Transform pos: 17.507719,-257.1358 parent: 2 - - uid: 10119 + - uid: 12953 components: - type: Transform pos: -4.4883227,-304.0996 parent: 2 - - uid: 12132 + - uid: 12954 components: - type: Transform pos: -1.6015537,-5.438076 parent: 2 - - uid: 15269 + - uid: 12955 components: - type: Transform pos: 4.7201986,-242.37056 parent: 2 - proto: SheetSteel entities: - - uid: 1288 + - uid: 12956 components: - type: Transform pos: -2.0033119,-5.403715 parent: 2 - - uid: 2283 + - uid: 12957 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2354 + - uid: 12958 components: - type: Transform pos: -11.540955,-257.3627 parent: 2 - - uid: 2373 + - uid: 12959 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2388 + - uid: 12960 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2389 + - uid: 12961 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2443 + - uid: 12962 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 8528 + - uid: 12963 components: - type: Transform pos: 19.023344,-257.5108 parent: 2 - - uid: 8894 + - uid: 12964 components: - type: Transform pos: -13.564663,-246.11655 parent: 2 - - uid: 8924 + - uid: 12965 components: - type: Transform pos: 19.23179,-257.44897 parent: 2 - - uid: 9961 + - uid: 12966 components: - type: Transform pos: 3.5573292,-315.64984 parent: 2 - - uid: 9962 + - uid: 12967 components: - type: Transform pos: 3.3460228,-315.399 parent: 2 - - uid: 10118 + - uid: 12968 components: - type: Transform pos: -4.5543566,-303.82236 parent: 2 - - uid: 15268 + - uid: 12969 components: - type: Transform pos: 4.3490157,-242.4043 parent: 2 - proto: SheetUranium entities: - - uid: 2380 + - uid: 12970 components: - type: Transform pos: 16.614702,-242.50365 parent: 2 - proto: ShipBattlemap entities: - - uid: 14457 + - uid: 12971 components: - type: Transform rot: 3.141592653589793 rad @@ -84915,39 +84364,33 @@ entities: parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 11327 + - uid: 12972 components: - type: Transform pos: -0.5,-361.5 parent: 2 - proto: ShotGunCabinetOpen entities: - - uid: 8385 + - uid: 12973 components: - type: Transform pos: 16.5,-157.5 parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 2392 + - uid: 12974 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - - uid: 2397 + - uid: 12975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - proto: SignAi entities: - - uid: 12453 + - uid: 12976 components: - type: Transform rot: 3.141592653589793 rad @@ -84955,7 +84398,7 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 9008 + - uid: 12977 components: - type: Transform rot: -1.5707963267948966 rad @@ -84963,9 +84406,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8801: + 848: - Pressed: Toggle - - uid: 9009 + - uid: 12978 components: - type: Transform rot: -1.5707963267948966 rad @@ -84973,9 +84416,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8803: + 849: - Pressed: Toggle - - uid: 10008 + - uid: 12979 components: - type: Transform rot: -1.5707963267948966 rad @@ -84983,13 +84426,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 9941: + 835: - Pressed: Toggle - 9908: + 834: - Pressed: Toggle - 9906: + 833: - Pressed: Toggle - - uid: 10009 + - uid: 12980 components: - type: Transform rot: 1.5707963267948966 rad @@ -84997,15 +84440,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10003: + 837: - Pressed: Toggle - 10001: + 836: - Pressed: Toggle - 10004: + 838: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 1767 + - uid: 12981 components: - type: Transform rot: 1.5707963267948966 rad @@ -85013,11 +84456,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1749: + 828: - Pressed: Toggle - 1750: + 829: - Pressed: Toggle - - uid: 2094 + - uid: 12982 components: - type: Transform rot: -1.5707963267948966 rad @@ -85025,9 +84468,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2081: + 79: - Pressed: DoorBolt - - uid: 2095 + - uid: 12983 components: - type: Transform rot: -1.5707963267948966 rad @@ -85035,9 +84478,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2080: + 78: - Pressed: DoorBolt - - uid: 2096 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad @@ -85045,33 +84488,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2079: + 77: - Pressed: DoorBolt - - uid: 6906 + - uid: 12985 components: - type: Transform pos: -20.5,-239.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 3537: + 832: - Pressed: Toggle - 2972: + 831: - Pressed: Toggle - 2917: + 830: - Pressed: Toggle - - uid: 8740 + - uid: 12986 components: - type: Transform pos: -0.5,-200.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2397: + 12975: - Pressed: Toggle - 2392: + 12974: - Pressed: Toggle - - uid: 9683 + - uid: 12987 components: - type: MetaData name: Door Open Button @@ -85080,24 +84523,24 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10746: + 89: - Pressed: Open - 10636: + 88: - Pressed: Open - - uid: 11312 + - uid: 12988 components: - type: Transform pos: -0.5,-115.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2222: + 842: - Pressed: Toggle - 2223: + 843: - Pressed: Toggle - 2224: + 844: - Pressed: Toggle - - uid: 11933 + - uid: 12989 components: - type: Transform rot: 3.141592653589793 rad @@ -85105,27 +84548,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2645: + 81: - Pressed: DoorBolt - - uid: 11983 + - uid: 12990 components: - type: Transform pos: -6.5,-151.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 4109: + 82: - Pressed: DoorBolt - proto: SignAnomaly entities: - - uid: 12682 + - uid: 12991 components: - type: Transform pos: -1.5,-311.5 parent: 2 - proto: SignAnomaly2 entities: - - uid: 12460 + - uid: 12992 components: - type: Transform rot: 3.141592653589793 rad @@ -85133,7 +84576,7 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 12264 + - uid: 12993 components: - type: Transform rot: -1.5707963267948966 rad @@ -85141,14 +84584,14 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 17006 + - uid: 12994 components: - type: Transform pos: -3.5,-249.5 parent: 2 - proto: SignBar entities: - - uid: 12475 + - uid: 12995 components: - type: Transform rot: 3.141592653589793 rad @@ -85156,12 +84599,12 @@ entities: parent: 2 - proto: SignBiohazardMed entities: - - uid: 8612 + - uid: 12996 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 12491 + - uid: 12997 components: - type: Transform rot: 3.141592653589793 rad @@ -85169,7 +84612,7 @@ entities: parent: 2 - proto: SignBridge entities: - - uid: 12528 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad @@ -85177,40 +84620,40 @@ entities: parent: 2 - proto: SignCargo entities: - - uid: 12514 + - uid: 12999 components: - type: Transform pos: -1.5,-281.5 parent: 2 - proto: SignCargoDock entities: - - uid: 12515 + - uid: 13000 components: - type: Transform pos: -1.5,-277.5 parent: 2 - proto: SignChapel entities: - - uid: 2660 + - uid: 13001 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2661 + - uid: 13002 components: - type: Transform pos: 6.5,-147.5 parent: 2 - proto: SignChem entities: - - uid: 12520 + - uid: 13003 components: - type: Transform pos: 2.5,-165.5 parent: 2 - proto: SignCloning entities: - - uid: 12524 + - uid: 13004 components: - type: Transform rot: 3.141592653589793 rad @@ -85218,7 +84661,7 @@ entities: parent: 2 - proto: SignConference entities: - - uid: 12500 + - uid: 13005 components: - type: Transform rot: 3.141592653589793 rad @@ -85226,7 +84669,7 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 6239 + - uid: 13006 components: - type: Transform rot: -1.5707963267948966 rad @@ -85234,20 +84677,20 @@ entities: parent: 2 - proto: SignDirectionalBar entities: - - uid: 12509 + - uid: 13007 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-80.5 parent: 2 - - uid: 12510 + - uid: 13008 components: - type: Transform pos: -0.5,-45.5 parent: 2 - proto: SignDirectionalBridge entities: - - uid: 12503 + - uid: 13009 components: - type: Transform rot: 3.141592653589793 rad @@ -85255,12 +84698,12 @@ entities: parent: 2 - proto: SignDirectionalBrig entities: - - uid: 12504 + - uid: 13010 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 12992 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad @@ -85268,12 +84711,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: - - uid: 12395 + - uid: 13012 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 12516 + - uid: 13013 components: - type: Transform rot: 3.141592653589793 rad @@ -85281,12 +84724,12 @@ entities: parent: 2 - proto: SignDirectionalChemistry entities: - - uid: 12522 + - uid: 13014 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 12523 + - uid: 13015 components: - type: Transform rot: 3.141592653589793 rad @@ -85294,13 +84737,13 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 11881 + - uid: 13016 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-168.5 parent: 2 - - uid: 12532 + - uid: 13017 components: - type: Transform rot: -1.5707963267948966 rad @@ -85308,12 +84751,12 @@ entities: parent: 2 - proto: SignDirectionalDorms entities: - - uid: 12541 + - uid: 13018 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 12542 + - uid: 13019 components: - type: Transform rot: 3.141592653589793 rad @@ -85321,13 +84764,13 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 8463 + - uid: 13020 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-115.5 parent: 2 - - uid: 12579 + - uid: 13021 components: - type: Transform rot: 3.141592653589793 rad @@ -85335,25 +84778,25 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 12582 + - uid: 13022 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - uid: 12585 + - uid: 13023 components: - type: Transform pos: 1.5,-18.5 parent: 2 - proto: SignDirectionalFood entities: - - uid: 12597 + - uid: 13024 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 12598 + - uid: 13025 components: - type: Transform rot: 3.141592653589793 rad @@ -85361,56 +84804,56 @@ entities: parent: 2 - proto: SignDirectionalHop entities: - - uid: 7357 + - uid: 13026 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-256.5 parent: 2 - - uid: 12613 + - uid: 13027 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 12614 + - uid: 13028 components: - type: Transform pos: -0.5,-99.5 parent: 2 - proto: SignDirectionalHydro entities: - - uid: 12599 + - uid: 13029 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-85.5 parent: 2 - - uid: 12602 + - uid: 13030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 12604 + - uid: 13031 components: - type: Transform pos: -0.5,-72.5 parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 7507 + - uid: 13032 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-56.5 parent: 2 - - uid: 12625 + - uid: 13033 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 12626 + - uid: 13034 components: - type: Transform rot: 3.141592653589793 rad @@ -85418,37 +84861,37 @@ entities: parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 3619 + - uid: 13035 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-161.5 parent: 2 - - uid: 12628 + - uid: 13036 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-138.5 parent: 2 - - uid: 12630 + - uid: 13037 components: - type: Transform pos: 1.5,-126.5 parent: 2 - proto: SignDirectionalMed entities: - - uid: 12627 + - uid: 13038 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 12635 + - uid: 13039 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13307 + - uid: 13040 components: - type: Transform rot: -1.5707963267948966 rad @@ -85456,12 +84899,12 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: - - uid: 12655 + - uid: 13041 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 12658 + - uid: 13042 components: - type: Transform rot: 3.141592653589793 rad @@ -85469,18 +84912,18 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 8174 + - uid: 13043 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 12659 + - uid: 13044 components: - type: Transform pos: -0.5,-288.5 parent: 2 - - uid: 12660 + - uid: 13045 components: - type: Transform rot: 3.141592653589793 rad @@ -85488,32 +84931,32 @@ entities: parent: 2 - proto: SignDirectionalSec entities: - - uid: 12661 + - uid: 13046 components: - type: Transform pos: -0.5,-347.5 parent: 2 - proto: SignDirectionalSolar entities: - - uid: 12673 + - uid: 13047 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 12674 + - uid: 13048 components: - type: Transform pos: 1.5,-207.5 parent: 2 - proto: SignDirectionalSupply entities: - - uid: 12675 + - uid: 13049 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 12676 + - uid: 13050 components: - type: Transform rot: 3.141592653589793 rad @@ -85521,7 +84964,7 @@ entities: parent: 2 - proto: SignDirectionalWash entities: - - uid: 12680 + - uid: 13051 components: - type: Transform rot: -1.5707963267948966 rad @@ -85529,85 +84972,85 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 3899 + - uid: 13052 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-341.5 parent: 2 - - uid: 9388 + - uid: 13053 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-361.5 parent: 2 - - uid: 12490 + - uid: 13054 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-98.5 parent: 2 - - uid: 12543 + - uid: 13055 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 2 - - uid: 12544 + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-43.5 parent: 2 - - uid: 12545 + - uid: 13057 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-55.5 parent: 2 - - uid: 12550 + - uid: 13058 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-111.5 parent: 2 - - uid: 12554 + - uid: 13059 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-152.5 parent: 2 - - uid: 12558 + - uid: 13060 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-162.5 parent: 2 - - uid: 12560 + - uid: 13061 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-188.5 parent: 2 - - uid: 12562 + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-220.5 parent: 2 - - uid: 12563 + - uid: 13063 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-228.5 parent: 2 - - uid: 12570 + - uid: 13064 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-286.5 parent: 2 - - uid: 12571 + - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad @@ -85615,7 +85058,7 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 398 + - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad @@ -85623,34 +85066,34 @@ entities: parent: 2 - proto: SignHead entities: - - uid: 12607 + - uid: 13067 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 12608 + - uid: 13068 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 12610 + - uid: 13069 components: - type: Transform pos: 4.5,-283.5 parent: 2 - - uid: 12611 + - uid: 13070 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 12612 + - uid: 13071 components: - type: Transform pos: -3.5,-343.5 parent: 2 - proto: SignInterrogation entities: - - uid: 12624 + - uid: 13072 components: - type: Transform rot: 3.141592653589793 rad @@ -85658,7 +85101,7 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 539 + - uid: 13073 components: - type: Transform rot: 3.141592653589793 rad @@ -85666,7 +85109,7 @@ entities: parent: 2 - proto: SignLawyer entities: - - uid: 11212 + - uid: 13074 components: - type: Transform rot: 3.141592653589793 rad @@ -85674,7 +85117,7 @@ entities: parent: 2 - proto: SignLibrary entities: - - uid: 12629 + - uid: 13075 components: - type: Transform rot: -1.5707963267948966 rad @@ -85682,12 +85125,12 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 7194 + - uid: 13076 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 12634 + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad @@ -85695,7 +85138,7 @@ entities: parent: 2 - proto: SignMorgue entities: - - uid: 12632 + - uid: 13078 components: - type: Transform rot: 3.141592653589793 rad @@ -85703,81 +85146,81 @@ entities: parent: 2 - proto: SignNosmoking entities: - - uid: 11345 + - uid: 13079 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 11370 + - uid: 13080 components: - type: Transform pos: -0.5,-290.5 parent: 2 - - uid: 11377 + - uid: 13081 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 11383 + - uid: 13082 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-326.5 parent: 2 - - uid: 11384 + - uid: 13083 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 11417 + - uid: 13084 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 11418 + - uid: 13085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 12638 + - uid: 13086 components: - type: Transform pos: 1.5,-353.5 parent: 2 - - uid: 12639 + - uid: 13087 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 12640 + - uid: 13088 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-380.5 parent: 2 - - uid: 12679 + - uid: 13089 components: - type: Transform pos: 1.5,-240.5 parent: 2 - proto: SignPlaque entities: - - uid: 3748 + - uid: 13090 components: - type: Transform pos: -2.5,-0.5 parent: 2 - proto: SignPrison entities: - - uid: 13410 + - uid: 13091 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 13411 + - uid: 13092 components: - type: Transform rot: -1.5707963267948966 rad @@ -85785,13 +85228,13 @@ entities: parent: 2 - proto: SignRedEight entities: - - uid: 6613 + - uid: 13093 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40827185,-213.49608 parent: 2 - - uid: 6614 + - uid: 13094 components: - type: Transform rot: 3.141592653589793 rad @@ -85799,13 +85242,13 @@ entities: parent: 2 - proto: SignRedFive entities: - - uid: 1354 + - uid: 13095 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5861752,-155.49748 parent: 2 - - uid: 4105 + - uid: 13096 components: - type: Transform rot: 3.141592653589793 rad @@ -85813,19 +85256,19 @@ entities: parent: 2 - proto: SignRedFour entities: - - uid: 4101 + - uid: 13097 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41395348,-105.500565 parent: 2 - - uid: 4102 + - uid: 13098 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5827098,-128.49553 parent: 2 - - uid: 7056 + - uid: 13099 components: - type: Transform rot: -1.5707963267948966 rad @@ -85833,19 +85276,19 @@ entities: parent: 2 - proto: SignRedNine entities: - - uid: 6621 + - uid: 13100 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4074493,-240.49269 parent: 2 - - uid: 6622 + - uid: 13101 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5921938,-263.49698 parent: 2 - - uid: 8449 + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad @@ -85853,79 +85296,79 @@ entities: parent: 2 - proto: SignRedOne entities: - - uid: 4078 + - uid: 13103 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5852656,-47.503147 parent: 2 - - uid: 4089 + - uid: 13104 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40152162,-24.502266 parent: 2 - - uid: 7857 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.4400425,-190.7712 parent: 2 - - uid: 8125 + - uid: 13106 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.655262,-190.7712 parent: 2 - - uid: 8974 + - uid: 13107 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.65059656,-267.50113 parent: 2 - - uid: 10625 + - uid: 13108 components: - type: Transform pos: 1.3436816,-290.4902 parent: 2 - - uid: 10626 + - uid: 13109 components: - type: Transform pos: -0.6467193,-294.49783 parent: 2 - - uid: 10627 + - uid: 13110 components: - type: Transform pos: -0.39628136,-294.49783 parent: 2 - - uid: 10628 + - uid: 13111 components: - type: Transform pos: 1.3480468,-322.4933 parent: 2 - - uid: 10629 + - uid: 13112 components: - type: Transform pos: 1.5945721,-322.4972 parent: 2 - - uid: 10630 + - uid: 13113 components: - type: Transform pos: -0.66275233,-326.49893 parent: 2 - - uid: 11810 + - uid: 13114 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.3482165,-349.49252 parent: 2 - - uid: 11811 + - uid: 13115 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.6562117,-353.50278 parent: 2 - - uid: 11815 + - uid: 13116 components: - type: Transform rot: 1.5707963267948966 rad @@ -85933,19 +85376,19 @@ entities: parent: 2 - proto: SignRedSeven entities: - - uid: 4114 + - uid: 13117 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40892178,-186.50111 parent: 2 - - uid: 6612 + - uid: 13118 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5926433,-209.5081 parent: 2 - - uid: 8933 + - uid: 13119 components: - type: Transform rot: 1.5707963267948966 rad @@ -85953,13 +85396,13 @@ entities: parent: 2 - proto: SignRedSix entities: - - uid: 737 + - uid: 13120 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5832694,-182.49539 parent: 2 - - uid: 1339 + - uid: 13121 components: - type: Transform rot: 3.141592653589793 rad @@ -85967,25 +85410,25 @@ entities: parent: 2 - proto: SignRedThree entities: - - uid: 4084 + - uid: 13122 components: - type: Transform rot: 3.141592653589793 rad pos: 1.588459,-101.49657 parent: 2 - - uid: 4093 + - uid: 13123 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41010725,-78.500275 parent: 2 - - uid: 11812 + - uid: 13124 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.41125554,-353.50778 parent: 2 - - uid: 11814 + - uid: 13125 components: - type: Transform rot: 1.5707963267948966 rad @@ -85993,24 +85436,24 @@ entities: parent: 2 - proto: SignRedTwo entities: - - uid: 4081 + - uid: 13126 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4081869,-51.5101 parent: 2 - - uid: 4082 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5891788,-74.492035 parent: 2 - - uid: 10631 + - uid: 13128 components: - type: Transform pos: -0.40840113,-326.49893 parent: 2 - - uid: 11807 + - uid: 13129 components: - type: Transform rot: 1.5707963267948966 rad @@ -86018,150 +85461,150 @@ entities: parent: 2 - proto: SignRedZero entities: - - uid: 716 + - uid: 13130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6534249,-159.49841 parent: 2 - - uid: 866 + - uid: 13131 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433123,-182.50206 parent: 2 - - uid: 871 + - uid: 13132 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3428853,-155.49748 parent: 2 - - uid: 4073 + - uid: 13133 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5774398,-20.510248 parent: 2 - - uid: 4074 + - uid: 13134 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3465674,-20.503857 parent: 2 - - uid: 4075 + - uid: 13135 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64673156,-78.49695 parent: 2 - - uid: 4079 + - uid: 13136 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3543932,-47.503147 parent: 2 - - uid: 4080 + - uid: 13137 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6514768,-51.50535 parent: 2 - - uid: 4083 + - uid: 13138 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3504801,-74.492035 parent: 2 - - uid: 4088 + - uid: 13139 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64814395,-24.502266 parent: 2 - - uid: 4095 + - uid: 13140 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433409,-101.495316 parent: 2 - - uid: 4096 + - uid: 13141 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64724535,-105.49722 parent: 2 - - uid: 4103 + - uid: 13142 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3494184,-128.49886 parent: 2 - - uid: 4104 + - uid: 13143 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6562591,-132.49622 parent: 2 - - uid: 4107 + - uid: 13144 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6522116,-186.49445 parent: 2 - - uid: 5423 + - uid: 13145 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6627056,-213.4963 parent: 2 - - uid: 5424 + - uid: 13146 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3530763,-209.50024 parent: 2 - - uid: 6615 + - uid: 13147 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3327662,-236.4863 parent: 2 - - uid: 6616 + - uid: 13148 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6607372,-240.49602 parent: 2 - - uid: 6623 + - uid: 13149 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3455713,-263.49365 parent: 2 - - uid: 7362 + - uid: 13150 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5789645,-256.74753 parent: 2 - - uid: 8130 + - uid: 13151 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.6912138,-115.74884 parent: 2 - - uid: 8971 + - uid: 13152 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.42397034,-267.50113 parent: 2 - - uid: 10624 + - uid: 13153 components: - type: Transform pos: 1.5823798,-290.49802 parent: 2 - - uid: 13306 + - uid: 13154 components: - type: Transform rot: -1.5707963267948966 rad @@ -86169,7 +85612,7 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 12651 + - uid: 13155 components: - type: Transform rot: 3.141592653589793 rad @@ -86177,7 +85620,7 @@ entities: parent: 2 - proto: SignRobo entities: - - uid: 12654 + - uid: 13156 components: - type: Transform rot: 3.141592653589793 rad @@ -86185,85 +85628,85 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 103 + - uid: 13157 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 12662 + - uid: 13158 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 12663 + - uid: 13159 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 12664 + - uid: 13160 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 12665 + - uid: 13161 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 12666 + - uid: 13162 components: - type: Transform pos: 4.5,-353.5 parent: 2 - - uid: 12667 + - uid: 13163 components: - type: Transform pos: -3.5,-353.5 parent: 2 - - uid: 12668 + - uid: 13164 components: - type: Transform pos: -3.5,-376.5 parent: 2 - - uid: 12670 + - uid: 13165 components: - type: Transform pos: 4.5,-376.5 parent: 2 - proto: SignSecureSmallRed entities: - - uid: 12671 + - uid: 13166 components: - type: Transform pos: -3.5,-380.5 parent: 2 - - uid: 12672 + - uid: 13167 components: - type: Transform pos: 4.5,-380.5 parent: 2 - proto: SignSecurity entities: - - uid: 7721 + - uid: 13168 components: - type: Transform pos: 2.5,-334.5 parent: 2 - proto: SignShipDock entities: - - uid: 12535 + - uid: 13169 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-30.5 parent: 2 - - uid: 12538 + - uid: 13170 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - - uid: 12539 + - uid: 13171 components: - type: Transform rot: -1.5707963267948966 rad @@ -86271,72 +85714,72 @@ entities: parent: 2 - proto: SignSmoking entities: - - uid: 3397 + - uid: 13172 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 4071 + - uid: 13173 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 4076 + - uid: 13174 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 4077 + - uid: 13175 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 4085 + - uid: 13176 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 4087 + - uid: 13177 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 4090 + - uid: 13178 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 4091 + - uid: 13179 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 4092 + - uid: 13180 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 4097 + - uid: 13181 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 4098 + - uid: 13182 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 4099 + - uid: 13183 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 4100 + - uid: 13184 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 4142 + - uid: 13185 components: - type: Transform rot: -1.5707963267948966 rad @@ -86344,69 +85787,69 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 12695 + - uid: 13186 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-316.5 parent: 2 - - uid: 12696 + - uid: 13187 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-312.5 parent: 2 - - uid: 13444 + - uid: 13188 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 13446 + - uid: 13189 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 13448 + - uid: 13190 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 13456 + - uid: 13191 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 13461 + - uid: 13192 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 13463 + - uid: 13193 components: - type: Transform pos: 6.5,-269.5 parent: 2 - - uid: 13464 + - uid: 13194 components: - type: Transform pos: 6.5,-288.5 parent: 2 - - uid: 13465 + - uid: 13195 components: - type: Transform pos: 6.5,-295.5 parent: 2 - - uid: 13466 + - uid: 13196 components: - type: Transform pos: 4.5,-320.5 parent: 2 - - uid: 13468 + - uid: 13197 components: - type: Transform pos: -3.5,-327.5 parent: 2 - - uid: 15188 + - uid: 13198 components: - type: Transform rot: -1.5707963267948966 rad @@ -86414,7 +85857,7 @@ entities: parent: 2 - proto: SignTelecomms entities: - - uid: 12677 + - uid: 13199 components: - type: Transform rot: 3.141592653589793 rad @@ -86422,7 +85865,7 @@ entities: parent: 2 - proto: SignVirology entities: - - uid: 3876 + - uid: 13200 components: - type: Transform rot: 3.141592653589793 rad @@ -86430,39 +85873,39 @@ entities: parent: 2 - proto: SilverOre1 entities: - - uid: 10117 + - uid: 13201 components: - type: Transform pos: -4.418913,-304.40326 parent: 2 - proto: SingularityGenerator entities: - - uid: 7464 + - uid: 13202 components: - type: Transform pos: 19.5,-239.5 parent: 2 - proto: Sink entities: - - uid: 2865 + - uid: 13203 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-153.5 parent: 2 - - uid: 11477 + - uid: 13204 components: - type: Transform pos: 5.5,-370.5 parent: 2 - - uid: 11478 + - uid: 13205 components: - type: Transform pos: -4.5,-370.5 parent: 2 - proto: SinkStemlessWater entities: - - uid: 2867 + - uid: 13206 components: - type: Transform rot: 3.141592653589793 rad @@ -86470,101 +85913,101 @@ entities: parent: 2 - proto: SinkWide entities: - - uid: 1721 + - uid: 13207 components: - type: Transform pos: -3.5,-53.5 parent: 2 - - uid: 2288 + - uid: 13208 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - - uid: 2299 + - uid: 13209 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - - uid: 3031 + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 - - uid: 3398 + - uid: 13211 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-84.5 parent: 2 - - uid: 14369 + - uid: 13212 components: - type: Transform pos: 15.5,-59.5 parent: 2 - proto: SmartFridge entities: - - uid: 3068 + - uid: 13213 components: - type: Transform pos: 4.5,-170.5 parent: 2 - proto: SMESBasic entities: - - uid: 756 + - uid: 13214 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 4169 + - uid: 13215 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 5385 + - uid: 13216 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5434 + - uid: 13217 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 6748 + - uid: 13218 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6815 + - uid: 13219 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6816 + - uid: 13220 components: - type: Transform pos: 13.5,-253.5 parent: 2 - proto: SmokingPipeFilledCannabis entities: - - uid: 14923 + - uid: 13221 components: - type: Transform pos: -6.578457,-148.21114 parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 1336 + - uid: 13222 components: - type: Transform pos: 3.2005093,-101.69577 parent: 2 - proto: SodaDispenser entities: - - uid: 1025 + - uid: 13223 components: - type: Transform rot: 3.141592653589793 rad @@ -86572,356 +86015,356 @@ entities: parent: 2 - proto: SolarAssembly entities: - - uid: 4384 + - uid: 13224 components: - type: Transform pos: 8.5,-219.5 parent: 2 - proto: SolarPanel entities: - - uid: 4242 + - uid: 13225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-220.5 parent: 2 - - uid: 4362 + - uid: 13226 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-221.5 parent: 2 - - uid: 4363 + - uid: 13227 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-222.5 parent: 2 - - uid: 4364 + - uid: 13228 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-223.5 parent: 2 - - uid: 4365 + - uid: 13229 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-224.5 parent: 2 - - uid: 4367 + - uid: 13230 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-226.5 parent: 2 - - uid: 4368 + - uid: 13231 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-227.5 parent: 2 - - uid: 4369 + - uid: 13232 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-228.5 parent: 2 - - uid: 4370 + - uid: 13233 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-229.5 parent: 2 - - uid: 4372 + - uid: 13234 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-220.5 parent: 2 - - uid: 4373 + - uid: 13235 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-221.5 parent: 2 - - uid: 4374 + - uid: 13236 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-222.5 parent: 2 - - uid: 4375 + - uid: 13237 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-223.5 parent: 2 - - uid: 4376 + - uid: 13238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-224.5 parent: 2 - - uid: 4377 + - uid: 13239 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-225.5 parent: 2 - - uid: 4379 + - uid: 13240 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-227.5 parent: 2 - - uid: 4380 + - uid: 13241 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-228.5 parent: 2 - - uid: 4381 + - uid: 13242 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-229.5 parent: 2 - - uid: 4382 + - uid: 13243 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-217.5 parent: 2 - - uid: 4383 + - uid: 13244 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-218.5 parent: 2 - - uid: 4386 + - uid: 13245 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-221.5 parent: 2 - - uid: 4387 + - uid: 13246 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-222.5 parent: 2 - - uid: 4388 + - uid: 13247 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-223.5 parent: 2 - - uid: 4390 + - uid: 13248 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-225.5 parent: 2 - - uid: 4391 + - uid: 13249 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-226.5 parent: 2 - - uid: 4392 + - uid: 13250 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-227.5 parent: 2 - - uid: 4393 + - uid: 13251 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-228.5 parent: 2 - - uid: 4395 + - uid: 13252 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-230.5 parent: 2 - - uid: 4396 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-231.5 parent: 2 - - uid: 4397 + - uid: 13254 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-232.5 parent: 2 - - uid: 4398 + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-232.5 parent: 2 - - uid: 4399 + - uid: 13256 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-231.5 parent: 2 - - uid: 4400 + - uid: 13257 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-230.5 parent: 2 - - uid: 4402 + - uid: 13258 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-228.5 parent: 2 - - uid: 4404 + - uid: 13259 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-226.5 parent: 2 - - uid: 4405 + - uid: 13260 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-225.5 parent: 2 - - uid: 4406 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-224.5 parent: 2 - - uid: 4407 + - uid: 13262 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-223.5 parent: 2 - - uid: 4408 + - uid: 13263 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-222.5 parent: 2 - - uid: 4409 + - uid: 13264 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-221.5 parent: 2 - - uid: 4411 + - uid: 13265 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-219.5 parent: 2 - - uid: 4412 + - uid: 13266 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-218.5 parent: 2 - - uid: 4413 + - uid: 13267 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-217.5 parent: 2 - - uid: 4414 + - uid: 13268 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-215.5 parent: 2 - - uid: 4418 + - uid: 13269 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-234.5 parent: 2 - - uid: 4421 + - uid: 13270 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-234.5 parent: 2 - - uid: 4422 + - uid: 13271 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-233.5 parent: 2 - - uid: 4423 + - uid: 13272 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-231.5 parent: 2 - - uid: 4424 + - uid: 13273 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-230.5 parent: 2 - - uid: 4425 + - uid: 13274 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-231.5 parent: 2 - - uid: 4426 + - uid: 13275 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-230.5 parent: 2 - - uid: 4427 + - uid: 13276 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-233.5 parent: 2 - - uid: 4428 + - uid: 13277 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-219.5 parent: 2 - - uid: 4429 + - uid: 13278 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-218.5 parent: 2 - - uid: 4430 + - uid: 13279 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-216.5 parent: 2 - - uid: 4431 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-216.5 parent: 2 - - uid: 4432 + - uid: 13281 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-218.5 parent: 2 - - uid: 4433 + - uid: 13282 components: - type: Transform rot: 1.5707963267948966 rad @@ -86929,25 +86372,25 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 4366 + - uid: 13283 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-225.5 parent: 2 - - uid: 4389 + - uid: 13284 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-224.5 parent: 2 - - uid: 4809 + - uid: 13285 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-227.5 parent: 2 - - uid: 4812 + - uid: 13286 components: - type: Transform rot: 3.141592653589793 rad @@ -86955,74 +86398,74 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 4417 + - uid: 13287 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4807 + - uid: 13288 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4808 + - uid: 13289 components: - type: Transform pos: 4.5,-235.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 2623 + - uid: 13290 components: - type: Transform pos: -3.5,-149.5 parent: 2 - proto: SpaceCash10 entities: - - uid: 14418 + - uid: 13291 components: - type: Transform pos: 14.544594,-78.46228 parent: 2 - - uid: 14473 + - uid: 13292 components: - type: Transform pos: 14.3597,-78.22464 parent: 2 - - uid: 14474 + - uid: 13293 components: - type: Transform pos: 13.567299,-82.76628 parent: 2 - proto: SpaceCash100 entities: - - uid: 14475 + - uid: 13294 components: - type: Transform pos: 17.648165,-82.3042 parent: 2 - proto: SpaceHeater entities: - - uid: 2335 + - uid: 13295 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 2390 + - uid: 13296 components: - type: Transform pos: -11.5,-255.5 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 15272 + - uid: 13297 components: - type: Transform pos: 6.583322,-242.507 parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 7558 + - uid: 13298 components: - type: Transform rot: -1.5707963267948966 rad @@ -87030,7 +86473,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 15273 + - uid: 13299 components: - type: Transform pos: 5.5,-242.5 @@ -87039,35 +86482,35 @@ entities: enabled: False - proto: SpawnMobAlexander entities: - - uid: 2310 + - uid: 13300 components: - type: Transform pos: 0.5,-87.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 12155 + - uid: 13301 components: - type: Transform pos: -2.5,-305.5 parent: 2 - proto: SpawnMobCat entities: - - uid: 7208 + - uid: 13302 components: - type: Transform pos: 0.5,-203.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 2237 + - uid: 13303 components: - type: Transform pos: 1.5,-117.5 parent: 2 - proto: SpawnMobCow entities: - - uid: 43 + - uid: 13304 components: - type: Transform rot: 3.141592653589793 rad @@ -87075,93 +86518,79 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 14576 + - uid: 13305 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12121 + - uid: 13306 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 6770 + - uid: 13307 components: - type: Transform pos: -0.5,-363.5 parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 3102 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 13626 + - uid: 13308 components: - type: Transform pos: -0.5,-61.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 4147 + - uid: 13309 components: - type: Transform pos: -3.5,-39.5 parent: 2 - - uid: 6842 + - uid: 13310 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 8928 + - uid: 13311 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 8970 + - uid: 13312 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 9385 + - uid: 13313 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 15749 + - uid: 13314 components: - type: Transform pos: -4.5,-146.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 2709 + - uid: 13315 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 12154 + - uid: 13316 components: - type: Transform pos: -3.5,-176.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5881 - components: - - type: Transform - pos: 4.5,-280.5 - parent: 2 - proto: SpawnMobShiva entities: - - uid: 8229 + - uid: 13317 components: - type: Transform rot: -1.5707963267948966 rad @@ -87169,515 +86598,515 @@ entities: parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 12157 + - uid: 13318 components: - type: Transform pos: -2.5,-144.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 10536 + - uid: 13319 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: SpawnMobWalter entities: - - uid: 12148 + - uid: 13320 components: - type: Transform pos: 6.5,-166.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 16583 + - uid: 13321 components: - type: Transform pos: -14.5,-264.5 parent: 2 - - uid: 16585 + - uid: 13322 components: - type: Transform pos: -14.5,-263.5 parent: 2 - - uid: 16586 + - uid: 13323 components: - type: Transform pos: -14.5,-262.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 11976 + - uid: 13324 components: - type: Transform pos: 4.5,-64.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 12076 + - uid: 13325 components: - type: Transform pos: 3.5,-312.5 parent: 2 - - uid: 12077 + - uid: 13326 components: - type: Transform pos: 3.5,-314.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 11977 + - uid: 13327 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 11978 + - uid: 13328 components: - type: Transform pos: -6.5,-84.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 11971 + - uid: 13329 components: - type: Transform pos: -0.5,-14.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 14231 + - uid: 13330 components: - type: Transform pos: 2.5,-278.5 parent: 2 - - uid: 14234 + - uid: 13331 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 14235 + - uid: 13332 components: - type: Transform pos: 6.5,-280.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 11982 + - uid: 13333 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 11979 + - uid: 13334 components: - type: Transform pos: 4.5,-89.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 12032 + - uid: 13335 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 12033 + - uid: 13336 components: - type: Transform pos: 6.5,-168.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 4806 + - uid: 13337 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 4112 + - uid: 13338 components: - type: Transform pos: 0.5,-202.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 12071 + - uid: 13339 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 2502 + - uid: 13340 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11972 + - uid: 13341 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 12054 + - uid: 13342 components: - type: Transform pos: -2.5,-344.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 11985 + - uid: 13343 components: - type: Transform pos: -3.5,-54.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 12078 + - uid: 13344 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 12706 + - uid: 13345 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 12707 + - uid: 13346 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 12708 + - uid: 13347 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 12709 + - uid: 13348 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 12710 + - uid: 13349 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 12711 + - uid: 13350 components: - type: Transform pos: 3.5,-42.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 12063 + - uid: 13351 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 12067 + - uid: 13352 components: - type: Transform pos: 5.5,-331.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 11984 + - uid: 13353 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 12034 + - uid: 13354 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 12035 + - uid: 13355 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 12036 + - uid: 13356 components: - type: Transform pos: 3.5,-172.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 12037 + - uid: 13357 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 12038 + - uid: 13358 components: - type: Transform pos: 3.5,-174.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 12072 + - uid: 13359 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 8927 + - uid: 13360 components: - type: Transform pos: -5.5,-65.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 12079 + - uid: 13361 components: - type: Transform pos: -0.5,-62.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 12068 + - uid: 13362 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 12069 + - uid: 13363 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 12070 + - uid: 13364 components: - type: Transform pos: -6.5,-112.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14229 + - uid: 13365 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 3364 + - uid: 13366 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 12053 + - uid: 13367 components: - type: Transform pos: 1.5,-301.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12039 + - uid: 13368 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14230 + - uid: 13369 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14232 + - uid: 13370 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 14233 + - uid: 13371 components: - type: Transform pos: -5.5,-273.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 12047 + - uid: 13372 components: - type: Transform pos: -2.5,-302.5 parent: 2 - - uid: 12048 + - uid: 13373 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 12049 + - uid: 13374 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 12050 + - uid: 13375 components: - type: Transform pos: -7.5,-318.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 9497 + - uid: 13376 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 12874 + - uid: 13377 components: - type: Transform pos: 2.5,-337.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 1669 + - uid: 13378 components: - type: Transform pos: -7.5,-338.5 parent: 2 - - uid: 10808 + - uid: 13379 components: - type: Transform pos: -6.5,-337.5 parent: 2 - - uid: 12059 + - uid: 13380 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 12060 + - uid: 13381 components: - type: Transform pos: -0.5,-346.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 11867 + - uid: 13382 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 11986 + - uid: 13383 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 14325 + - uid: 13384 components: - type: Transform pos: 15.5,-61.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 4851 + - uid: 13385 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8780 + - uid: 13386 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 9023 + - uid: 13387 components: - type: Transform pos: 6.5,-253.5 parent: 2 - - uid: 10931 + - uid: 13388 components: - type: Transform pos: 5.5,-251.5 parent: 2 - - uid: 12205 + - uid: 13389 components: - type: Transform pos: 4.5,-253.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 2484 + - uid: 13390 components: - type: Transform pos: -2.5,-249.5 parent: 2 - - uid: 4350 + - uid: 13391 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 6660 + - uid: 13392 components: - type: Transform pos: -2.5,-250.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 12055 + - uid: 13393 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: SpawnVendingMachineRestockDrink entities: - - uid: 1714 + - uid: 13394 components: - type: Transform pos: -5.5,-39.5 parent: 2 - proto: SpawnVendingMachineRestockFood entities: - - uid: 1585 + - uid: 13395 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 2437 + - uid: 13396 components: - type: Transform pos: 6.5,-108.5 parent: 2 - proto: SpeedLoaderCap entities: - - uid: 14635 + - uid: 13397 components: - type: Transform pos: -2.3873794,-259.3928 parent: 2 - proto: SpiderWeb entities: - - uid: 1548 + - uid: 13398 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 - - uid: 14776 + - uid: 13399 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - - uid: 14777 + - uid: 13400 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-32.5 parent: 2 - - uid: 14778 + - uid: 13401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-34.5 parent: 2 - - uid: 14779 + - uid: 13402 components: - type: Transform rot: -1.5707963267948966 rad @@ -87685,37 +87114,37 @@ entities: parent: 2 - proto: StairStage entities: - - uid: 510 + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-36.5 parent: 2 - - uid: 604 + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 693 + - uid: 13405 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 2 - - uid: 694 + - uid: 13406 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 - - uid: 8821 + - uid: 13407 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-273.5 parent: 2 - - uid: 8822 + - uid: 13408 components: - type: Transform rot: 1.5707963267948966 rad @@ -87723,107 +87152,107 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 3119 + - uid: 13409 components: - type: Transform pos: 8.5,-178.5 parent: 2 - proto: StationMap entities: - - uid: 2859 + - uid: 13410 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-118.5 parent: 2 - - uid: 2860 + - uid: 13411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-145.5 parent: 2 - - uid: 2862 + - uid: 13412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 - - uid: 2863 + - uid: 13413 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-45.5 parent: 2 - - uid: 2864 + - uid: 13414 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 2866 + - uid: 13415 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - - uid: 3156 + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-170.5 parent: 2 - - uid: 4003 + - uid: 13417 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 6821 + - uid: 13418 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 8664 + - uid: 13419 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 11795 + - uid: 13420 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 11803 + - uid: 13421 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-222.5 parent: 2 - - uid: 11804 + - uid: 13422 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-195.5 parent: 2 - - uid: 12217 + - uid: 13423 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 14787 + - uid: 13424 components: - type: Transform pos: 6.5,-80.5 parent: 2 - proto: StationMapBroken entities: - - uid: 3186 + - uid: 13425 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 9703 + - uid: 13426 components: - type: Transform rot: 1.5707963267948966 rad @@ -87831,49 +87260,49 @@ entities: parent: 2 - proto: StatueVenusBlue entities: - - uid: 2665 + - uid: 13427 components: - type: Transform pos: 3.5,-141.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 2506 + - uid: 13428 components: - type: Transform pos: 5.5,-141.5 parent: 2 - proto: SteelBench entities: - - uid: 10873 + - uid: 13429 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 12697 + - uid: 13430 components: - type: Transform pos: 5.5,-306.5 parent: 2 - - uid: 12698 + - uid: 13431 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 12699 + - uid: 13432 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-308.5 parent: 2 - - uid: 12700 + - uid: 13433 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - - uid: 12875 + - uid: 13434 components: - type: Transform rot: -1.5707963267948966 rad @@ -87881,30 +87310,30 @@ entities: parent: 2 - proto: Stool entities: - - uid: 2338 + - uid: 13435 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 2356 + - uid: 13436 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-342.5 parent: 2 - - uid: 2448 + - uid: 13437 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-339.5 parent: 2 - - uid: 2464 + - uid: 13438 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-335.5 parent: 2 - - uid: 7430 + - uid: 13439 components: - type: Transform rot: -1.5707963267948966 rad @@ -87912,37 +87341,37 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 44 + - uid: 13440 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-87.5 parent: 2 - - uid: 951 + - uid: 13441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-62.5 parent: 2 - - uid: 1093 + - uid: 13442 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-61.5 parent: 2 - - uid: 1245 + - uid: 13443 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-63.5 parent: 2 - - uid: 1246 + - uid: 13444 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-64.5 parent: 2 - - uid: 5174 + - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad @@ -87950,115 +87379,115 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 7200 + - uid: 13446 components: - type: Transform pos: -21.5,-240.5 parent: 2 - proto: Stunbaton entities: - - uid: 10736 - components: - - type: Transform - pos: -5.4655995,-340.5027 - parent: 2 - - uid: 12775 + - uid: 5608 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15299 + - uid: 13447 + components: + - type: Transform + pos: -5.4655995,-340.5027 + parent: 2 + - uid: 13448 components: - type: Transform pos: -5.6637,-340.33105 parent: 2 - proto: SubstationBasic entities: - - uid: 364 + - uid: 13449 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 726 + - uid: 13450 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 1430 + - uid: 13451 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 1452 + - uid: 13452 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2035 + - uid: 13453 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 2298 + - uid: 13454 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 2815 + - uid: 13455 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4714 + - uid: 13456 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4731 + - uid: 13457 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7876 + - uid: 13458 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 8474 + - uid: 13459 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8673 + - uid: 13460 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9540 + - uid: 13461 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 10169 + - uid: 13462 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10710 + - uid: 13463 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 11263 + - uid: 13464 components: - type: Transform pos: 6.5,-361.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 5460 + - uid: 13465 components: - type: Transform rot: -1.5707963267948966 rad @@ -88066,210 +87495,210 @@ entities: parent: 2 - proto: Sugarcane entities: - - uid: 10997 + - uid: 13466 components: - type: Transform pos: 29.942026,-307.55215 parent: 2 - proto: SuitStorageBasic entities: - - uid: 15156 + - uid: 13467 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 15171 + - uid: 13468 components: - type: Transform pos: 9.5,-118.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 299 + - uid: 13469 components: - type: Transform pos: -3.5,-13.5 parent: 2 - proto: SuitStorageCE entities: - - uid: 13003 + - uid: 13470 components: - type: Transform pos: 11.5,-251.5 parent: 2 - proto: SuitStorageCMO entities: - - uid: 2395 + - uid: 13471 components: - type: Transform pos: -0.5,-203.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 399 + - uid: 13472 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 400 + - uid: 13473 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 4990 + - uid: 13474 components: - type: Transform pos: 7.5,-113.5 parent: 2 - - uid: 10084 + - uid: 13475 components: - type: Transform pos: 7.5,-116.5 parent: 2 - - uid: 15155 + - uid: 13476 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 15157 + - uid: 13477 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 15158 + - uid: 13478 components: - type: Transform pos: 9.5,-113.5 parent: 2 - - uid: 15159 + - uid: 13479 components: - type: Transform pos: 8.5,-113.5 parent: 2 - - uid: 15168 + - uid: 13480 components: - type: Transform pos: 7.5,-117.5 parent: 2 - - uid: 15169 + - uid: 13481 components: - type: Transform pos: 9.5,-116.5 parent: 2 - - uid: 15170 + - uid: 13482 components: - type: Transform pos: 9.5,-117.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 11446 + - uid: 13483 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 11447 + - uid: 13484 components: - type: Transform pos: -0.5,-375.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 11095 + - uid: 13485 components: - type: Transform pos: -5.5,-345.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 7607 + - uid: 13486 components: - type: Transform pos: 14.5,-154.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 9850 + - uid: 13487 components: - type: Transform pos: -9.5,-305.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 8619 + - uid: 13488 components: - type: Transform pos: -2.5,-269.5 parent: 2 - - uid: 8620 + - uid: 13489 components: - type: Transform pos: -3.5,-269.5 parent: 2 - - uid: 8621 + - uid: 13490 components: - type: Transform pos: -4.5,-269.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 3792 + - uid: 13491 components: - type: Transform pos: 4.5,-343.5 parent: 2 - - uid: 10803 + - uid: 13492 components: - type: Transform pos: 6.5,-335.5 parent: 2 - - uid: 10872 + - uid: 13493 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 13388 + - uid: 13494 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 13389 + - uid: 13495 components: - type: Transform pos: 5.5,-343.5 parent: 2 - - uid: 14605 + - uid: 13496 components: - type: Transform pos: 6.5,-343.5 parent: 2 - - uid: 15811 + - uid: 13497 components: - type: Transform pos: 7.5,-335.5 parent: 2 - proto: SuitStorageWarden entities: - - uid: 12864 + - uid: 13498 components: - type: Transform pos: 1.5,-362.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 2127 + - uid: 13499 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - - uid: 7824 + - uid: 13500 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-253.5 parent: 2 - - uid: 8923 + - uid: 13501 components: - type: Transform rot: 3.141592653589793 rad @@ -88280,45 +87709,45 @@ entities: - SurveillanceCameraCommand nameSet: True id: Telecomms - - uid: 11473 + - uid: 13502 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 11517 + - uid: 13503 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 11528 + - uid: 13504 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 11529 + - uid: 13505 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 11684 + - uid: 13506 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11685 + - uid: 13507 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 11687 + - uid: 13508 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 11697 + - uid: 13509 components: - type: Transform rot: 3.141592653589793 rad @@ -88326,19 +87755,19 @@ entities: parent: 2 - proto: SurveillanceCameraEngineering entities: - - uid: 8034 + - uid: 13510 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-251.5 parent: 2 - - uid: 8064 + - uid: 13511 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8840 + - uid: 13512 components: - type: Transform rot: 3.141592653589793 rad @@ -88346,67 +87775,67 @@ entities: parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 3832 + - uid: 13513 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-305.5 parent: 2 - - uid: 11291 + - uid: 13514 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-111.5 parent: 2 - - uid: 11688 + - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-27.5 parent: 2 - - uid: 11689 + - uid: 13516 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-37.5 parent: 2 - - uid: 11699 + - uid: 13517 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-138.5 parent: 2 - - uid: 11700 + - uid: 13518 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-143.5 parent: 2 - - uid: 11701 + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-149.5 parent: 2 - - uid: 11703 + - uid: 13520 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-196.5 parent: 2 - - uid: 11706 + - uid: 13521 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-171.5 parent: 2 - - uid: 11712 + - uid: 13522 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-223.5 parent: 2 - - uid: 11754 + - uid: 13523 components: - type: Transform rot: -1.5707963267948966 rad @@ -88414,7 +87843,7 @@ entities: parent: 2 - proto: SurveillanceCameraMedical entities: - - uid: 7201 + - uid: 13524 components: - type: Transform rot: -1.5707963267948966 rad @@ -88425,104 +87854,104 @@ entities: - SurveillanceCameraMedical nameSet: True id: Morgue - - uid: 11702 + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 11704 + - uid: 13526 components: - type: Transform pos: 6.5,-176.5 parent: 2 - - uid: 11707 + - uid: 13527 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-199.5 parent: 2 - - uid: 11708 + - uid: 13528 components: - type: Transform pos: 0.5,-194.5 parent: 2 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2156 + - uid: 13529 components: - type: Transform pos: 19.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 2250 + - uid: 13530 components: - type: Transform pos: 20.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 2291 + - uid: 13531 components: - type: Transform pos: 24.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 2417 + - uid: 13532 components: - type: Transform pos: 25.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 2000 + - uid: 13533 components: - type: Transform pos: 25.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 2184 + - uid: 13534 components: - type: Transform pos: 24.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 2251 + - uid: 13535 components: - type: Transform pos: 20.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 2416 + - uid: 13536 components: - type: Transform pos: 19.5,-317.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 11759 + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-301.5 parent: 2 - - uid: 11760 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-310.5 parent: 2 - - uid: 11761 + - uid: 13539 components: - type: Transform pos: -5.5,-319.5 parent: 2 - - uid: 11766 + - uid: 13540 components: - type: Transform rot: -1.5707963267948966 rad @@ -88530,116 +87959,115 @@ entities: parent: 2 - proto: SurveillanceCameraSecurity entities: - - uid: 2280 + - uid: 13541 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - - uid: 3072 + - uid: 13542 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 8470 + - uid: 13543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-335.5 parent: 2 - - uid: 10821 + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - - uid: 11767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-331.5 - parent: 2 - - uid: 11768 + - uid: 13545 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-329.5 parent: 2 - - uid: 11778 + - uid: 13546 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-356.5 parent: 2 - - uid: 11783 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-356.5 parent: 2 - - uid: 11784 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-356.5 parent: 2 - - uid: 11785 + - uid: 13549 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-366.5 parent: 2 - - uid: 11786 + - uid: 13550 components: - type: Transform pos: -1.5,-373.5 parent: 2 - - uid: 11788 + - uid: 13551 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-362.5 parent: 2 - - uid: 11790 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-362.5 parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -1.5,-333.5 + parent: 2 - proto: SurveillanceCameraService entities: - - uid: 11691 + - uid: 13554 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-61.5 parent: 2 - - uid: 11692 + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 11693 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - uid: 11694 + - uid: 13557 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-70.5 parent: 2 - - uid: 11695 + - uid: 13558 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-85.5 parent: 2 - - uid: 11696 + - uid: 13559 components: - type: Transform rot: 3.141592653589793 rad @@ -88647,49 +88075,49 @@ entities: parent: 2 - proto: SurveillanceCameraSupply entities: - - uid: 11753 + - uid: 13560 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 11755 + - uid: 13561 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 11756 + - uid: 13562 components: - type: Transform pos: -3.5,-288.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 632 + - uid: 13563 components: - type: Transform pos: 23.5,-317.5 parent: 2 - - uid: 8597 + - uid: 13564 components: - type: Transform pos: 21.5,-317.5 parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 10677 + - uid: 13565 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-371.5 parent: 2 - - uid: 12683 + - uid: 13566 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - - uid: 13451 + - uid: 13567 components: - type: Transform rot: -1.5707963267948966 rad @@ -88697,193 +88125,187 @@ entities: parent: 2 - proto: Syringe entities: - - uid: 2475 - components: - - type: Transform - pos: -1.3886902,-168.44508 - parent: 2 - - uid: 3693 + - uid: 13569 components: - type: Transform pos: 8.467955,-171.31325 parent: 2 - - uid: 12391 + - uid: 13570 components: - type: Transform pos: -4.482805,-317.1948 parent: 2 -- proto: SyringeIpecac - entities: - - uid: 3566 + - uid: 16326 components: - type: Transform - pos: -7.5644717,-177.28705 + rot: 1.5707963267948966 rad + pos: -2.6946619,-168.4281 parent: 2 - proto: Table entities: - - uid: 577 + - uid: 13572 components: - type: Transform pos: 8.5,-173.5 parent: 2 - - uid: 1072 + - uid: 13573 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 1483 + - uid: 13574 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 1761 + - uid: 13575 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 2320 + - uid: 13576 components: - type: Transform pos: 8.5,-175.5 parent: 2 - - uid: 2350 + - uid: 13577 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-257.5 parent: 2 - - uid: 2738 + - uid: 13578 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 2779 + - uid: 13579 components: - type: Transform pos: 3.5,-173.5 parent: 2 - - uid: 3075 + - uid: 13580 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 3166 + - uid: 13581 components: - type: Transform pos: 3.5,-171.5 parent: 2 - - uid: 3187 + - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-32.5 parent: 2 - - uid: 3920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-202.5 - parent: 2 - - uid: 6509 + - uid: 13583 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-32.5 parent: 2 - - uid: 7209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-198.5 - parent: 2 - - uid: 8855 + - uid: 13584 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 11328 + - uid: 13585 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 + - uid: 13586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-198.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-202.5 + parent: 2 - proto: TableCarpet entities: - - uid: 2696 + - uid: 13588 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 2699 + - uid: 13589 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-141.5 parent: 2 - - uid: 2704 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-139.5 parent: 2 - - uid: 14426 + - uid: 13591 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-82.5 parent: 2 - - uid: 14429 + - uid: 13592 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 - - uid: 14430 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 - - uid: 14431 + - uid: 13594 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 - - uid: 14432 + - uid: 13595 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 - - uid: 14433 + - uid: 13596 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-79.5 parent: 2 - - uid: 14434 + - uid: 13597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-79.5 parent: 2 - - uid: 14441 + - uid: 13598 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-83.5 parent: 2 - - uid: 14445 + - uid: 13599 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-83.5 parent: 2 - - uid: 14447 + - uid: 13600 components: - type: Transform rot: 3.141592653589793 rad @@ -88891,45 +88313,45 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 1835 + - uid: 13601 components: - type: Transform pos: 3.5,-99.5 parent: 2 - - uid: 1836 + - uid: 13602 components: - type: Transform pos: 4.5,-99.5 parent: 2 - - uid: 1838 + - uid: 13603 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 1840 + - uid: 13604 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 1849 + - uid: 13605 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 1850 + - uid: 13606 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-94.5 parent: 2 - - uid: 7835 + - uid: 13607 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-245.5 parent: 2 - - uid: 11913 + - uid: 13608 components: - type: Transform rot: -1.5707963267948966 rad @@ -88937,1266 +88359,1267 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 2725 + - uid: 13609 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 2726 + - uid: 13610 components: - type: Transform pos: -2.5,-136.5 parent: 2 - proto: TableFancyRed entities: - - uid: 8981 + - uid: 13611 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 9075 + - uid: 13612 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 9185 + - uid: 13613 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 9348 + - uid: 13614 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 9349 + - uid: 13615 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 9350 + - uid: 13616 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 9351 + - uid: 13617 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 9352 + - uid: 13618 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 9353 + - uid: 13619 components: - type: Transform pos: -6.5,-67.5 parent: 2 - - uid: 9354 + - uid: 13620 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 9355 + - uid: 13621 components: - type: Transform pos: -6.5,-58.5 parent: 2 - - uid: 9356 + - uid: 13622 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 9357 + - uid: 13623 components: - type: Transform pos: -6.5,-59.5 parent: 2 - - uid: 9358 + - uid: 13624 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 9359 + - uid: 13625 components: - type: Transform pos: -5.5,-62.5 parent: 2 - proto: TableGlass entities: - - uid: 2083 + - uid: 7556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-168.5 + parent: 2 + - uid: 13626 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2084 + - uid: 13627 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2085 + - uid: 13628 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2752 + - uid: 13629 components: - type: Transform pos: 6.5,-123.5 parent: 2 - - uid: 2931 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-174.5 parent: 2 - - uid: 2966 + - uid: 13631 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-175.5 parent: 2 - - uid: 3703 + - uid: 13632 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 6659 - components: - - type: Transform - pos: -1.5,-168.5 - parent: 2 - - uid: 14350 + - uid: 13634 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14355 + - uid: 13635 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14628 + - uid: 13636 components: - type: Transform pos: -7.5,-256.5 parent: 2 - - uid: 14629 + - uid: 13637 components: - type: Transform pos: -7.5,-255.5 parent: 2 - - uid: 14659 + - uid: 13638 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14660 + - uid: 13639 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14661 + - uid: 13640 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14662 + - uid: 13641 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 16506 + - uid: 13642 components: - type: Transform pos: -13.5,-161.5 parent: 2 - - uid: 16507 + - uid: 13643 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16508 + - uid: 13644 components: - type: Transform pos: -11.5,-168.5 parent: 2 - - uid: 16509 + - uid: 13645 components: - type: Transform pos: -12.5,-168.5 parent: 2 - - uid: 16510 + - uid: 13646 components: - type: Transform pos: -13.5,-168.5 parent: 2 - proto: TablePlasmaGlass entities: - - uid: 2007 + - uid: 13647 components: - type: Transform pos: -7.5,-124.5 parent: 2 - - uid: 14739 + - uid: 13648 components: - type: Transform pos: -6.5,-307.5 parent: 2 - - uid: 14740 + - uid: 13649 components: - type: Transform pos: -5.5,-307.5 parent: 2 - proto: TableReinforced entities: - - uid: 58 + - uid: 13650 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 59 + - uid: 13651 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 192 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 198 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 213 + - uid: 13654 components: - type: Transform pos: 6.5,-12.5 parent: 2 - - uid: 924 + - uid: 13655 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-60.5 parent: 2 - - uid: 932 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 996 + - uid: 13657 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-64.5 parent: 2 - - uid: 997 + - uid: 13658 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-62.5 parent: 2 - - uid: 998 + - uid: 13659 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 - - uid: 999 + - uid: 13660 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 - - uid: 1090 + - uid: 13661 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 1212 + - uid: 13662 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 1229 + - uid: 13663 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-65.5 parent: 2 - - uid: 1231 + - uid: 13664 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 1694 + - uid: 13665 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 1695 + - uid: 13666 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 1696 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-87.5 parent: 2 - - uid: 1697 + - uid: 13668 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 1698 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 1699 + - uid: 13670 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 1700 + - uid: 13671 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 1928 + - uid: 13672 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - - uid: 1929 + - uid: 13673 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-87.5 parent: 2 - - uid: 1934 + - uid: 13674 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-86.5 parent: 2 - - uid: 1935 + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-86.5 parent: 2 - - uid: 1936 + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-86.5 parent: 2 - - uid: 1946 + - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-85.5 parent: 2 - - uid: 2239 + - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 2435 + - uid: 13679 components: - type: Transform pos: 2.5,-192.5 parent: 2 - - uid: 2468 + - uid: 13680 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3042 + - uid: 13681 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3097 + - uid: 13682 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3098 + - uid: 13683 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-168.5 parent: 2 - - uid: 3099 + - uid: 13684 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-167.5 parent: 2 - - uid: 3100 + - uid: 13685 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 3159 + - uid: 13686 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-253.5 parent: 2 - - uid: 3176 + - uid: 13687 components: - type: Transform pos: 3.5,-192.5 parent: 2 - - uid: 3178 + - uid: 13688 components: - type: Transform pos: 1.5,-192.5 parent: 2 - - uid: 3234 + - uid: 13689 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 3826 + - uid: 13690 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 3884 + - uid: 13691 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-200.5 parent: 2 - - uid: 3885 + - uid: 13692 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-206.5 parent: 2 - - uid: 3896 + - uid: 13693 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 3897 + - uid: 13694 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 3911 + - uid: 13695 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 3912 + - uid: 13696 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 4133 + - uid: 13697 components: - type: Transform pos: -1.5,-166.5 parent: 2 - - uid: 4237 + - uid: 13698 components: - type: Transform pos: 4.5,-254.5 parent: 2 - - uid: 4576 + - uid: 13699 components: - type: Transform pos: 7.5,-245.5 parent: 2 - - uid: 4780 + - uid: 13700 components: - type: Transform pos: 8.5,-250.5 parent: 2 - - uid: 4847 + - uid: 13701 components: - type: Transform pos: 8.5,-249.5 parent: 2 - - uid: 4951 + - uid: 13702 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 5019 + - uid: 13703 components: - type: Transform pos: 4.5,-245.5 parent: 2 - - uid: 5148 + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-206.5 parent: 2 - - uid: 6642 + - uid: 13705 components: - type: Transform pos: 5.5,-254.5 parent: 2 - - uid: 6644 + - uid: 13706 components: - type: Transform pos: 5.5,-253.5 parent: 2 - - uid: 7377 + - uid: 13707 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 7428 + - uid: 13708 components: - type: Transform pos: -5.5,-189.5 parent: 2 - - uid: 7467 + - uid: 13709 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 7475 + - uid: 13710 components: - type: Transform pos: 7.5,-244.5 parent: 2 - - uid: 7555 + - uid: 13711 components: - type: Transform pos: 7.5,-197.5 parent: 2 - - uid: 7863 + - uid: 13712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-246.5 parent: 2 - - uid: 7864 + - uid: 13713 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-245.5 parent: 2 - - uid: 7892 + - uid: 13714 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-245.5 parent: 2 - - uid: 8261 + - uid: 13715 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 8435 + - uid: 13716 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-247.5 parent: 2 - - uid: 8499 + - uid: 13717 components: - type: Transform pos: -4.5,-273.5 parent: 2 - - uid: 8516 + - uid: 13718 components: - type: Transform pos: -4.5,-272.5 parent: 2 - - uid: 8526 + - uid: 13719 components: - type: Transform pos: 17.5,-257.5 parent: 2 - - uid: 8531 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-272.5 parent: 2 - - uid: 8532 + - uid: 13721 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8534 + - uid: 13722 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8661 + - uid: 13723 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8685 + - uid: 13724 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8689 + - uid: 13725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-250.5 parent: 2 - - uid: 8857 + - uid: 13726 components: - type: Transform pos: -7.5,-271.5 parent: 2 - - uid: 8902 + - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-254.5 parent: 2 - - uid: 8954 + - uid: 13728 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9054 + - uid: 13729 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9055 + - uid: 13730 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 9056 + - uid: 13731 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9080 + - uid: 13732 components: - type: Transform pos: 4.5,-273.5 parent: 2 - - uid: 9081 + - uid: 13733 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9515 + - uid: 13734 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9517 + - uid: 13735 components: - type: Transform pos: 21.5,-315.5 parent: 2 - - uid: 9576 + - uid: 13736 components: - type: Transform pos: 23.5,-297.5 parent: 2 - - uid: 9617 + - uid: 13737 components: - type: Transform pos: 23.5,-299.5 parent: 2 - - uid: 9618 + - uid: 13738 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9620 + - uid: 13739 components: - type: Transform pos: 21.5,-299.5 parent: 2 - - uid: 9698 + - uid: 13740 components: - type: Transform pos: 21.5,-309.5 parent: 2 - - uid: 9699 + - uid: 13741 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9700 + - uid: 13742 components: - type: Transform pos: 22.5,-309.5 parent: 2 - - uid: 9701 + - uid: 13743 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9963 + - uid: 13744 components: - type: Transform pos: 4.5,-316.5 parent: 2 - - uid: 9964 + - uid: 13745 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 9965 + - uid: 13746 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 9966 + - uid: 13747 components: - type: Transform pos: 7.5,-314.5 parent: 2 - - uid: 9967 + - uid: 13748 components: - type: Transform pos: 3.5,-316.5 parent: 2 - - uid: 9969 + - uid: 13749 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 9977 + - uid: 13750 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 9981 + - uid: 13751 components: - type: Transform pos: 3.5,-304.5 parent: 2 - - uid: 9982 + - uid: 13752 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 9983 + - uid: 13753 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10024 + - uid: 13754 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-302.5 parent: 2 - - uid: 10077 + - uid: 13755 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10078 + - uid: 13756 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10097 + - uid: 13757 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 10098 + - uid: 13758 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10100 + - uid: 13759 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 10101 + - uid: 13760 components: - type: Transform pos: -1.5,-300.5 parent: 2 - - uid: 10113 + - uid: 13761 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10115 + - uid: 13762 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10116 + - uid: 13763 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10690 + - uid: 13764 components: - type: Transform pos: -6.5,-339.5 parent: 2 - - uid: 10755 + - uid: 13765 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10771 + - uid: 13766 components: - type: Transform pos: -0.5,-345.5 parent: 2 - - uid: 10849 + - uid: 13767 components: - type: Transform pos: -6.5,-338.5 parent: 2 - - uid: 10855 + - uid: 13768 components: - type: Transform pos: -6.5,-340.5 parent: 2 - - uid: 11043 + - uid: 13769 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - - uid: 11045 + - uid: 13770 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - - uid: 11059 + - uid: 13771 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-331.5 parent: 2 - - uid: 11060 + - uid: 13772 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-332.5 parent: 2 - - uid: 11061 + - uid: 13773 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-332.5 parent: 2 - - uid: 11062 + - uid: 13774 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-332.5 parent: 2 - - uid: 11099 + - uid: 13775 components: - type: Transform pos: -2.5,-346.5 parent: 2 - - uid: 11100 + - uid: 13776 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 11101 + - uid: 13777 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 11200 + - uid: 13778 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-358.5 parent: 2 - - uid: 11430 + - uid: 13779 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11431 + - uid: 13780 components: - type: Transform pos: -0.5,-365.5 parent: 2 - - uid: 11484 + - uid: 13781 components: - type: Transform pos: 2.5,-370.5 parent: 2 - - uid: 11485 + - uid: 13782 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11486 + - uid: 13783 components: - type: Transform pos: 0.5,-370.5 parent: 2 - - uid: 11487 + - uid: 13784 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11488 + - uid: 13785 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 11489 + - uid: 13786 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11752 + - uid: 13787 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11757 + - uid: 13788 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11758 + - uid: 13789 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-189.5 parent: 2 - - uid: 11764 + - uid: 13790 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-357.5 parent: 2 - - uid: 11765 + - uid: 13791 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-358.5 parent: 2 - - uid: 12372 + - uid: 13792 components: - type: Transform pos: -5.5,-317.5 parent: 2 - - uid: 12373 + - uid: 13793 components: - type: Transform pos: -4.5,-317.5 parent: 2 - - uid: 12374 + - uid: 13794 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 12886 + - uid: 13795 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 12887 + - uid: 13796 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 14799 + - uid: 13797 components: - type: Transform pos: -5.5,-339.5 parent: 2 - - uid: 14800 + - uid: 13798 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-193.5 parent: 2 - - uid: 15030 + - uid: 13799 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-133.5 parent: 2 - - uid: 15031 + - uid: 13800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-134.5 parent: 2 - - uid: 15187 + - uid: 13801 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-193.5 parent: 2 - - uid: 15260 + - uid: 13802 components: - type: Transform pos: 5.5,-245.5 parent: 2 - - uid: 15586 + - uid: 13803 components: - type: Transform pos: 19.5,-257.5 parent: 2 - - uid: 15788 + - uid: 13804 components: - type: Transform pos: -7.5,-172.5 parent: 2 - - uid: 15804 + - uid: 13805 components: - type: Transform pos: -5.5,-340.5 parent: 2 - proto: TableReinforcedGlass entities: - - uid: 79 + - uid: 13806 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-7.5 parent: 2 - - uid: 85 + - uid: 13807 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 2 - - uid: 86 + - uid: 13808 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 87 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 154 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 - - uid: 159 + - uid: 13811 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 163 + - uid: 13812 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 - - uid: 165 + - uid: 13813 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 2 - - uid: 166 + - uid: 13814 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 2 - - uid: 169 + - uid: 13815 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 - - uid: 212 + - uid: 13816 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 - - uid: 1917 + - uid: 13817 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-120.5 parent: 2 - - uid: 2214 + - uid: 13818 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-121.5 parent: 2 - - uid: 2217 + - uid: 13819 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 2220 + - uid: 13820 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-121.5 parent: 2 - - uid: 2666 + - uid: 13821 components: - type: Transform pos: 6.5,-142.5 parent: 2 - - uid: 2667 + - uid: 13822 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 2668 + - uid: 13823 components: - type: Transform pos: 2.5,-142.5 parent: 2 - - uid: 2669 + - uid: 13824 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 3127 + - uid: 13825 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-169.5 parent: 2 - - uid: 3712 + - uid: 13826 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 4138 + - uid: 13827 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 11532 + - uid: 13828 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 11533 + - uid: 13829 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 11534 + - uid: 13830 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 11535 + - uid: 13831 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 11536 + - uid: 13832 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 11537 + - uid: 13833 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 11538 + - uid: 13834 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11539 + - uid: 13835 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 11540 + - uid: 13836 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: TableStone entities: - - uid: 2030 + - uid: 13837 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 3118 + - uid: 13838 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-165.5 parent: 2 - - uid: 3133 + - uid: 13839 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-167.5 parent: 2 - - uid: 3189 + - uid: 13840 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-168.5 parent: 2 - - uid: 3190 + - uid: 13841 components: - type: Transform rot: 1.5707963267948966 rad @@ -90204,69 +89627,69 @@ entities: parent: 2 - proto: TableWeb entities: - - uid: 14354 + - uid: 13842 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 14380 + - uid: 13843 components: - type: Transform pos: 14.5,-63.5 parent: 2 - proto: TableWood entities: - - uid: 301 + - uid: 13844 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 310 + - uid: 13845 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 314 + - uid: 13846 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 436 + - uid: 13847 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 1126 + - uid: 13848 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 1186 + - uid: 13849 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 1359 + - uid: 13850 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 1475 + - uid: 13851 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: TargetDarts entities: - - uid: 14772 + - uid: 13852 components: - type: Transform pos: 2.5088735,-32.514496 parent: 2 - proto: TegCenter entities: - - uid: 3677 + - uid: 13853 components: - type: Transform rot: -1.5707963267948966 rad @@ -90274,7 +89697,7 @@ entities: parent: 2 - proto: TegCirculator entities: - - uid: 3584 + - uid: 13854 components: - type: Transform rot: 3.141592653589793 rad @@ -90282,7 +89705,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 6828 + - uid: 13855 components: - type: Transform pos: -16.5,-244.5 @@ -90291,10 +89714,10 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 1192 + - uid: 7257 components: - type: Transform - pos: 24.5,-299.5 + pos: 20.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90302,7 +89725,7 @@ entities: showEnts: False occludes: True ents: - - 1285 + - 7258 machine_board: !type:Container showEnts: False occludes: True @@ -90311,10 +89734,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1333 + - uid: 7259 components: - type: Transform - pos: 25.5,-299.5 + pos: 19.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90322,7 +89745,7 @@ entities: showEnts: False occludes: True ents: - - 1341 + - 7260 machine_board: !type:Container showEnts: False occludes: True @@ -90331,10 +89754,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1343 + - uid: 7261 components: - type: Transform - pos: 20.5,-299.5 + pos: 25.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90342,7 +89765,7 @@ entities: showEnts: False occludes: True ents: - - 1344 + - 7262 machine_board: !type:Container showEnts: False occludes: True @@ -90351,7 +89774,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1345 + - uid: 7263 components: - type: Transform pos: 19.5,-299.5 @@ -90362,7 +89785,7 @@ entities: showEnts: False occludes: True ents: - - 2910 + - 7264 machine_board: !type:Container showEnts: False occludes: True @@ -90371,10 +89794,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2911 + - uid: 7265 components: - type: Transform - pos: 24.5,-297.5 + pos: 25.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90382,7 +89805,7 @@ entities: showEnts: False occludes: True ents: - - 2912 + - 7266 machine_board: !type:Container showEnts: False occludes: True @@ -90391,10 +89814,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3023 + - uid: 7269 components: - type: Transform - pos: 25.5,-297.5 + pos: 24.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90402,7 +89825,7 @@ entities: showEnts: False occludes: True ents: - - 3033 + - 7270 machine_board: !type:Container showEnts: False occludes: True @@ -90411,7 +89834,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3054 + - uid: 7271 components: - type: Transform pos: 20.5,-297.5 @@ -90422,7 +89845,7 @@ entities: showEnts: False occludes: True ents: - - 3071 + - 7272 machine_board: !type:Container showEnts: False occludes: True @@ -90431,10 +89854,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3149 + - uid: 7273 components: - type: Transform - pos: 19.5,-297.5 + pos: 24.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90442,7 +89865,7 @@ entities: showEnts: False occludes: True ents: - - 3583 + - 7274 machine_board: !type:Container showEnts: False occludes: True @@ -90453,54 +89876,54 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 651 + - uid: 13856 components: - type: Transform pos: 16.5,-239.5 parent: 2 - - uid: 3147 + - uid: 13857 components: - type: Transform pos: 15.5,-239.5 parent: 2 - - uid: 6780 + - uid: 13858 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 7809 + - uid: 13859 components: - type: Transform pos: 15.5,-241.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 11715 + - uid: 13860 components: - type: Transform pos: 18.5,-239.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 3013 + - uid: 13861 components: - type: Transform pos: 16.5,-241.5 parent: 2 - - uid: 3164 + - uid: 13862 components: - type: Transform pos: 16.5,-240.5 parent: 2 - proto: Thruster entities: - - uid: 224 + - uid: 13863 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 2 - - uid: 225 + - uid: 13864 components: - type: Transform rot: 3.141592653589793 rad @@ -90508,7 +89931,7 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 2641 + - uid: 13865 components: - type: Transform rot: -1.5707963267948966 rad @@ -90516,289 +89939,289 @@ entities: parent: 2 - proto: ToolboxArtisticFilled entities: - - uid: 15264 + - uid: 13866 components: - type: Transform pos: 7.491327,-244.8711 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2974 + - uid: 13867 components: - type: Transform pos: 5.522824,-253.77805 parent: 2 - - uid: 5162 + - uid: 13868 components: - type: Transform pos: 5.4776406,-31.552532 parent: 2 - - uid: 5405 + - uid: 13869 components: - type: Transform pos: 1.2603997,-187.48691 parent: 2 - - uid: 15265 + - uid: 13870 components: - type: Transform pos: 7.48008,-245.11847 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 3674 + - uid: 13871 components: - type: Transform pos: -7.4139504,-177.44359 parent: 2 - - uid: 5410 + - uid: 13872 components: - type: Transform pos: 5.4776406,-31.341396 parent: 2 - - uid: 9452 + - uid: 13873 components: - type: Transform pos: 21.599606,-315.52435 parent: 2 - - uid: 14644 + - uid: 13874 components: - type: Transform pos: 6.4216676,-260.47906 parent: 2 - - uid: 15263 + - uid: 13875 components: - type: Transform pos: 7.4688315,-244.61247 parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 84 + - uid: 13876 components: - type: Transform pos: -0.54247516,-3.4301338 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 47 + - uid: 13877 components: - type: Transform pos: 1.4461527,2.44579 parent: 2 - - uid: 1615 + - uid: 13878 components: - type: Transform pos: -2.7865536,-5.3156295 parent: 2 - - uid: 5407 + - uid: 13879 components: - type: Transform pos: -5.2525826,-162.94519 parent: 2 - - uid: 5409 + - uid: 13880 components: - type: Transform pos: 7.516703,-56.70343 parent: 2 - - uid: 8681 + - uid: 13881 components: - type: Transform pos: -5.3442082,-288.47815 parent: 2 - - uid: 8688 + - uid: 13882 components: - type: Transform pos: -5.606662,-288.27576 parent: 2 - - uid: 9453 + - uid: 13883 components: - type: Transform pos: 21.414711,-315.2735 parent: 2 - - uid: 9980 + - uid: 13884 components: - type: Transform pos: 3.6579065,-316.43753 parent: 2 - - uid: 10124 + - uid: 13885 components: - type: Transform pos: -4.3656063,-303.19275 parent: 2 - - uid: 10125 + - uid: 13886 components: - type: Transform pos: -4.537293,-302.90228 parent: 2 - - uid: 11677 + - uid: 13887 components: - type: Transform pos: -2.539098,-5.506784 parent: 2 - - uid: 12227 + - uid: 13888 components: - type: Transform pos: 15.403523,-247.25401 parent: 2 - - uid: 15262 + - uid: 13889 components: - type: Transform pos: 7.48008,-244.32011 parent: 2 - proto: ToyAi entities: - - uid: 9478 + - uid: 13890 components: - type: Transform pos: 29.472055,-307.37292 parent: 2 - proto: ToyAmongPequeno entities: - - uid: 2749 + - uid: 13891 components: - type: Transform pos: 3.5588014,-101.58778 parent: 2 - - uid: 3191 + - uid: 13892 components: - type: Transform pos: -7.3859177,-94.83316 parent: 2 - - uid: 3250 + - uid: 13893 components: - type: Transform pos: -7.59963,-94.50708 parent: 2 - - uid: 4347 + - uid: 13894 components: - type: Transform pos: -7.7233577,-95.00183 parent: 2 - proto: ToyFigurineBartender entities: - - uid: 12179 + - uid: 13895 components: - type: Transform pos: -2.566748,-60.54726 parent: 2 - proto: ToyFigurineBotanist entities: - - uid: 12172 + - uid: 13896 components: - type: Transform pos: -4.5218763,-87.44556 parent: 2 - proto: ToyFigurineCaptain entities: - - uid: 12175 + - uid: 13897 components: - type: Transform pos: -0.56393987,3.0352368 parent: 2 - proto: ToyFigurineCargoTech entities: - - uid: 12180 + - uid: 13898 components: - type: Transform pos: 4.883979,-282.15594 parent: 2 - proto: ToyFigurineChaplain entities: - - uid: 2672 + - uid: 13899 components: - type: Transform pos: 6.4167213,-142.44421 parent: 2 - proto: ToyFigurineChef entities: - - uid: 12181 + - uid: 13900 components: - type: Transform pos: 3.5768247,-91.526825 parent: 2 - proto: ToyFigurineChemist entities: - - uid: 12177 + - uid: 13901 components: - type: Transform pos: 2.5620208,-166.28375 parent: 2 - proto: ToyFigurineClown entities: - - uid: 12178 + - uid: 13902 components: - type: Transform pos: -7.7240214,-124.14133 parent: 2 - proto: ToyFigurineDetective entities: - - uid: 2653 + - uid: 13903 components: - type: Transform pos: -5.2573676,-71.2794 parent: 2 - proto: ToyFigurineFootsoldier entities: - - uid: 2329 + - uid: 13904 components: - type: Transform pos: -4.5065055,4.5218883 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 12183 + - uid: 13905 components: - type: Transform pos: 13.608401,-144.38652 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 3621 + - uid: 5324 components: - type: MetaData desc: The sixth of thirteen collectible Hamlet figures! This one is dressed as a monk. - type: Transform - parent: 7334 + parent: 5323 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3625 + - uid: 5389 components: - type: MetaData desc: The fifth of thirteen collectible Hamlet figures! This one looks troubled. - type: Transform - parent: 3001 + parent: 5388 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11966 + - uid: 13906 components: - type: MetaData desc: The thirteenth of thirteen collectible figurines of Hamlet. This one looks like an evil dictator - type: Transform pos: -3.6355574,-334.1145 parent: 2 - - uid: 12225 + - uid: 13907 components: - type: MetaData desc: The second of thirteen collectible Hamlet figures! This one has fallen asleep. - type: Transform pos: 2.6170347,-39.208244 parent: 2 - - uid: 12228 + - uid: 13908 components: - type: MetaData desc: The third of thirteen collectible Hamlet figurines! This one looks jolly and drunk. - type: Transform pos: -3.1984427,-67.30008 parent: 2 - - uid: 12233 + - uid: 13909 components: - type: MetaData desc: The seventh of thirteen collectible Hamlet figures! This one is holding a syringe in his teeth. - type: Transform pos: 5.5009203,-182.15453 parent: 2 - - uid: 12236 + - uid: 13910 components: - type: MetaData desc: The eighth of thirteen collectible Hamlet figures! This one is sick and bald. @@ -90806,14 +90229,14 @@ entities: rot: -1.5707963267948966 rad pos: -4.4284077,-206.78868 parent: 2 - - uid: 12241 + - uid: 13911 components: - type: MetaData desc: The ninth of thirteen collectible Hamlet figures! This one looks like an astronaut. - type: Transform pos: 10.498955,-225.02173 parent: 2 - - uid: 12287 + - uid: 13912 components: - type: MetaData desc: The twelfth of thirteen collectible Hamlet figures! This one wears glasses and looks extremely intelligent. @@ -90822,202 +90245,202 @@ entities: parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - - uid: 12185 + - uid: 13913 components: - type: Transform pos: 1.7322779,-121.02217 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 12186 + - uid: 13914 components: - type: Transform pos: -3.5431526,-346.0501 parent: 2 - proto: ToyFigurineLawyer entities: - - uid: 12188 + - uid: 13915 components: - type: Transform pos: 6.025828,-332.01364 parent: 2 - proto: ToyFigurineLibrarian entities: - - uid: 12189 + - uid: 13916 components: - type: Transform pos: -5.419599,-139.50743 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 12190 + - uid: 13917 components: - type: Transform pos: 8.682559,-175.29884 parent: 2 - proto: ToyFigurineMime entities: - - uid: 11661 + - uid: 5486 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ToyFigurineMouse entities: - - uid: 12191 + - uid: 13918 components: - type: Transform pos: -2.4079862,-180.0877 parent: 2 - proto: ToyFigurineMusician entities: - - uid: 1754 + - uid: 13919 components: - type: Transform pos: -6.7045426,-67.02318 parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 14077 + - uid: 13920 components: - type: Transform pos: -1.2981937,-166.44269 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 12196 + - uid: 13921 components: - type: Transform pos: -7.6109595,-112.14438 parent: 2 - proto: ToyFigurineQuartermaster entities: - - uid: 12197 + - uid: 13922 components: - type: Transform pos: 6.0710835,-285.60263 parent: 2 - proto: ToyFigurineRatKing entities: - - uid: 12211 + - uid: 13923 components: - type: Transform pos: -6.4882874,-17.106768 parent: 2 - proto: ToyFigurineRatServant entities: - - uid: 12123 + - uid: 13924 components: - type: Transform pos: -6.144914,-17.326809 parent: 2 - - uid: 12212 + - uid: 13925 components: - type: Transform pos: -6.726009,-17.326809 parent: 2 - - uid: 12213 + - uid: 13926 components: - type: Transform pos: -6.4354615,-17.49404 parent: 2 - proto: ToyFigurineResearchDirector entities: - - uid: 4044 + - uid: 13927 components: - type: Transform pos: -5.49094,-305.1008 parent: 2 - proto: ToyFigurineSalvage entities: - - uid: 12216 + - uid: 13928 components: - type: Transform pos: -4.4907207,-272.15012 parent: 2 - proto: ToyFigurineScientist entities: - - uid: 12207 + - uid: 13929 components: - type: Transform pos: 7.126124,-314.31253 parent: 2 - proto: ToyFigurineSecurity entities: - - uid: 13405 + - uid: 13930 components: - type: Transform pos: -3.2948563,-334.34607 parent: 2 - proto: ToyFigurineSlime entities: - - uid: 12219 + - uid: 13931 components: - type: Transform pos: -2.4844923,-219.90608 parent: 2 - proto: ToyFigurineSpaceDragon entities: - - uid: 12221 + - uid: 13932 components: - type: Transform pos: -6.453235,-181.61153 parent: 2 - proto: ToyFigurineWarden entities: - - uid: 12223 + - uid: 13933 components: - type: Transform pos: 0.62263775,-366.41714 parent: 2 - proto: ToyFigurineWizard entities: - - uid: 15038 + - uid: 13934 components: - type: Transform pos: -9.568627,-133.52042 parent: 2 - proto: ToyFigurineWizardFake entities: - - uid: 3199 + - uid: 13935 components: - type: Transform pos: -8.133195,-94.51872 parent: 2 - proto: ToyGriffin entities: - - uid: 12184 + - uid: 13936 components: - type: Transform pos: -2.8305314,-148.27542 parent: 2 - proto: ToyOwlman entities: - - uid: 3852 + - uid: 13937 components: - type: Transform pos: 1.7216189,-370.325 parent: 2 - proto: ToySpawner entities: - - uid: 2162 + - uid: 13938 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2166 + - uid: 13939 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 3893 + - uid: 13940 components: - type: Transform pos: -5.5,-204.5 parent: 2 - - uid: 13430 + - uid: 13941 components: - type: Transform rot: -1.5707963267948966 rad @@ -91025,141 +90448,141 @@ entities: parent: 2 - proto: ToySword entities: - - uid: 2774 + - uid: 13942 components: - type: Transform pos: 16.54856,-152.46567 parent: 2 - proto: TrashBananaPeel entities: - - uid: 470 + - uid: 13943 components: - type: Transform pos: -4.4094033,-127.49721 parent: 2 - - uid: 521 + - uid: 13944 components: - type: Transform pos: -6.1094556,-127.684784 parent: 2 - - uid: 761 + - uid: 13945 components: - type: Transform pos: -6.493462,-127.34697 parent: 2 - proto: trayScanner entities: - - uid: 16799 + - uid: 3960 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TrumpetInstrument entities: - - uid: 14305 + - uid: 13946 components: - type: Transform pos: -22.876137,-264.95584 parent: 2 - proto: TwoWayLever entities: - - uid: 7621 + - uid: 13947 components: - type: Transform pos: 3.5,-218.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7644: + 5579: - Left: Forward - Right: Reverse - Middle: Off - 6589: + 5577: - Left: Forward - Right: Reverse - Middle: Off - 7715: + 5580: - Left: Forward - Right: Reverse - Middle: Off - 4899: + 5575: - Left: Forward - Right: Reverse - Middle: Off - 5452: + 12580: - Left: Forward - Right: Reverse - Middle: Off - 5450: + 5576: - Left: Forward - Right: Reverse - Middle: Off - 7620: + 5578: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9006 + - uid: 13948 components: - type: Transform pos: 8.5,-282.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8996: + 5587: - Left: Forward - Right: Reverse - Middle: Off - 8992: + 5583: - Left: Forward - Right: Reverse - Middle: Off - 8991: + 5582: - Left: Forward - Right: Reverse - Middle: Off - 8990: + 5581: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9007 + - uid: 13949 components: - type: Transform pos: 8.5,-276.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8997: + 5588: - Left: Forward - Right: Reverse - Middle: Off - 8995: + 5586: - Left: Forward - Right: Reverse - Middle: Off - 8994: + 5585: - Left: Forward - Right: Reverse - Middle: Off - 8993: + 5584: - Left: Forward - Right: Reverse - Middle: Off - - uid: 11710 + - uid: 13950 components: - type: Transform pos: 5.5,-358.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 11201: + 839: - Left: Open - Right: Open - Middle: Toggle - proto: UniformPrinter entities: - - uid: 13684 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad @@ -91167,296 +90590,296 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 3898 + - uid: 13952 components: - type: Transform pos: -6.5,-196.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 8980 + - uid: 13953 components: - type: Transform pos: -6.010586,-317.41095 parent: 2 - proto: VendingBarDrobe entities: - - uid: 1023 + - uid: 13954 components: - type: Transform pos: 3.5,-61.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 14575 + - uid: 13955 components: - type: Transform pos: -14.5,-265.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 13627 + - uid: 13956 components: - type: Transform pos: 1.5,-61.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 8502 + - uid: 13957 components: - type: Transform pos: 0.5,-276.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 2210 + - uid: 13958 components: - type: Transform pos: -1.5,-119.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 2710 + - uid: 13959 components: - type: Transform pos: 5.5,-137.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 1780 + - uid: 13960 components: - type: Transform pos: -1.5,-92.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 1784 + - uid: 13961 components: - type: Transform pos: 0.5,-92.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 3130 + - uid: 13962 components: - type: Transform pos: 6.5,-162.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 3125 + - uid: 13963 components: - type: Transform pos: 3.5,-169.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 950 + - uid: 13964 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 5089 + - uid: 13965 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 5300 + - uid: 13966 components: - type: Transform pos: 3.5,-188.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 2367 + - uid: 13967 components: - type: Transform pos: 4.5,-126.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 14361 + - uid: 13968 components: - type: Transform pos: 16.5,-63.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 2027 + - uid: 13969 components: - type: Transform pos: 3.5,-85.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 2722 + - uid: 13970 components: - type: Transform pos: -2.5,-134.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 11000 + - uid: 13971 components: - type: Transform pos: -5.5,-70.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 1783 + - uid: 13972 components: - type: Transform pos: 1.5,-92.5 parent: 2 - proto: VendingMachineDonut entities: - - uid: 8878 + - uid: 13973 components: - type: Transform pos: 2.5,-356.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 8476 + - uid: 13974 components: - type: Transform pos: 8.5,-255.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 4973 + - uid: 13975 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 8979 + - uid: 13976 components: - type: Transform pos: 19.5,-245.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 2117 + - uid: 13977 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 14567 + - uid: 13978 components: - type: Transform pos: 13.5,-80.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 10698 + - uid: 13979 components: - type: Transform pos: 6.5,-17.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 2321 + - uid: 13980 components: - type: Transform pos: -4.5,-82.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 1718 + - uid: 13981 components: - type: Transform pos: -2.5,-53.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 11046 + - uid: 13982 components: - type: Transform pos: 6.5,-329.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 2258 + - uid: 13983 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 4206 + - uid: 13984 components: - type: Transform pos: 3.5,-196.5 parent: 2 - - uid: 11248 + - uid: 13985 components: - type: Transform pos: -6.5,-361.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 2461 + - uid: 13986 components: - type: Transform pos: -0.5,-193.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 1743 + - uid: 13987 components: - type: Transform pos: -5.5,-88.5 parent: 2 - proto: VendingMachineRestockMedical entities: - - uid: 1270 + - uid: 13988 components: - type: Transform pos: 3.449893,-163.3618 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 9947 + - uid: 13989 components: - type: Transform pos: 8.5,-315.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 9948 + - uid: 13990 components: - type: Transform pos: 8.5,-316.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 8547 + - uid: 13991 components: - type: Transform pos: -2.5,-287.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 9819 + - uid: 13992 components: - type: Transform pos: -6.5,-305.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 844 + - uid: 13993 components: - type: Transform pos: -6.5,-342.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 13394 + - uid: 13994 components: - type: Transform pos: -5.5,-342.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 1618 + - uid: 13995 components: - type: Transform anchored: False @@ -91466,755 +90889,755 @@ entities: bodyType: Dynamic - proto: VendingMachineSeedsUnlocked entities: - - uid: 11483 + - uid: 13996 components: - type: Transform pos: 6.5,-373.5 parent: 2 - proto: VendingMachineSnackOrange entities: - - uid: 6701 + - uid: 13997 components: - type: Transform pos: -2.5,-242.5 parent: 2 - - uid: 14341 + - uid: 13998 components: - type: Transform pos: 17.5,-63.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 1490 + - uid: 13999 components: - type: Transform pos: 4.5,-56.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 11456 + - uid: 14000 components: - type: Transform pos: 5.5,-374.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 2444 + - uid: 14001 components: - type: Transform pos: -13.5,-259.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 402 + - uid: 14002 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 3717 + - uid: 14003 components: - type: Transform pos: 3.5,-161.5 parent: 2 - - uid: 7730 + - uid: 14004 components: - type: Transform pos: -1.5,-257.5 parent: 2 - - uid: 8237 + - uid: 14005 components: - type: Transform pos: 8.5,-247.5 parent: 2 - - uid: 8552 + - uid: 14006 components: - type: Transform pos: -2.5,-288.5 parent: 2 - - uid: 15163 + - uid: 14007 components: - type: Transform pos: 7.5,-118.5 parent: 2 - - uid: 15172 + - uid: 14008 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 16961 + - uid: 14009 components: - type: Transform pos: -14.5,-250.5 parent: 2 - proto: VendingMachineTheater entities: - - uid: 5065 + - uid: 14010 components: - type: Transform pos: 3.5,-126.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 10121 + - uid: 14011 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 11003 + - uid: 14012 components: - type: Transform pos: 3.5,-242.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 3902 + - uid: 14013 components: - type: Transform pos: -6.5,-198.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 3702 + - uid: 14014 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-172.5 parent: 2 - - uid: 3721 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 14308 + - uid: 14016 components: - type: Transform pos: 7.5,-170.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 7487 + - uid: 14017 components: - type: Transform pos: 6.5,-125.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 4997 + - uid: 14018 components: - type: Transform pos: 2.5,-253.5 parent: 2 - - uid: 9077 + - uid: 14019 components: - type: Transform pos: 7.5,-242.5 parent: 2 - proto: WallMining entities: - - uid: 1998 + - uid: 14020 components: - type: Transform pos: 12.5,-82.5 parent: 2 - - uid: 3844 + - uid: 14021 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-142.5 parent: 2 - - uid: 3845 + - uid: 14022 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-140.5 parent: 2 - - uid: 5247 + - uid: 14023 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-149.5 parent: 2 - - uid: 6631 + - uid: 14024 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-157.5 parent: 2 - - uid: 6823 + - uid: 14025 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-148.5 parent: 2 - - uid: 7240 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-136.5 parent: 2 - - uid: 7241 + - uid: 14027 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-137.5 parent: 2 - - uid: 7242 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-137.5 parent: 2 - - uid: 7244 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-136.5 parent: 2 - - uid: 7245 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-137.5 parent: 2 - - uid: 7246 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-137.5 parent: 2 - - uid: 7252 + - uid: 14032 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-143.5 parent: 2 - - uid: 7261 + - uid: 14033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-143.5 parent: 2 - - uid: 7264 + - uid: 14034 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-140.5 parent: 2 - - uid: 7269 + - uid: 14035 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-148.5 parent: 2 - - uid: 7271 + - uid: 14036 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-151.5 parent: 2 - - uid: 7272 + - uid: 14037 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-151.5 parent: 2 - - uid: 7277 + - uid: 14038 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-154.5 parent: 2 - - uid: 7278 + - uid: 14039 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-154.5 parent: 2 - - uid: 7279 + - uid: 14040 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-155.5 parent: 2 - - uid: 7280 + - uid: 14041 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-155.5 parent: 2 - - uid: 7281 + - uid: 14042 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-155.5 parent: 2 - - uid: 7282 + - uid: 14043 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-155.5 parent: 2 - - uid: 7283 + - uid: 14044 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-154.5 parent: 2 - - uid: 7284 + - uid: 14045 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-154.5 parent: 2 - - uid: 7291 + - uid: 14046 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-157.5 parent: 2 - - uid: 7292 + - uid: 14047 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-158.5 parent: 2 - - uid: 7294 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-158.5 parent: 2 - - uid: 7295 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-157.5 parent: 2 - - uid: 7296 + - uid: 14050 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-157.5 parent: 2 - - uid: 7297 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-158.5 parent: 2 - - uid: 7298 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-158.5 parent: 2 - - uid: 7303 + - uid: 14053 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-161.5 parent: 2 - - uid: 7304 + - uid: 14054 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-161.5 parent: 2 - - uid: 7305 + - uid: 14055 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-163.5 parent: 2 - - uid: 7308 + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-164.5 parent: 2 - - uid: 7394 + - uid: 14057 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-167.5 parent: 2 - - uid: 7783 + - uid: 14058 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 7836 + - uid: 14059 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 7839 + - uid: 14060 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 7840 + - uid: 14061 components: - type: Transform pos: 13.5,-58.5 parent: 2 - - uid: 8175 + - uid: 14062 components: - type: Transform pos: 18.5,-83.5 parent: 2 - - uid: 8226 + - uid: 14063 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 8379 + - uid: 14064 components: - type: Transform pos: 17.5,-66.5 parent: 2 - - uid: 8405 + - uid: 14065 components: - type: Transform pos: 12.5,-67.5 parent: 2 - - uid: 8409 + - uid: 14066 components: - type: Transform pos: 14.5,-66.5 parent: 2 - - uid: 8439 + - uid: 14067 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 8475 + - uid: 14068 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 8693 + - uid: 14069 components: - type: Transform pos: 13.5,-66.5 parent: 2 - - uid: 8832 + - uid: 14070 components: - type: Transform pos: 17.5,-58.5 parent: 2 - - uid: 8972 + - uid: 14071 components: - type: Transform pos: 12.5,-68.5 parent: 2 - - uid: 9018 + - uid: 14072 components: - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 9024 + - uid: 14073 components: - type: Transform pos: 16.5,-66.5 parent: 2 - - uid: 11007 + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-150.5 parent: 2 - - uid: 11047 + - uid: 14075 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-141.5 parent: 2 - - uid: 11057 + - uid: 14076 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-162.5 parent: 2 - - uid: 11112 + - uid: 14077 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-149.5 parent: 2 - - uid: 11113 + - uid: 14078 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-142.5 parent: 2 - - uid: 11114 + - uid: 14079 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-163.5 parent: 2 - - uid: 12127 + - uid: 14080 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 14078 + - uid: 14081 components: - type: Transform pos: 18.5,-67.5 parent: 2 - - uid: 14079 + - uid: 14082 components: - type: Transform pos: 18.5,-68.5 parent: 2 - - uid: 14093 + - uid: 14083 components: - type: Transform pos: 17.5,-86.5 parent: 2 - - uid: 14098 + - uid: 14084 components: - type: Transform pos: 17.5,-85.5 parent: 2 - - uid: 14099 + - uid: 14085 components: - type: Transform pos: 18.5,-85.5 parent: 2 - - uid: 14100 + - uid: 14086 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14102 + - uid: 14087 components: - type: Transform pos: 12.5,-83.5 parent: 2 - - uid: 14103 + - uid: 14088 components: - type: Transform pos: 13.5,-86.5 parent: 2 - - uid: 14228 + - uid: 14089 components: - type: Transform pos: 13.5,-85.5 parent: 2 - - uid: 14236 + - uid: 14090 components: - type: Transform pos: 12.5,-85.5 parent: 2 - - uid: 14237 + - uid: 14091 components: - type: Transform pos: 12.5,-84.5 parent: 2 - - uid: 14238 + - uid: 14092 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 14239 + - uid: 14093 components: - type: Transform pos: 18.5,-70.5 parent: 2 - - uid: 14240 + - uid: 14094 components: - type: Transform pos: 18.5,-71.5 parent: 2 - - uid: 14241 + - uid: 14095 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 14242 + - uid: 14096 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 14243 + - uid: 14097 components: - type: Transform pos: 18.5,-69.5 parent: 2 - - uid: 14244 + - uid: 14098 components: - type: Transform pos: 18.5,-82.5 parent: 2 - - uid: 14245 + - uid: 14099 components: - type: Transform pos: 18.5,-81.5 parent: 2 - - uid: 14246 + - uid: 14100 components: - type: Transform pos: 18.5,-80.5 parent: 2 - - uid: 14247 + - uid: 14101 components: - type: Transform pos: 18.5,-76.5 parent: 2 - - uid: 14248 + - uid: 14102 components: - type: Transform pos: 18.5,-75.5 parent: 2 - - uid: 14311 + - uid: 14103 components: - type: Transform pos: 17.5,-59.5 parent: 2 - - uid: 14312 + - uid: 14104 components: - type: Transform pos: 18.5,-59.5 parent: 2 - - uid: 14315 + - uid: 14105 components: - type: Transform pos: 18.5,-63.5 parent: 2 - - uid: 14317 + - uid: 14106 components: - type: Transform pos: 17.5,-64.5 parent: 2 - - uid: 14318 + - uid: 14107 components: - type: Transform pos: 16.5,-64.5 parent: 2 - - uid: 14319 + - uid: 14108 components: - type: Transform pos: 14.5,-64.5 parent: 2 - - uid: 14320 + - uid: 14109 components: - type: Transform pos: 13.5,-64.5 parent: 2 - - uid: 14366 + - uid: 14110 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 14386 + - uid: 14111 components: - type: Transform pos: 17.5,-76.5 parent: 2 - proto: WallMiningDiagonal entities: - - uid: 4136 + - uid: 14112 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 - - uid: 7395 + - uid: 14113 components: - type: Transform pos: 12.5,-136.5 parent: 2 - - uid: 7396 + - uid: 14114 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-136.5 parent: 2 - - uid: 7397 + - uid: 14115 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-155.5 parent: 2 - - uid: 7398 + - uid: 14116 components: - type: Transform pos: 12.5,-157.5 parent: 2 - - uid: 7399 + - uid: 14117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-157.5 parent: 2 - - uid: 7400 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-155.5 parent: 2 - - uid: 8581 + - uid: 14119 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-135.5 parent: 2 - - uid: 14265 + - uid: 14120 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 - - uid: 14277 + - uid: 14121 components: - type: Transform pos: 12.5,-66.5 parent: 2 - - uid: 14278 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-66.5 parent: 2 - - uid: 14279 + - uid: 14123 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 2 - - uid: 14280 + - uid: 14124 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-86.5 parent: 2 - - uid: 14287 + - uid: 14125 components: - type: Transform pos: 13.5,-135.5 parent: 2 - - uid: 14310 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-58.5 parent: 2 - - uid: 14322 + - uid: 14127 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 14323 + - uid: 14128 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-64.5 parent: 2 - - uid: 14324 + - uid: 14129 components: - type: Transform rot: 1.5707963267948966 rad @@ -92222,49 +91645,49 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 2723 + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-111.5 parent: 2 - - uid: 6052 + - uid: 14131 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - - uid: 11205 + - uid: 14132 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 2 - - uid: 12686 + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-374.5 parent: 2 - - uid: 12688 + - uid: 14134 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-299.5 parent: 2 - - uid: 12690 + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-201.5 parent: 2 - - uid: 12691 + - uid: 14136 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-150.5 parent: 2 - - uid: 12693 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad @@ -92272,197 +91695,197 @@ entities: parent: 2 - proto: WallPlastitaniumDiagonal entities: - - uid: 8142 + - uid: 14138 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 9398 + - uid: 14139 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 9399 + - uid: 14140 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 9407 + - uid: 14141 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 9408 + - uid: 14142 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 9411 + - uid: 14143 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 9412 + - uid: 14144 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 9413 + - uid: 14145 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 9427 + - uid: 14146 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 9428 + - uid: 14147 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 9451 + - uid: 14148 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 9456 + - uid: 14149 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 9458 + - uid: 14150 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 9479 + - uid: 14151 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 9480 + - uid: 14152 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 9481 + - uid: 14153 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 9482 + - uid: 14154 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 9483 + - uid: 14155 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 9484 + - uid: 14156 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 9485 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 9486 + - uid: 14158 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 9487 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 9488 + - uid: 14160 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 9489 + - uid: 14161 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 9490 + - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 9491 + - uid: 14163 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 9492 + - uid: 14164 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 9493 + - uid: 14165 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 9494 + - uid: 14166 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 9495 + - uid: 14167 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 9496 + - uid: 14168 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 9511 + - uid: 14169 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 9512 + - uid: 14170 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 9513 + - uid: 14171 components: - type: Transform rot: 1.5707963267948966 rad @@ -92470,10161 +91893,10162 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 22 + - uid: 14172 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 23 + - uid: 14173 components: - type: Transform pos: -2.5,2.5 parent: 2 - - uid: 24 + - uid: 14174 components: - type: Transform pos: -3.5,3.5 parent: 2 - - uid: 27 + - uid: 14175 components: - type: Transform pos: 3.5,2.5 parent: 2 - - uid: 28 + - uid: 14176 components: - type: Transform pos: 3.5,3.5 parent: 2 - - uid: 29 + - uid: 14177 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 30 + - uid: 14178 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 32 + - uid: 14179 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 33 + - uid: 14180 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 34 + - uid: 14181 components: - type: Transform pos: -1.5,-0.5 parent: 2 - - uid: 35 + - uid: 14182 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 36 + - uid: 14183 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 37 + - uid: 14184 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 38 + - uid: 14185 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 39 + - uid: 14186 components: - type: Transform pos: 3.5,0.5 parent: 2 - - uid: 40 + - uid: 14187 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 63 + - uid: 14188 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 66 + - uid: 14189 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 67 + - uid: 14190 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 68 + - uid: 14191 components: - type: Transform pos: 7.5,-9.5 parent: 2 - - uid: 70 + - uid: 14192 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 71 + - uid: 14193 components: - type: Transform pos: -4.5,-3.5 parent: 2 - - uid: 72 + - uid: 14194 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 73 + - uid: 14195 components: - type: Transform pos: -3.5,-4.5 parent: 2 - - uid: 75 + - uid: 14196 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-342.5 parent: 2 - - uid: 77 + - uid: 14197 components: - type: Transform pos: 0.5,-4.5 parent: 2 - - uid: 78 + - uid: 14198 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 104 + - uid: 14199 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 108 + - uid: 14200 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 109 + - uid: 14201 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 110 + - uid: 14202 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 111 + - uid: 14203 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 112 + - uid: 14204 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 114 + - uid: 14205 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 115 + - uid: 14206 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 116 + - uid: 14207 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 118 + - uid: 14208 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 119 + - uid: 14209 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 127 + - uid: 14210 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 128 + - uid: 14211 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 129 + - uid: 14212 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 134 + - uid: 14213 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 136 + - uid: 14214 components: - type: Transform pos: 7.5,-12.5 parent: 2 - - uid: 137 + - uid: 14215 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 138 + - uid: 14216 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 157 + - uid: 14217 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 167 + - uid: 14218 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 175 + - uid: 14219 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 176 + - uid: 14220 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 177 + - uid: 14221 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 178 + - uid: 14222 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 179 + - uid: 14223 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 182 + - uid: 14224 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 183 + - uid: 14225 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 184 + - uid: 14226 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 185 + - uid: 14227 components: - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 186 + - uid: 14228 components: - type: Transform pos: 3.5,-13.5 parent: 2 - - uid: 187 + - uid: 14229 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 189 + - uid: 14230 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 240 + - uid: 14231 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 241 + - uid: 14232 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 242 + - uid: 14233 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 243 + - uid: 14234 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 245 + - uid: 14235 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 246 + - uid: 14236 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 247 + - uid: 14237 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 248 + - uid: 14238 components: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 251 + - uid: 14239 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 252 + - uid: 14240 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 253 + - uid: 14241 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 255 + - uid: 14242 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 256 + - uid: 14243 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 257 + - uid: 14244 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 263 + - uid: 14245 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 265 + - uid: 14246 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 327 + - uid: 14247 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 328 + - uid: 14248 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 335 + - uid: 14249 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 336 + - uid: 14250 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 337 + - uid: 14251 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 338 + - uid: 14252 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 340 + - uid: 14253 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 341 + - uid: 14254 components: - type: Transform pos: 1.5,-20.5 parent: 2 - - uid: 343 + - uid: 14255 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 344 + - uid: 14256 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 345 + - uid: 14257 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - uid: 346 + - uid: 14258 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 347 + - uid: 14259 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 348 + - uid: 14260 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 353 + - uid: 14261 components: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 354 + - uid: 14262 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 355 + - uid: 14263 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 357 + - uid: 14264 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 358 + - uid: 14265 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 360 + - uid: 14266 components: - type: Transform pos: -1.5,-16.5 parent: 2 - - uid: 361 + - uid: 14267 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 362 + - uid: 14268 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 366 + - uid: 14269 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 373 + - uid: 14270 components: - type: Transform pos: -6.5,1.5 parent: 2 - - uid: 374 + - uid: 14271 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 426 + - uid: 14272 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 427 + - uid: 14273 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 428 + - uid: 14274 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 429 + - uid: 14275 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 431 + - uid: 14276 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 432 + - uid: 14277 components: - type: Transform pos: -1.5,-26.5 parent: 2 - - uid: 433 + - uid: 14278 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 435 + - uid: 14279 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 445 + - uid: 14280 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 446 + - uid: 14281 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 448 + - uid: 14282 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 449 + - uid: 14283 components: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 450 + - uid: 14284 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 451 + - uid: 14285 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 452 + - uid: 14286 components: - type: Transform pos: -7.5,-30.5 parent: 2 - - uid: 453 + - uid: 14287 components: - type: Transform pos: -7.5,-32.5 parent: 2 - - uid: 454 + - uid: 14288 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 455 + - uid: 14289 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 456 + - uid: 14290 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 471 + - uid: 14291 components: - type: Transform pos: -2.5,-42.5 parent: 2 - - uid: 474 + - uid: 14292 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 485 + - uid: 14293 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 494 + - uid: 14294 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 495 + - uid: 14295 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 496 + - uid: 14296 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 498 + - uid: 14297 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 499 + - uid: 14298 components: - type: Transform pos: 8.5,-30.5 parent: 2 - - uid: 500 + - uid: 14299 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 501 + - uid: 14300 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 503 + - uid: 14301 components: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 505 + - uid: 14302 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 506 + - uid: 14303 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 507 + - uid: 14304 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 508 + - uid: 14305 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 513 + - uid: 14306 components: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 514 + - uid: 14307 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 515 + - uid: 14308 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 516 + - uid: 14309 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 522 + - uid: 14310 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 523 + - uid: 14311 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 524 + - uid: 14312 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 525 + - uid: 14313 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 526 + - uid: 14314 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 527 + - uid: 14315 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 528 + - uid: 14316 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 530 + - uid: 14317 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 532 + - uid: 14318 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 534 + - uid: 14319 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 535 + - uid: 14320 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - uid: 536 + - uid: 14321 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 537 + - uid: 14322 components: - type: Transform pos: -2.5,-46.5 parent: 2 - - uid: 538 + - uid: 14323 components: - type: Transform pos: -3.5,-46.5 parent: 2 - - uid: 542 + - uid: 14324 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 543 + - uid: 14325 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 544 + - uid: 14326 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 546 + - uid: 14327 components: - type: Transform pos: -7.5,-37.5 parent: 2 - - uid: 547 + - uid: 14328 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 548 + - uid: 14329 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 549 + - uid: 14330 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 550 + - uid: 14331 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 551 + - uid: 14332 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 552 + - uid: 14333 components: - type: Transform pos: -7.5,-42.5 parent: 2 - - uid: 553 + - uid: 14334 components: - type: Transform pos: -7.5,-44.5 parent: 2 - - uid: 554 + - uid: 14335 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 555 + - uid: 14336 components: - type: Transform pos: -1.5,-43.5 parent: 2 - - uid: 566 + - uid: 14337 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 567 + - uid: 14338 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 585 + - uid: 14339 components: - type: Transform pos: 3.5,-55.5 parent: 2 - - uid: 603 + - uid: 14340 components: - type: Transform pos: -3.5,-42.5 parent: 2 - - uid: 608 + - uid: 14341 components: - type: Transform pos: -3.5,-101.5 parent: 2 - - uid: 626 + - uid: 14342 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 643 + - uid: 14343 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 646 + - uid: 14344 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 663 + - uid: 14345 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 674 + - uid: 14346 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 675 + - uid: 14347 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 676 + - uid: 14348 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 677 + - uid: 14349 components: - type: Transform pos: -1.5,-53.5 parent: 2 - - uid: 678 + - uid: 14350 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 679 + - uid: 14351 components: - type: Transform pos: 2.5,-53.5 parent: 2 - - uid: 680 + - uid: 14352 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 712 + - uid: 14353 components: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 727 + - uid: 14354 components: - type: Transform pos: -3.5,-43.5 parent: 2 - - uid: 883 + - uid: 14355 components: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 892 + - uid: 14356 components: - type: Transform pos: -3.5,-52.5 parent: 2 - - uid: 894 + - uid: 14357 components: - type: Transform pos: -20.5,-250.5 parent: 2 - - uid: 899 + - uid: 14358 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 901 + - uid: 14359 components: - type: Transform pos: 6.5,-52.5 parent: 2 - - uid: 902 + - uid: 14360 components: - type: Transform pos: 7.5,-54.5 parent: 2 - - uid: 907 + - uid: 14361 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - uid: 910 + - uid: 14362 components: - type: Transform pos: 7.5,-60.5 parent: 2 - - uid: 911 + - uid: 14363 components: - type: Transform pos: 7.5,-59.5 parent: 2 - - uid: 913 + - uid: 14364 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 926 + - uid: 14365 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 939 + - uid: 14366 components: - type: Transform pos: 7.5,-65.5 parent: 2 - - uid: 940 + - uid: 14367 components: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 944 + - uid: 14368 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 952 + - uid: 14369 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 953 + - uid: 14370 components: - type: Transform pos: -6.5,-54.5 parent: 2 - - uid: 957 + - uid: 14371 components: - type: Transform pos: 7.5,-67.5 parent: 2 - - uid: 975 + - uid: 14372 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 989 + - uid: 14373 components: - type: Transform pos: 3.5,-228.5 parent: 2 - - uid: 1000 + - uid: 14374 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 1001 + - uid: 14375 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 1003 + - uid: 14376 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 1009 + - uid: 14377 components: - type: Transform pos: -5.5,-133.5 parent: 2 - - uid: 1029 + - uid: 14378 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 1083 + - uid: 14379 components: - type: Transform pos: 4.5,-74.5 parent: 2 - - uid: 1085 + - uid: 14380 components: - type: Transform pos: 4.5,-73.5 parent: 2 - - uid: 1088 + - uid: 14381 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 1089 + - uid: 14382 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 1122 + - uid: 14383 components: - type: Transform pos: -7.5,-61.5 parent: 2 - - uid: 1140 + - uid: 14384 components: - type: Transform pos: -6.5,-71.5 parent: 2 - - uid: 1146 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - - uid: 1158 + - uid: 14386 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 1179 + - uid: 14387 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-333.5 parent: 2 - - uid: 1215 + - uid: 14388 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 1216 + - uid: 14389 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 1221 + - uid: 14390 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 1224 + - uid: 14391 components: - type: Transform pos: 7.5,-58.5 parent: 2 - - uid: 1241 + - uid: 14392 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 1266 + - uid: 14393 components: - type: Transform pos: 5.5,-228.5 parent: 2 - - uid: 1316 + - uid: 14394 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-328.5 parent: 2 - - uid: 1342 + - uid: 14395 components: - type: Transform pos: 3.5,-217.5 parent: 2 - - uid: 1402 + - uid: 14396 components: - type: Transform pos: -12.5,-236.5 parent: 2 - - uid: 1407 + - uid: 14397 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-332.5 parent: 2 - - uid: 1426 + - uid: 14398 components: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 1435 + - uid: 14399 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 1436 + - uid: 14400 components: - type: Transform pos: -3.5,-99.5 parent: 2 - - uid: 1465 + - uid: 14401 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 1466 + - uid: 14402 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 1469 + - uid: 14403 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 1470 + - uid: 14404 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 1473 + - uid: 14405 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 1474 + - uid: 14406 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 1476 + - uid: 14407 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 1477 + - uid: 14408 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 1502 + - uid: 14409 components: - type: Transform pos: -10.5,-86.5 parent: 2 - - uid: 1505 + - uid: 14410 components: - type: Transform pos: -2.5,-79.5 parent: 2 - - uid: 1506 + - uid: 14411 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 1507 + - uid: 14412 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - uid: 1508 + - uid: 14413 components: - type: Transform pos: -5.5,-80.5 parent: 2 - - uid: 1509 + - uid: 14414 components: - type: Transform pos: -6.5,-80.5 parent: 2 - - uid: 1510 + - uid: 14415 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 1511 + - uid: 14416 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 1513 + - uid: 14417 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 1514 + - uid: 14418 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 1515 + - uid: 14419 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 1533 + - uid: 14420 components: - type: Transform pos: -6.5,-90.5 parent: 2 - - uid: 1534 + - uid: 14421 components: - type: Transform pos: -6.5,-91.5 parent: 2 - - uid: 1535 + - uid: 14422 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 1539 + - uid: 14423 components: - type: Transform pos: -5.5,-99.5 parent: 2 - - uid: 1540 + - uid: 14424 components: - type: Transform pos: -6.5,-98.5 parent: 2 - - uid: 1541 + - uid: 14425 components: - type: Transform pos: -6.5,-99.5 parent: 2 - - uid: 1542 + - uid: 14426 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 1543 + - uid: 14427 components: - type: Transform pos: -5.5,-100.5 parent: 2 - - uid: 1545 + - uid: 14428 components: - type: Transform pos: -3.5,-100.5 parent: 2 - - uid: 1546 + - uid: 14429 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 1547 + - uid: 14430 components: - type: Transform pos: -1.5,-99.5 parent: 2 - - uid: 1550 + - uid: 14431 components: - type: Transform pos: 4.5,-101.5 parent: 2 - - uid: 1551 + - uid: 14432 components: - type: Transform pos: 6.5,-99.5 parent: 2 - - uid: 1553 + - uid: 14433 components: - type: Transform pos: 3.5,-100.5 parent: 2 - - uid: 1561 + - uid: 14434 components: - type: Transform pos: 6.5,-101.5 parent: 2 - - uid: 1562 + - uid: 14435 components: - type: Transform pos: 1.5,-101.5 parent: 2 - - uid: 1570 + - uid: 14436 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 1571 + - uid: 14437 components: - type: Transform pos: 6.5,-100.5 parent: 2 - - uid: 1577 + - uid: 14438 components: - type: Transform pos: 7.5,-98.5 parent: 2 - - uid: 1578 + - uid: 14439 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 1579 + - uid: 14440 components: - type: Transform pos: 4.5,-100.5 parent: 2 - - uid: 1582 + - uid: 14441 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 1587 + - uid: 14442 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-332.5 parent: 2 - - uid: 1624 + - uid: 14443 components: - type: Transform pos: -4.5,-52.5 parent: 2 - - uid: 1631 + - uid: 14444 components: - type: Transform pos: -6.5,-97.5 parent: 2 - - uid: 1674 + - uid: 14445 components: - type: Transform pos: 7.5,-99.5 parent: 2 - - uid: 1678 + - uid: 14446 components: - type: Transform pos: -1.5,-98.5 parent: 2 - - uid: 1713 + - uid: 14447 components: - type: Transform pos: -0.5,-99.5 parent: 2 - - uid: 1741 + - uid: 14448 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 1811 + - uid: 14449 components: - type: Transform pos: -16.5,-249.5 parent: 2 - - uid: 1814 + - uid: 14450 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 1815 + - uid: 14451 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 1816 + - uid: 14452 components: - type: Transform pos: 2.5,-107.5 parent: 2 - - uid: 1817 + - uid: 14453 components: - type: Transform pos: 1.5,-107.5 parent: 2 - - uid: 1818 + - uid: 14454 components: - type: Transform pos: -0.5,-105.5 parent: 2 - - uid: 1820 + - uid: 14455 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 1821 + - uid: 14456 components: - type: Transform pos: -1.5,-107.5 parent: 2 - - uid: 1822 + - uid: 14457 components: - type: Transform pos: -0.5,-107.5 parent: 2 - - uid: 1826 + - uid: 14458 components: - type: Transform pos: -2.5,-106.5 parent: 2 - - uid: 1827 + - uid: 14459 components: - type: Transform pos: -3.5,-106.5 parent: 2 - - uid: 1830 + - uid: 14460 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 1846 + - uid: 14461 components: - type: Transform pos: -16.5,-235.5 parent: 2 - - uid: 1853 + - uid: 14462 components: - type: Transform pos: -3.5,-105.5 parent: 2 - - uid: 1854 + - uid: 14463 components: - type: Transform pos: -5.5,-105.5 parent: 2 - - uid: 1919 + - uid: 14464 components: - type: Transform pos: -15.5,-235.5 parent: 2 - - uid: 1922 + - uid: 14465 components: - type: Transform pos: -17.5,-235.5 parent: 2 - - uid: 1932 + - uid: 14466 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - - uid: 1942 + - uid: 14467 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - - uid: 1952 + - uid: 14468 components: - type: Transform pos: -9.5,-107.5 parent: 2 - - uid: 1953 + - uid: 14469 components: - type: Transform pos: -9.5,-111.5 parent: 2 - - uid: 1954 + - uid: 14470 components: - type: Transform pos: -9.5,-114.5 parent: 2 - - uid: 1956 + - uid: 14471 components: - type: Transform pos: -9.5,-120.5 parent: 2 - - uid: 1957 + - uid: 14472 components: - type: Transform pos: -9.5,-123.5 parent: 2 - - uid: 1959 + - uid: 14473 components: - type: Transform pos: -8.5,-126.5 parent: 2 - - uid: 1960 + - uid: 14474 components: - type: Transform pos: -7.5,-126.5 parent: 2 - - uid: 1962 + - uid: 14475 components: - type: Transform pos: -5.5,-126.5 parent: 2 - - uid: 1976 + - uid: 14476 components: - type: Transform pos: -9.5,-110.5 parent: 2 - - uid: 2008 + - uid: 14477 components: - type: Transform pos: -10.5,-252.5 parent: 2 - - uid: 2009 + - uid: 14478 components: - type: Transform pos: -10.5,-255.5 parent: 2 - - uid: 2010 + - uid: 14479 components: - type: Transform pos: -10.5,-256.5 parent: 2 - - uid: 2011 + - uid: 14480 components: - type: Transform pos: -10.5,-251.5 parent: 2 - - uid: 2012 + - uid: 14481 components: - type: Transform pos: -10.5,-253.5 parent: 2 - - uid: 2014 + - uid: 14482 components: - type: Transform pos: -10.5,-254.5 parent: 2 - - uid: 2031 + - uid: 14483 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 2074 + - uid: 14484 components: - type: Transform pos: -5.5,-106.5 parent: 2 - - uid: 2101 + - uid: 14485 components: - type: Transform pos: -3.5,-127.5 parent: 2 - - uid: 2102 + - uid: 14486 components: - type: Transform pos: -3.5,-128.5 parent: 2 - - uid: 2103 + - uid: 14487 components: - type: Transform pos: -2.5,-127.5 parent: 2 - - uid: 2104 + - uid: 14488 components: - type: Transform pos: -3.5,-126.5 parent: 2 - - uid: 2105 + - uid: 14489 components: - type: Transform pos: -1.5,-126.5 parent: 2 - - uid: 2106 + - uid: 14490 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 2107 + - uid: 14491 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 2109 + - uid: 14492 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 2110 + - uid: 14493 components: - type: Transform pos: 1.5,-126.5 parent: 2 - - uid: 2114 + - uid: 14494 components: - type: Transform pos: 1.5,-128.5 parent: 2 - - uid: 2118 + - uid: 14495 components: - type: Transform pos: 6.5,-127.5 parent: 2 - - uid: 2119 + - uid: 14496 components: - type: Transform pos: 6.5,-128.5 parent: 2 - - uid: 2121 + - uid: 14497 components: - type: Transform pos: 6.5,-126.5 parent: 2 - - uid: 2123 + - uid: 14498 components: - type: Transform pos: 7.5,-125.5 parent: 2 - - uid: 2130 + - uid: 14499 components: - type: Transform pos: 4.5,-132.5 parent: 2 - - uid: 2133 + - uid: 14500 components: - type: Transform pos: 8.5,-112.5 parent: 2 - - uid: 2134 + - uid: 14501 components: - type: Transform pos: 7.5,-112.5 parent: 2 - - uid: 2135 + - uid: 14502 components: - type: Transform pos: 7.5,-111.5 parent: 2 - - uid: 2136 + - uid: 14503 components: - type: Transform pos: 7.5,-110.5 parent: 2 - - uid: 2137 + - uid: 14504 components: - type: Transform pos: 7.5,-109.5 parent: 2 - - uid: 2138 + - uid: 14505 components: - type: Transform pos: 7.5,-108.5 parent: 2 - - uid: 2139 + - uid: 14506 components: - type: Transform pos: 7.5,-107.5 parent: 2 - - uid: 2140 + - uid: 14507 components: - type: Transform pos: 6.5,-107.5 parent: 2 - - uid: 2141 + - uid: 14508 components: - type: Transform pos: 4.5,-107.5 parent: 2 - - uid: 2142 + - uid: 14509 components: - type: Transform pos: 4.5,-106.5 parent: 2 - - uid: 2143 + - uid: 14510 components: - type: Transform pos: 3.5,-106.5 parent: 2 - - uid: 2144 + - uid: 14511 components: - type: Transform pos: 4.5,-105.5 parent: 2 - - uid: 2145 + - uid: 14512 components: - type: Transform pos: 6.5,-105.5 parent: 2 - - uid: 2146 + - uid: 14513 components: - type: Transform pos: 6.5,-106.5 parent: 2 - - uid: 2154 + - uid: 14514 components: - type: Transform pos: 2.5,-122.5 parent: 2 - - uid: 2155 + - uid: 14515 components: - type: Transform pos: 3.5,-121.5 parent: 2 - - uid: 2157 + - uid: 14516 components: - type: Transform pos: 3.5,-119.5 parent: 2 - - uid: 2158 + - uid: 14517 components: - type: Transform pos: 3.5,-118.5 parent: 2 - - uid: 2159 + - uid: 14518 components: - type: Transform pos: 2.5,-118.5 parent: 2 - - uid: 2160 + - uid: 14519 components: - type: Transform pos: 1.5,-118.5 parent: 2 - - uid: 2161 + - uid: 14520 components: - type: Transform pos: -0.5,-118.5 parent: 2 - - uid: 2163 + - uid: 14521 components: - type: Transform pos: -1.5,-118.5 parent: 2 - - uid: 2164 + - uid: 14522 components: - type: Transform pos: -2.5,-118.5 parent: 2 - - uid: 2171 + - uid: 14523 components: - type: Transform pos: -1.5,-115.5 parent: 2 - - uid: 2172 + - uid: 14524 components: - type: Transform pos: -0.5,-115.5 parent: 2 - - uid: 2178 + - uid: 14525 components: - type: Transform pos: 4.5,-118.5 parent: 2 - - uid: 2188 + - uid: 14526 components: - type: Transform pos: 4.5,-111.5 parent: 2 - - uid: 2190 + - uid: 14527 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 2195 + - uid: 14528 components: - type: Transform pos: 1.5,-112.5 parent: 2 - - uid: 2196 + - uid: 14529 components: - type: Transform pos: 1.5,-111.5 parent: 2 - - uid: 2197 + - uid: 14530 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 2198 + - uid: 14531 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 2199 + - uid: 14532 components: - type: Transform pos: -1.5,-111.5 parent: 2 - - uid: 2204 + - uid: 14533 components: - type: Transform pos: -2.5,-117.5 parent: 2 - - uid: 2205 + - uid: 14534 components: - type: Transform pos: -2.5,-116.5 parent: 2 - - uid: 2206 + - uid: 14535 components: - type: Transform pos: -2.5,-115.5 parent: 2 - - uid: 2227 + - uid: 14536 components: - type: Transform pos: -20.5,-235.5 parent: 2 - - uid: 2300 + - uid: 14537 components: - type: Transform pos: 6.5,-109.5 parent: 2 - - uid: 2301 + - uid: 14538 components: - type: Transform pos: 5.5,-109.5 parent: 2 - - uid: 2302 + - uid: 14539 components: - type: Transform pos: 4.5,-109.5 parent: 2 - - uid: 2336 + - uid: 14540 components: - type: Transform pos: -11.5,-250.5 parent: 2 - - uid: 2359 + - uid: 14541 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 2361 + - uid: 14542 components: - type: Transform pos: -14.5,-249.5 parent: 2 - - uid: 2362 + - uid: 14543 components: - type: Transform pos: -13.5,-249.5 parent: 2 - - uid: 2371 + - uid: 14544 components: - type: Transform pos: -12.5,-250.5 parent: 2 - - uid: 2453 + - uid: 14545 components: - type: Transform pos: -0.5,-132.5 parent: 2 - - uid: 2454 + - uid: 14546 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 2455 + - uid: 14547 components: - type: Transform pos: -0.5,-134.5 parent: 2 - - uid: 2459 + - uid: 14548 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 2460 + - uid: 14549 components: - type: Transform pos: -1.5,-134.5 parent: 2 - - uid: 2469 + - uid: 14550 components: - type: Transform pos: -17.5,-248.5 parent: 2 - - uid: 2480 + - uid: 14551 components: - type: Transform pos: -2.5,-133.5 parent: 2 - - uid: 2486 + - uid: 14552 components: - type: Transform pos: 4.5,-133.5 parent: 2 - - uid: 2488 + - uid: 14553 components: - type: Transform pos: 6.5,-133.5 parent: 2 - - uid: 2489 + - uid: 14554 components: - type: Transform pos: 6.5,-134.5 parent: 2 - - uid: 2490 + - uid: 14555 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 2491 + - uid: 14556 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 2493 + - uid: 14557 components: - type: Transform pos: -5.5,-134.5 parent: 2 - - uid: 2494 + - uid: 14558 components: - type: Transform pos: -6.5,-135.5 parent: 2 - - uid: 2495 + - uid: 14559 components: - type: Transform pos: -6.5,-136.5 parent: 2 - - uid: 2508 + - uid: 14560 components: - type: Transform pos: -6.5,-149.5 parent: 2 - - uid: 2513 + - uid: 14561 components: - type: Transform pos: -6.5,-153.5 parent: 2 - - uid: 2514 + - uid: 14562 components: - type: Transform pos: -5.5,-153.5 parent: 2 - - uid: 2515 + - uid: 14563 components: - type: Transform pos: -5.5,-154.5 parent: 2 - - uid: 2516 + - uid: 14564 components: - type: Transform pos: -5.5,-155.5 parent: 2 - - uid: 2517 + - uid: 14565 components: - type: Transform pos: -3.5,-154.5 parent: 2 - - uid: 2518 + - uid: 14566 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2519 + - uid: 14567 components: - type: Transform pos: -3.5,-155.5 parent: 2 - - uid: 2520 + - uid: 14568 components: - type: Transform pos: -2.5,-154.5 parent: 2 - - uid: 2521 + - uid: 14569 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 2523 + - uid: 14570 components: - type: Transform pos: -1.5,-153.5 parent: 2 - - uid: 2524 + - uid: 14571 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 2526 + - uid: 14572 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 2527 + - uid: 14573 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 2533 + - uid: 14574 components: - type: Transform pos: 2.5,-153.5 parent: 2 - - uid: 2545 + - uid: 14575 components: - type: Transform pos: 7.5,-154.5 parent: 2 - - uid: 2550 + - uid: 14576 components: - type: Transform pos: 6.5,-154.5 parent: 2 - - uid: 2551 + - uid: 14577 components: - type: Transform pos: 6.5,-155.5 parent: 2 - - uid: 2560 + - uid: 14578 components: - type: Transform pos: 6.5,-153.5 parent: 2 - - uid: 2561 + - uid: 14579 components: - type: Transform pos: 9.5,-152.5 parent: 2 - - uid: 2565 + - uid: 14580 components: - type: Transform pos: 9.5,-143.5 parent: 2 - - uid: 2566 + - uid: 14581 components: - type: Transform pos: 9.5,-149.5 parent: 2 - - uid: 2570 + - uid: 14582 components: - type: Transform pos: 9.5,-140.5 parent: 2 - - uid: 2573 + - uid: 14583 components: - type: Transform pos: 9.5,-142.5 parent: 2 - - uid: 2576 + - uid: 14584 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-246.5 parent: 2 - - uid: 2581 + - uid: 14585 components: - type: Transform pos: 8.5,-135.5 parent: 2 - - uid: 2583 + - uid: 14586 components: - type: Transform pos: 7.5,-134.5 parent: 2 - - uid: 2626 + - uid: 14587 components: - type: Transform pos: -5.5,-151.5 parent: 2 - - uid: 2702 + - uid: 14588 components: - type: Transform pos: 8.5,-153.5 parent: 2 - - uid: 2784 + - uid: 14589 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 2813 + - uid: 14590 components: - type: Transform pos: 8.5,-154.5 parent: 2 - - uid: 2814 + - uid: 14591 components: - type: Transform pos: 8.5,-152.5 parent: 2 - - uid: 2816 + - uid: 14592 components: - type: Transform pos: 6.5,-152.5 parent: 2 - - uid: 2825 + - uid: 14593 components: - type: Transform pos: 5.5,-116.5 parent: 2 - - uid: 2856 + - uid: 14594 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 2857 + - uid: 14595 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 2900 + - uid: 14596 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 2901 + - uid: 14597 components: - type: Transform pos: 2.5,-161.5 parent: 2 - - uid: 2902 + - uid: 14598 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 2904 + - uid: 14599 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 2905 + - uid: 14600 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 2922 + - uid: 14601 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-239.5 parent: 2 - - uid: 2928 + - uid: 14602 components: - type: Transform pos: 2.5,-180.5 parent: 2 - - uid: 2929 + - uid: 14603 components: - type: Transform pos: 1.5,-180.5 parent: 2 - - uid: 2932 + - uid: 14604 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 2933 + - uid: 14605 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 2934 + - uid: 14606 components: - type: Transform pos: 1.5,-182.5 parent: 2 - - uid: 2935 + - uid: 14607 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 2940 + - uid: 14608 components: - type: Transform pos: -12.5,-240.5 parent: 2 - - uid: 2956 + - uid: 14609 components: - type: Transform pos: -12.5,-239.5 parent: 2 - - uid: 2958 + - uid: 14610 components: - type: Transform pos: -5.5,-160.5 parent: 2 - - uid: 2963 + - uid: 14611 components: - type: Transform pos: -5.5,-161.5 parent: 2 - - uid: 2964 + - uid: 14612 components: - type: Transform pos: -2.5,-160.5 parent: 2 - - uid: 2965 + - uid: 14613 components: - type: Transform pos: -3.5,-160.5 parent: 2 - - uid: 2971 + - uid: 14614 components: - type: Transform pos: -6.5,-161.5 parent: 2 - - uid: 2978 + - uid: 14615 components: - type: Transform pos: -7.5,-164.5 parent: 2 - - uid: 2979 + - uid: 14616 components: - type: Transform pos: -7.5,-165.5 parent: 2 - - uid: 2980 + - uid: 14617 components: - type: Transform pos: -7.5,-169.5 parent: 2 - - uid: 2981 + - uid: 14618 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 2982 + - uid: 14619 components: - type: Transform pos: -8.5,-170.5 parent: 2 - - uid: 2985 + - uid: 14620 components: - type: Transform pos: -8.5,-177.5 parent: 2 - - uid: 2988 + - uid: 14621 components: - type: Transform pos: -7.5,-179.5 parent: 2 - - uid: 2990 + - uid: 14622 components: - type: Transform pos: 8.5,-165.5 parent: 2 - - uid: 2991 + - uid: 14623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-336.5 parent: 2 - - uid: 2992 + - uid: 14624 components: - type: Transform pos: -6.5,-180.5 parent: 2 - - uid: 2993 + - uid: 14625 components: - type: Transform pos: -5.5,-180.5 parent: 2 - - uid: 2994 + - uid: 14626 components: - type: Transform pos: 8.5,-169.5 parent: 2 - - uid: 2997 + - uid: 14627 components: - type: Transform pos: -15.5,-239.5 parent: 2 - - uid: 2998 + - uid: 14628 components: - type: Transform pos: 9.5,-170.5 parent: 2 - - uid: 2999 + - uid: 14629 components: - type: Transform pos: 9.5,-171.5 parent: 2 - - uid: 3000 + - uid: 14630 components: - type: Transform pos: 9.5,-172.5 parent: 2 - - uid: 3002 + - uid: 14631 components: - type: Transform pos: -3.5,-182.5 parent: 2 - - uid: 3003 + - uid: 14632 components: - type: Transform pos: -2.5,-181.5 parent: 2 - - uid: 3004 + - uid: 14633 components: - type: Transform pos: 9.5,-177.5 parent: 2 - - uid: 3006 + - uid: 14634 components: - type: Transform pos: 9.5,-179.5 parent: 2 - - uid: 3008 + - uid: 14635 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-338.5 parent: 2 - - uid: 3012 + - uid: 14636 components: - type: Transform pos: -12.5,-241.5 parent: 2 - - uid: 3014 + - uid: 14637 components: - type: Transform pos: -12.5,-242.5 parent: 2 - - uid: 3015 + - uid: 14638 components: - type: Transform pos: -12.5,-244.5 parent: 2 - - uid: 3019 + - uid: 14639 components: - type: Transform pos: -12.5,-262.5 parent: 2 - - uid: 3020 + - uid: 14640 components: - type: Transform pos: -12.5,-245.5 parent: 2 - - uid: 3024 + - uid: 14641 components: - type: Transform pos: -12.5,-247.5 parent: 2 - - uid: 3026 + - uid: 14642 components: - type: Transform pos: 3.5,-181.5 parent: 2 - - uid: 3037 + - uid: 14643 components: - type: Transform pos: 6.5,-182.5 parent: 2 - - uid: 3044 + - uid: 14644 components: - type: Transform pos: 6.5,-180.5 parent: 2 - - uid: 3051 + - uid: 14645 components: - type: Transform pos: 7.5,-180.5 parent: 2 - - uid: 3055 + - uid: 14646 components: - type: Transform pos: -12.5,-264.5 parent: 2 - - uid: 3058 + - uid: 14647 components: - type: Transform pos: -12.5,-246.5 parent: 2 - - uid: 3065 + - uid: 14648 components: - type: Transform pos: 7.5,-164.5 parent: 2 - - uid: 3078 + - uid: 14649 components: - type: Transform pos: 3.5,-160.5 parent: 2 - - uid: 3079 + - uid: 14650 components: - type: Transform pos: 4.5,-160.5 parent: 2 - - uid: 3080 + - uid: 14651 components: - type: Transform pos: 4.5,-161.5 parent: 2 - - uid: 3081 + - uid: 14652 components: - type: Transform pos: 6.5,-161.5 parent: 2 - - uid: 3082 + - uid: 14653 components: - type: Transform pos: 6.5,-160.5 parent: 2 - - uid: 3083 + - uid: 14654 components: - type: Transform pos: 7.5,-161.5 parent: 2 - - uid: 3101 + - uid: 14655 components: - type: Transform pos: -12.5,-249.5 parent: 2 - - uid: 3105 + - uid: 14656 components: - type: Transform pos: -12.5,-263.5 parent: 2 - - uid: 3115 + - uid: 14657 components: - type: Transform pos: -12.5,-259.5 parent: 2 - - uid: 3183 + - uid: 14658 components: - type: Transform pos: -19.5,-235.5 parent: 2 - - uid: 3195 + - uid: 14659 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 3208 + - uid: 14660 components: - type: Transform pos: -1.5,-162.5 parent: 2 - - uid: 3210 + - uid: 14661 components: - type: Transform pos: -18.5,-235.5 parent: 2 - - uid: 3220 + - uid: 14662 components: - type: Transform pos: 4.5,-187.5 parent: 2 - - uid: 3270 + - uid: 14663 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-223.5 parent: 2 - - uid: 3278 + - uid: 14664 components: - type: Transform pos: -0.5,-240.5 parent: 2 - - uid: 3539 + - uid: 14665 components: - type: Transform pos: -13.5,-239.5 parent: 2 - - uid: 3540 + - uid: 14666 components: - type: Transform pos: 4.5,-202.5 parent: 2 - - uid: 3542 + - uid: 14667 components: - type: Transform pos: 4.5,-201.5 parent: 2 - - uid: 3560 + - uid: 14668 components: - type: Transform pos: -3.5,-161.5 parent: 2 - - uid: 3606 + - uid: 14669 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-255.5 parent: 2 - - uid: 3651 + - uid: 14670 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 3652 + - uid: 14671 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 3654 + - uid: 14672 components: - type: Transform pos: -0.5,-186.5 parent: 2 - - uid: 3655 + - uid: 14673 components: - type: Transform pos: 1.5,-186.5 parent: 2 - - uid: 3657 + - uid: 14674 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 3658 + - uid: 14675 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 3659 + - uid: 14676 components: - type: Transform pos: 2.5,-188.5 parent: 2 - - uid: 3660 + - uid: 14677 components: - type: Transform pos: 1.5,-188.5 parent: 2 - - uid: 3661 + - uid: 14678 components: - type: Transform pos: -0.5,-188.5 parent: 2 - - uid: 3662 + - uid: 14679 components: - type: Transform pos: -1.5,-188.5 parent: 2 - - uid: 3667 + - uid: 14680 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 3669 + - uid: 14681 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-331.5 parent: 2 - - uid: 3718 + - uid: 14682 components: - type: Transform pos: 5.5,-229.5 parent: 2 - - uid: 3753 + - uid: 14683 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-247.5 parent: 2 - - uid: 3754 + - uid: 14684 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-248.5 parent: 2 - - uid: 3755 + - uid: 14685 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-248.5 parent: 2 - - uid: 3774 + - uid: 14686 components: - type: Transform pos: -4.5,-199.5 parent: 2 - - uid: 3794 + - uid: 14687 components: - type: Transform pos: -7.5,-194.5 parent: 2 - - uid: 3798 + - uid: 14688 components: - type: Transform pos: -7.5,-198.5 parent: 2 - - uid: 3799 + - uid: 14689 components: - type: Transform pos: -7.5,-199.5 parent: 2 - - uid: 3801 + - uid: 14690 components: - type: Transform pos: -6.5,-200.5 parent: 2 - - uid: 3804 + - uid: 14691 components: - type: Transform pos: -6.5,-203.5 parent: 2 - - uid: 3807 + - uid: 14692 components: - type: Transform pos: -6.5,-206.5 parent: 2 - - uid: 3811 + - uid: 14693 components: - type: Transform pos: -3.5,-207.5 parent: 2 - - uid: 3812 + - uid: 14694 components: - type: Transform pos: -3.5,-208.5 parent: 2 - - uid: 3813 + - uid: 14695 components: - type: Transform pos: -2.5,-208.5 parent: 2 - - uid: 3814 + - uid: 14696 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 3815 + - uid: 14697 components: - type: Transform pos: -1.5,-207.5 parent: 2 - - uid: 3816 + - uid: 14698 components: - type: Transform pos: -0.5,-207.5 parent: 2 - - uid: 3818 + - uid: 14699 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 3820 + - uid: 14700 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 3821 + - uid: 14701 components: - type: Transform pos: 2.5,-207.5 parent: 2 - - uid: 3822 + - uid: 14702 components: - type: Transform pos: 1.5,-207.5 parent: 2 - - uid: 3823 + - uid: 14703 components: - type: Transform pos: 1.5,-209.5 parent: 2 - - uid: 3824 + - uid: 14704 components: - type: Transform pos: 3.5,-208.5 parent: 2 - - uid: 3833 + - uid: 14705 components: - type: Transform pos: 7.5,-204.5 parent: 2 - - uid: 3834 + - uid: 14706 components: - type: Transform pos: 7.5,-203.5 parent: 2 - - uid: 3835 + - uid: 14707 components: - type: Transform pos: 7.5,-202.5 parent: 2 - - uid: 3841 + - uid: 14708 components: - type: Transform pos: 9.5,-148.5 parent: 2 - - uid: 3846 + - uid: 14709 components: - type: Transform pos: 7.5,-193.5 parent: 2 - - uid: 3847 + - uid: 14710 components: - type: Transform pos: 7.5,-192.5 parent: 2 - - uid: 3848 + - uid: 14711 components: - type: Transform pos: 7.5,-191.5 parent: 2 - - uid: 3855 + - uid: 14712 components: - type: Transform pos: -5.5,-203.5 parent: 2 - - uid: 3860 + - uid: 14713 components: - type: Transform pos: -4.5,-203.5 parent: 2 - - uid: 3861 + - uid: 14714 components: - type: Transform pos: -6.5,-199.5 parent: 2 - - uid: 3862 + - uid: 14715 components: - type: Transform pos: -5.5,-199.5 parent: 2 - - uid: 3863 + - uid: 14716 components: - type: Transform pos: -3.5,-199.5 parent: 2 - - uid: 3864 + - uid: 14717 components: - type: Transform pos: -3.5,-200.5 parent: 2 - - uid: 3865 + - uid: 14718 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 3866 + - uid: 14719 components: - type: Transform pos: -3.5,-206.5 parent: 2 - - uid: 3868 + - uid: 14720 components: - type: Transform pos: -4.5,-207.5 parent: 2 - - uid: 3877 + - uid: 14721 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-344.5 parent: 2 - - uid: 3903 + - uid: 14722 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 3936 + - uid: 14723 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 3994 + - uid: 14724 components: - type: Transform pos: 1.5,-240.5 parent: 2 - - uid: 4000 + - uid: 14725 components: - type: Transform pos: -0.5,-242.5 parent: 2 - - uid: 4022 + - uid: 14726 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-334.5 parent: 2 - - uid: 4086 + - uid: 14727 components: - type: Transform pos: -1.5,-232.5 parent: 2 - - uid: 4170 + - uid: 14728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 2 - - uid: 4203 + - uid: 14729 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-251.5 parent: 2 - - uid: 4204 + - uid: 14730 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-246.5 parent: 2 - - uid: 4205 + - uid: 14731 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-247.5 parent: 2 - - uid: 4210 + - uid: 14732 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-249.5 parent: 2 - - uid: 4245 + - uid: 14733 components: - type: Transform pos: 3.5,-232.5 parent: 2 - - uid: 4246 + - uid: 14734 components: - type: Transform pos: 2.5,-232.5 parent: 2 - - uid: 4247 + - uid: 14735 components: - type: Transform pos: 2.5,-231.5 parent: 2 - - uid: 4248 + - uid: 14736 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 4249 + - uid: 14737 components: - type: Transform pos: 2.5,-228.5 parent: 2 - - uid: 4250 + - uid: 14738 components: - type: Transform pos: 2.5,-227.5 parent: 2 - - uid: 4251 + - uid: 14739 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 4254 + - uid: 14740 components: - type: Transform pos: 2.5,-223.5 parent: 2 - - uid: 4255 + - uid: 14741 components: - type: Transform pos: 2.5,-222.5 parent: 2 - - uid: 4256 + - uid: 14742 components: - type: Transform pos: 2.5,-221.5 parent: 2 - - uid: 4257 + - uid: 14743 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4258 + - uid: 14744 components: - type: Transform pos: 2.5,-218.5 parent: 2 - - uid: 4260 + - uid: 14745 components: - type: Transform pos: 2.5,-217.5 parent: 2 - - uid: 4261 + - uid: 14746 components: - type: Transform pos: -1.5,-217.5 parent: 2 - - uid: 4262 + - uid: 14747 components: - type: Transform pos: -1.5,-218.5 parent: 2 - - uid: 4265 + - uid: 14748 components: - type: Transform pos: -1.5,-221.5 parent: 2 - - uid: 4266 + - uid: 14749 components: - type: Transform pos: -1.5,-222.5 parent: 2 - - uid: 4267 + - uid: 14750 components: - type: Transform pos: -1.5,-223.5 parent: 2 - - uid: 4270 + - uid: 14751 components: - type: Transform pos: -1.5,-226.5 parent: 2 - - uid: 4271 + - uid: 14752 components: - type: Transform pos: -1.5,-227.5 parent: 2 - - uid: 4272 + - uid: 14753 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 4273 + - uid: 14754 components: - type: Transform pos: -1.5,-229.5 parent: 2 - - uid: 4274 + - uid: 14755 components: - type: Transform pos: -1.5,-231.5 parent: 2 - - uid: 4275 + - uid: 14756 components: - type: Transform pos: -2.5,-232.5 parent: 2 - - uid: 4280 + - uid: 14757 components: - type: Transform pos: -4.5,-229.5 parent: 2 - - uid: 4281 + - uid: 14758 components: - type: Transform pos: -4.5,-228.5 parent: 2 - - uid: 4282 + - uid: 14759 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 4283 + - uid: 14760 components: - type: Transform pos: -2.5,-221.5 parent: 2 - - uid: 4285 + - uid: 14761 components: - type: Transform pos: -4.5,-221.5 parent: 2 - - uid: 4286 + - uid: 14762 components: - type: Transform pos: -4.5,-220.5 parent: 2 - - uid: 4291 + - uid: 14763 components: - type: Transform pos: -2.5,-217.5 parent: 2 - - uid: 4296 + - uid: 14764 components: - type: Transform pos: -1.5,-233.5 parent: 2 - - uid: 4299 + - uid: 14765 components: - type: Transform pos: 2.5,-233.5 parent: 2 - - uid: 4300 + - uid: 14766 components: - type: Transform pos: 1.5,-234.5 parent: 2 - - uid: 4301 + - uid: 14767 components: - type: Transform pos: 2.5,-234.5 parent: 2 - - uid: 4302 + - uid: 14768 components: - type: Transform pos: -0.5,-234.5 parent: 2 - - uid: 4303 + - uid: 14769 components: - type: Transform pos: -1.5,-234.5 parent: 2 - - uid: 4304 + - uid: 14770 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 4306 + - uid: 14771 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 4308 + - uid: 14772 components: - type: Transform pos: 1.5,-236.5 parent: 2 - - uid: 4309 + - uid: 14773 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 4310 + - uid: 14774 components: - type: Transform pos: 2.5,-216.5 parent: 2 - - uid: 4311 + - uid: 14775 components: - type: Transform pos: 2.5,-215.5 parent: 2 - - uid: 4313 + - uid: 14776 components: - type: Transform pos: 1.5,-215.5 parent: 2 - - uid: 4315 + - uid: 14777 components: - type: Transform pos: -0.5,-215.5 parent: 2 - - uid: 4316 + - uid: 14778 components: - type: Transform pos: -1.5,-216.5 parent: 2 - - uid: 4317 + - uid: 14779 components: - type: Transform pos: -1.5,-215.5 parent: 2 - - uid: 4318 + - uid: 14780 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 4320 + - uid: 14781 components: - type: Transform pos: -0.5,-213.5 parent: 2 - - uid: 4321 + - uid: 14782 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 4323 + - uid: 14783 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 4329 + - uid: 14784 components: - type: Transform pos: -2.5,-262.5 parent: 2 - - uid: 4528 + - uid: 14785 components: - type: Transform pos: -20.5,-239.5 parent: 2 - - uid: 4541 + - uid: 14786 components: - type: Transform pos: -1.5,-242.5 parent: 2 - - uid: 4542 + - uid: 14787 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 4543 + - uid: 14788 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 4544 + - uid: 14789 components: - type: Transform pos: 2.5,-242.5 parent: 2 - - uid: 4548 + - uid: 14790 components: - type: Transform pos: -3.5,-262.5 parent: 2 - - uid: 4551 + - uid: 14791 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 4572 + - uid: 14792 components: - type: Transform pos: 4.5,-241.5 parent: 2 - - uid: 4573 + - uid: 14793 components: - type: Transform pos: 3.5,-241.5 parent: 2 - - uid: 4575 + - uid: 14794 components: - type: Transform pos: 6.5,-241.5 parent: 2 - - uid: 4596 + - uid: 14795 components: - type: Transform pos: -3.5,-162.5 parent: 2 - - uid: 4616 + - uid: 14796 components: - type: Transform pos: 1.5,-263.5 parent: 2 - - uid: 4618 + - uid: 14797 components: - type: Transform pos: -5.5,-262.5 parent: 2 - - uid: 4619 + - uid: 14798 components: - type: Transform pos: -5.5,-263.5 parent: 2 - - uid: 4620 + - uid: 14799 components: - type: Transform pos: -3.5,-263.5 parent: 2 - - uid: 4621 + - uid: 14800 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 4624 + - uid: 14801 components: - type: Transform pos: 3.5,-262.5 parent: 2 - - uid: 4625 + - uid: 14802 components: - type: Transform pos: 4.5,-262.5 parent: 2 - - uid: 4627 + - uid: 14803 components: - type: Transform pos: 4.5,-263.5 parent: 2 - - uid: 4628 + - uid: 14804 components: - type: Transform pos: 6.5,-263.5 parent: 2 - - uid: 4629 + - uid: 14805 components: - type: Transform pos: 6.5,-262.5 parent: 2 - - uid: 4631 + - uid: 14806 components: - type: Transform pos: -2.5,-241.5 parent: 2 - - uid: 4632 + - uid: 14807 components: - type: Transform pos: -3.5,-241.5 parent: 2 - - uid: 4633 + - uid: 14808 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 4636 + - uid: 14809 components: - type: Transform pos: -5.5,-241.5 parent: 2 - - uid: 4637 + - uid: 14810 components: - type: Transform pos: -5.5,-242.5 parent: 2 - - uid: 4657 + - uid: 14811 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - - uid: 4675 + - uid: 14812 components: - type: Transform pos: -0.5,-263.5 parent: 2 - - uid: 4728 + - uid: 14813 components: - type: Transform pos: 4.5,-186.5 parent: 2 - - uid: 4755 + - uid: 14814 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 4869 + - uid: 14815 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 4870 + - uid: 14816 components: - type: Transform pos: 5.5,-241.5 parent: 2 - - uid: 4872 + - uid: 14817 components: - type: Transform pos: -20.5,-258.5 parent: 2 - - uid: 4890 + - uid: 14818 components: - type: Transform pos: -19.5,-258.5 parent: 2 - - uid: 4902 + - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-222.5 parent: 2 - - uid: 4976 + - uid: 14820 components: - type: Transform pos: -20.5,-254.5 parent: 2 - - uid: 4986 + - uid: 14821 components: - type: Transform pos: -22.5,-254.5 parent: 2 - - uid: 5007 + - uid: 14822 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 5008 + - uid: 14823 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-255.5 parent: 2 - - uid: 5009 + - uid: 14824 components: - type: Transform pos: -19.5,-250.5 parent: 2 - - uid: 5010 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-242.5 parent: 2 - - uid: 5011 + - uid: 14826 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-253.5 parent: 2 - - uid: 5013 + - uid: 14827 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-252.5 parent: 2 - - uid: 5015 + - uid: 14828 components: - type: Transform pos: -22.5,-255.5 parent: 2 - - uid: 5016 + - uid: 14829 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-257.5 parent: 2 - - uid: 5017 + - uid: 14830 components: - type: Transform pos: 19.5,-244.5 parent: 2 - - uid: 5030 + - uid: 14831 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 5031 + - uid: 14832 components: - type: Transform pos: -22.5,-251.5 parent: 2 - - uid: 5032 + - uid: 14833 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 5077 + - uid: 14834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - - uid: 5181 + - uid: 14835 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-336.5 parent: 2 - - uid: 5186 + - uid: 14836 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-261.5 parent: 2 - - uid: 5210 + - uid: 14837 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 5213 + - uid: 14838 components: - type: Transform pos: 6.5,-261.5 parent: 2 - - uid: 5214 + - uid: 14839 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-261.5 parent: 2 - - uid: 5278 + - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-256.5 parent: 2 - - uid: 5279 + - uid: 14841 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-256.5 parent: 2 - - uid: 5280 + - uid: 14842 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-245.5 parent: 2 - - uid: 5281 + - uid: 14843 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-244.5 parent: 2 - - uid: 5283 + - uid: 14844 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-244.5 parent: 2 - - uid: 5289 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-245.5 parent: 2 - - uid: 5290 + - uid: 14846 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-246.5 parent: 2 - - uid: 5313 + - uid: 14847 components: - type: Transform pos: 2.5,-261.5 parent: 2 - - uid: 5319 + - uid: 14848 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-242.5 parent: 2 - - uid: 5321 + - uid: 14849 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-264.5 parent: 2 - - uid: 5325 + - uid: 14850 components: - type: Transform pos: -1.5,-261.5 parent: 2 - - uid: 5326 + - uid: 14851 components: - type: Transform pos: -22.5,-257.5 parent: 2 - - uid: 5334 + - uid: 14852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-259.5 parent: 2 - - uid: 5335 + - uid: 14853 components: - type: Transform pos: -21.5,-258.5 parent: 2 - - uid: 5360 + - uid: 14854 components: - type: Transform pos: 14.5,-255.5 parent: 2 - - uid: 5361 + - uid: 14855 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-249.5 parent: 2 - - uid: 5419 + - uid: 14856 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-334.5 parent: 2 - - uid: 5421 + - uid: 14857 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-335.5 parent: 2 - - uid: 5459 + - uid: 14858 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5694 + - uid: 14859 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 5819 + - uid: 14860 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-112.5 parent: 2 - - uid: 5962 + - uid: 14861 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-240.5 parent: 2 - - uid: 6129 + - uid: 14862 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 6302 + - uid: 14863 components: - type: Transform pos: -10.5,-166.5 parent: 2 - - uid: 6393 + - uid: 14864 components: - type: Transform pos: 10.5,-116.5 parent: 2 - - uid: 6570 + - uid: 14865 components: - type: Transform pos: -6.5,-247.5 parent: 2 - - uid: 6674 + - uid: 14866 components: - type: Transform pos: -10.5,-257.5 parent: 2 - - uid: 6722 + - uid: 14867 components: - type: Transform pos: -22.5,-259.5 parent: 2 - - uid: 6732 + - uid: 14868 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 6733 + - uid: 14869 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-255.5 parent: 2 - - uid: 6734 + - uid: 14870 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-249.5 parent: 2 - - uid: 6735 + - uid: 14871 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-249.5 parent: 2 - - uid: 6739 + - uid: 14872 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-256.5 parent: 2 - - uid: 6740 + - uid: 14873 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-255.5 parent: 2 - - uid: 6741 + - uid: 14874 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6743 + - uid: 14875 components: - type: Transform pos: -10.5,-258.5 parent: 2 - - uid: 6763 + - uid: 14876 components: - type: Transform pos: -11.5,-258.5 parent: 2 - - uid: 6766 + - uid: 14877 components: - type: Transform pos: -12.5,-258.5 parent: 2 - - uid: 6776 + - uid: 14878 components: - type: Transform pos: -21.5,-266.5 parent: 2 - - uid: 6777 + - uid: 14879 components: - type: Transform pos: -21.5,-250.5 parent: 2 - - uid: 6801 + - uid: 14880 components: - type: Transform pos: -15.5,-236.5 parent: 2 - - uid: 6802 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-252.5 parent: 2 - - uid: 6803 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-253.5 parent: 2 - - uid: 6807 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-257.5 parent: 2 - - uid: 6808 + - uid: 14884 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-258.5 parent: 2 - - uid: 6809 + - uid: 14885 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-258.5 parent: 2 - - uid: 6810 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 6811 + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 6813 + - uid: 14888 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 6814 + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 6829 + - uid: 14890 components: - type: Transform pos: -10.5,-250.5 parent: 2 - - uid: 6899 + - uid: 14891 components: - type: Transform pos: -15.5,-238.5 parent: 2 - - uid: 6901 + - uid: 14892 components: - type: Transform pos: -22.5,-258.5 parent: 2 - - uid: 6903 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-169.5 parent: 2 - - uid: 7002 + - uid: 14894 components: - type: Transform pos: 4.5,-200.5 parent: 2 - - uid: 7189 + - uid: 14895 components: - type: Transform pos: -0.5,-200.5 parent: 2 - - uid: 7207 + - uid: 14896 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-333.5 parent: 2 - - uid: 7255 + - uid: 14897 components: - type: Transform pos: 9.5,-337.5 parent: 2 - - uid: 7270 + - uid: 14898 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 2 - - uid: 7286 + - uid: 14899 components: - type: Transform pos: 8.5,-163.5 parent: 2 - - uid: 7290 + - uid: 14900 components: - type: Transform pos: 8.5,-161.5 parent: 2 - - uid: 7307 + - uid: 14901 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 7318 + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-239.5 parent: 2 - - uid: 7418 + - uid: 14903 components: - type: Transform pos: 15.5,-238.5 parent: 2 - - uid: 7435 + - uid: 14904 components: - type: Transform pos: -19.5,-254.5 parent: 2 - - uid: 7437 + - uid: 14905 components: - type: Transform pos: -5.5,-306.5 parent: 2 - - uid: 7503 + - uid: 14906 components: - type: Transform pos: 19.5,-266.5 parent: 2 - - uid: 7535 + - uid: 14907 components: - type: Transform pos: 18.5,-266.5 parent: 2 - - uid: 7536 + - uid: 14908 components: - type: Transform pos: 14.5,-261.5 parent: 2 - - uid: 7537 + - uid: 14909 components: - type: Transform pos: 14.5,-265.5 parent: 2 - - uid: 7539 + - uid: 14910 components: - type: Transform pos: 14.5,-264.5 parent: 2 - - uid: 7540 + - uid: 14911 components: - type: Transform pos: 14.5,-257.5 parent: 2 - - uid: 7541 + - uid: 14912 components: - type: Transform pos: 14.5,-258.5 parent: 2 - - uid: 7542 + - uid: 14913 components: - type: Transform pos: 14.5,-263.5 parent: 2 - - uid: 7544 + - uid: 14914 components: - type: Transform pos: 14.5,-262.5 parent: 2 - - uid: 7545 + - uid: 14915 components: - type: Transform pos: 16.5,-244.5 parent: 2 - - uid: 7579 + - uid: 14916 components: - type: Transform pos: 20.5,-255.5 parent: 2 - - uid: 7588 + - uid: 14917 components: - type: Transform pos: 21.5,-251.5 parent: 2 - - uid: 7624 + - uid: 14918 components: - type: Transform pos: 21.5,-254.5 parent: 2 - - uid: 7668 + - uid: 14919 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-223.5 parent: 2 - - uid: 7723 + - uid: 14920 components: - type: Transform pos: 20.5,-254.5 parent: 2 - - uid: 7725 + - uid: 14921 components: - type: Transform pos: 21.5,-252.5 parent: 2 - - uid: 7726 + - uid: 14922 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-258.5 parent: 2 - - uid: 7728 + - uid: 14923 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-261.5 parent: 2 - - uid: 7736 + - uid: 14924 components: - type: Transform pos: -12.5,-237.5 parent: 2 - - uid: 7737 + - uid: 14925 components: - type: Transform pos: -12.5,-238.5 parent: 2 - - uid: 7740 + - uid: 14926 components: - type: Transform pos: -13.5,-235.5 parent: 2 - - uid: 7744 + - uid: 14927 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-244.5 parent: 2 - - uid: 7745 + - uid: 14928 components: - type: Transform pos: 20.5,-265.5 parent: 2 - - uid: 7748 + - uid: 14929 components: - type: Transform pos: 20.5,-263.5 parent: 2 - - uid: 7749 + - uid: 14930 components: - type: Transform pos: 9.5,-342.5 parent: 2 - - uid: 7750 + - uid: 14931 components: - type: Transform pos: 9.5,-341.5 parent: 2 - - uid: 7751 + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-243.5 parent: 2 - - uid: 7752 + - uid: 14933 components: - type: Transform pos: 21.5,-253.5 parent: 2 - - uid: 7757 + - uid: 14934 components: - type: Transform pos: 20.5,-244.5 parent: 2 - - uid: 7760 + - uid: 14935 components: - type: Transform pos: 21.5,-250.5 parent: 2 - - uid: 7761 + - uid: 14936 components: - type: Transform pos: 20.5,-250.5 parent: 2 - - uid: 7762 + - uid: 14937 components: - type: Transform pos: 20.5,-243.5 parent: 2 - - uid: 7763 + - uid: 14938 components: - type: Transform pos: 20.5,-247.5 parent: 2 - - uid: 7766 + - uid: 14939 components: - type: Transform pos: 20.5,-242.5 parent: 2 - - uid: 7767 + - uid: 14940 components: - type: Transform pos: 19.5,-262.5 parent: 2 - - uid: 7784 + - uid: 14941 components: - type: Transform pos: -8.5,-188.5 parent: 2 - - uid: 7787 + - uid: 14942 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-255.5 parent: 2 - - uid: 7803 + - uid: 14943 components: - type: Transform pos: 20.5,-249.5 parent: 2 - - uid: 7808 + - uid: 14944 components: - type: Transform pos: -22.5,-253.5 parent: 2 - - uid: 7838 + - uid: 14945 components: - type: Transform pos: 14.5,-239.5 parent: 2 - - uid: 7841 + - uid: 14946 components: - type: Transform pos: 19.5,-238.5 parent: 2 - - uid: 7859 + - uid: 14947 components: - type: Transform pos: -21.5,-254.5 parent: 2 - - uid: 7861 + - uid: 14948 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-244.5 parent: 2 - - uid: 7877 + - uid: 14949 components: - type: Transform pos: 14.5,-259.5 parent: 2 - - uid: 7886 + - uid: 14950 components: - type: Transform pos: -7.5,-188.5 parent: 2 - - uid: 7895 + - uid: 14951 components: - type: Transform pos: -22.5,-256.5 parent: 2 - - uid: 7901 + - uid: 14952 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 7902 + - uid: 14953 components: - type: Transform pos: -7.5,-192.5 parent: 2 - - uid: 7912 + - uid: 14954 components: - type: Transform pos: 15.5,-244.5 parent: 2 - - uid: 7913 + - uid: 14955 components: - type: Transform pos: 20.5,-262.5 parent: 2 - - uid: 7914 + - uid: 14956 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 7923 + - uid: 14957 components: - type: Transform pos: 14.5,-244.5 parent: 2 - - uid: 7927 + - uid: 14958 components: - type: Transform pos: 14.5,-247.5 parent: 2 - - uid: 7936 + - uid: 14959 components: - type: Transform pos: 20.5,-248.5 parent: 2 - - uid: 7950 + - uid: 14960 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-160.5 parent: 2 - - uid: 7954 + - uid: 14961 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 7967 + - uid: 14962 components: - type: Transform pos: -18.5,-248.5 parent: 2 - - uid: 7998 + - uid: 14963 components: - type: Transform pos: -7.5,-168.5 parent: 2 - - uid: 8004 + - uid: 14964 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-252.5 parent: 2 - - uid: 8005 + - uid: 14965 components: - type: Transform pos: -19.5,-248.5 parent: 2 - - uid: 8006 + - uid: 14966 components: - type: Transform pos: 20.5,-261.5 parent: 2 - - uid: 8008 + - uid: 14967 components: - type: Transform pos: -7.5,-166.5 parent: 2 - - uid: 8021 + - uid: 14968 components: - type: Transform pos: 15.5,-266.5 parent: 2 - - uid: 8024 + - uid: 14969 components: - type: Transform pos: 5.5,-181.5 parent: 2 - - uid: 8054 + - uid: 14970 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-253.5 parent: 2 - - uid: 8055 + - uid: 14971 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-252.5 parent: 2 - - uid: 8056 + - uid: 14972 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-252.5 parent: 2 - - uid: 8104 + - uid: 14973 components: - type: Transform pos: -8.5,-250.5 parent: 2 - - uid: 8118 + - uid: 14974 components: - type: Transform pos: 15.5,-262.5 parent: 2 - - uid: 8120 + - uid: 14975 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8121 + - uid: 14976 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-249.5 parent: 2 - - uid: 8124 + - uid: 14977 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-251.5 parent: 2 - - uid: 8128 + - uid: 14978 components: - type: Transform pos: 17.5,-266.5 parent: 2 - - uid: 8131 + - uid: 14979 components: - type: Transform pos: 16.5,-266.5 parent: 2 - - uid: 8147 + - uid: 14980 components: - type: Transform pos: -20.5,-248.5 parent: 2 - - uid: 8149 + - uid: 14981 components: - type: Transform pos: 8.5,-341.5 parent: 2 - - uid: 8153 + - uid: 14982 components: - type: Transform pos: -12.5,-235.5 parent: 2 - - uid: 8154 + - uid: 14983 components: - type: Transform pos: -0.5,-204.5 parent: 2 - - uid: 8155 + - uid: 14984 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 8156 + - uid: 14985 components: - type: Transform pos: 2.5,-204.5 parent: 2 - - uid: 8158 + - uid: 14986 components: - type: Transform pos: 0.5,-204.5 parent: 2 - - uid: 8180 + - uid: 14987 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-254.5 parent: 2 - - uid: 8196 + - uid: 14988 components: - type: Transform pos: -1.5,-201.5 parent: 2 - - uid: 8200 + - uid: 14989 components: - type: Transform pos: -9.5,-192.5 parent: 2 - - uid: 8215 + - uid: 14990 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-252.5 parent: 2 - - uid: 8323 + - uid: 14991 components: - type: Transform pos: -1.5,-202.5 parent: 2 - - uid: 8346 + - uid: 14992 components: - type: Transform pos: -1.5,-203.5 parent: 2 - - uid: 8347 + - uid: 14993 components: - type: Transform pos: -1.5,-204.5 parent: 2 - - uid: 8370 + - uid: 14994 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-252.5 parent: 2 - - uid: 8374 + - uid: 14995 components: - type: Transform pos: -3.5,-188.5 parent: 2 - - uid: 8376 + - uid: 14996 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 8406 + - uid: 14997 components: - type: Transform pos: 14.5,-241.5 parent: 2 - - uid: 8456 + - uid: 14998 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-254.5 parent: 2 - - uid: 8461 + - uid: 14999 components: - type: Transform pos: 4.5,-203.5 parent: 2 - - uid: 8468 + - uid: 15000 components: - type: Transform pos: 4.5,-204.5 parent: 2 - - uid: 8469 + - uid: 15001 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 8477 + - uid: 15002 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-310.5 parent: 2 - - uid: 8491 + - uid: 15003 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-277.5 parent: 2 - - uid: 8493 + - uid: 15004 components: - type: Transform pos: 9.5,-287.5 parent: 2 - - uid: 8513 + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-253.5 parent: 2 - - uid: 8515 + - uid: 15006 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-255.5 parent: 2 - - uid: 8524 + - uid: 15007 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 8539 + - uid: 15008 components: - type: Transform pos: 9.5,-286.5 parent: 2 - - uid: 8543 + - uid: 15009 components: - type: Transform pos: -7.5,-269.5 parent: 2 - - uid: 8544 + - uid: 15010 components: - type: Transform pos: -7.5,-270.5 parent: 2 - - uid: 8548 + - uid: 15011 components: - type: Transform pos: -5.5,-269.5 parent: 2 - - uid: 8550 + - uid: 15012 components: - type: Transform pos: -8.5,-275.5 parent: 2 - - uid: 8551 + - uid: 15013 components: - type: Transform pos: -6.5,-276.5 parent: 2 - - uid: 8556 + - uid: 15014 components: - type: Transform pos: -8.5,-271.5 parent: 2 - - uid: 8557 + - uid: 15015 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 8563 + - uid: 15016 components: - type: Transform pos: -7.5,-276.5 parent: 2 - - uid: 8564 + - uid: 15017 components: - type: Transform pos: -5.5,-268.5 parent: 2 - - uid: 8565 + - uid: 15018 components: - type: Transform pos: -8.5,-270.5 parent: 2 - - uid: 8567 + - uid: 15019 components: - type: Transform pos: -8.5,-276.5 parent: 2 - - uid: 8568 + - uid: 15020 components: - type: Transform pos: -4.5,-268.5 parent: 2 - - uid: 8569 + - uid: 15021 components: - type: Transform pos: -3.5,-268.5 parent: 2 - - uid: 8570 + - uid: 15022 components: - type: Transform pos: -2.5,-268.5 parent: 2 - - uid: 8571 + - uid: 15023 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 8572 + - uid: 15024 components: - type: Transform pos: -1.5,-269.5 parent: 2 - - uid: 8573 + - uid: 15025 components: - type: Transform pos: -0.5,-269.5 parent: 2 - - uid: 8574 + - uid: 15026 components: - type: Transform pos: 1.5,-269.5 parent: 2 - - uid: 8575 + - uid: 15027 components: - type: Transform pos: 2.5,-269.5 parent: 2 - - uid: 8576 + - uid: 15028 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 8577 + - uid: 15029 components: - type: Transform pos: 1.5,-267.5 parent: 2 - - uid: 8578 + - uid: 15030 components: - type: Transform pos: -0.5,-267.5 parent: 2 - - uid: 8588 + - uid: 15031 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-281.5 parent: 2 - - uid: 8589 + - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-282.5 parent: 2 - - uid: 8590 + - uid: 15033 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-282.5 parent: 2 - - uid: 8591 + - uid: 15034 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-283.5 parent: 2 - - uid: 8592 + - uid: 15035 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-287.5 parent: 2 - - uid: 8593 + - uid: 15036 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-288.5 parent: 2 - - uid: 8594 + - uid: 15037 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-288.5 parent: 2 - - uid: 8595 + - uid: 15038 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-289.5 parent: 2 - - uid: 8596 + - uid: 15039 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-289.5 parent: 2 - - uid: 8599 + - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-289.5 parent: 2 - - uid: 8600 + - uid: 15041 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-289.5 parent: 2 - - uid: 8601 + - uid: 15042 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 8604 + - uid: 15043 components: - type: Transform pos: 14.5,-242.5 parent: 2 - - uid: 8605 + - uid: 15044 components: - type: Transform pos: -7.5,-310.5 parent: 2 - - uid: 8611 + - uid: 15045 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-252.5 parent: 2 - - uid: 8617 + - uid: 15046 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-257.5 parent: 2 - - uid: 8655 + - uid: 15047 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-288.5 parent: 2 - - uid: 8677 + - uid: 15048 components: - type: Transform pos: -18.5,-250.5 parent: 2 - - uid: 8679 + - uid: 15049 components: - type: Transform pos: 3.5,-200.5 parent: 2 - - uid: 8698 + - uid: 15050 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - - uid: 8700 + - uid: 15051 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-288.5 parent: 2 - - uid: 8702 + - uid: 15052 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-288.5 parent: 2 - - uid: 8703 + - uid: 15053 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-288.5 parent: 2 - - uid: 8704 + - uid: 15054 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-290.5 parent: 2 - - uid: 8705 + - uid: 15055 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-290.5 parent: 2 - - uid: 8706 + - uid: 15056 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-289.5 parent: 2 - - uid: 8707 + - uid: 15057 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-289.5 parent: 2 - - uid: 8709 + - uid: 15058 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-290.5 parent: 2 - - uid: 8710 + - uid: 15059 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-290.5 parent: 2 - - uid: 8712 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-289.5 parent: 2 - - uid: 8713 + - uid: 15061 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-288.5 parent: 2 - - uid: 8714 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-288.5 parent: 2 - - uid: 8715 + - uid: 15063 components: - type: Transform pos: 9.5,-285.5 parent: 2 - - uid: 8716 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - - uid: 8717 + - uid: 15065 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-285.5 parent: 2 - - uid: 8718 + - uid: 15066 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - - uid: 8719 + - uid: 15067 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - - uid: 8720 + - uid: 15068 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - - uid: 8721 + - uid: 15069 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-286.5 parent: 2 - - uid: 8722 + - uid: 15070 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-286.5 parent: 2 - - uid: 8723 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-286.5 parent: 2 - - uid: 8724 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-285.5 parent: 2 - - uid: 8725 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - - uid: 8726 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-283.5 parent: 2 - - uid: 8727 + - uid: 15075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-283.5 parent: 2 - - uid: 8729 + - uid: 15076 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-283.5 parent: 2 - - uid: 8732 + - uid: 15077 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - - uid: 8733 + - uid: 15078 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - - uid: 8734 + - uid: 15079 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-282.5 parent: 2 - - uid: 8736 + - uid: 15080 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-282.5 parent: 2 - - uid: 8738 + - uid: 15081 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-274.5 parent: 2 - - uid: 8744 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-276.5 parent: 2 - - uid: 8745 + - uid: 15083 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-276.5 parent: 2 - - uid: 8746 + - uid: 15084 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-275.5 parent: 2 - - uid: 8748 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-275.5 parent: 2 - - uid: 8749 + - uid: 15086 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-275.5 parent: 2 - - uid: 8750 + - uid: 15087 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-275.5 parent: 2 - - uid: 8751 + - uid: 15088 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-274.5 parent: 2 - - uid: 8752 + - uid: 15089 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-273.5 parent: 2 - - uid: 8753 + - uid: 15090 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 8754 + - uid: 15091 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-271.5 parent: 2 - - uid: 8755 + - uid: 15092 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-270.5 parent: 2 - - uid: 8756 + - uid: 15093 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-269.5 parent: 2 - - uid: 8757 + - uid: 15094 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-269.5 parent: 2 - - uid: 8758 + - uid: 15095 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-269.5 parent: 2 - - uid: 8759 + - uid: 15096 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-268.5 parent: 2 - - uid: 8760 + - uid: 15097 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-268.5 parent: 2 - - uid: 8761 + - uid: 15098 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-268.5 parent: 2 - - uid: 8770 + - uid: 15099 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-282.5 parent: 2 - - uid: 8774 + - uid: 15100 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-276.5 parent: 2 - - uid: 8781 + - uid: 15101 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-274.5 parent: 2 - - uid: 8807 + - uid: 15102 components: - type: Transform pos: -6.5,-188.5 parent: 2 - - uid: 8808 + - uid: 15103 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-271.5 parent: 2 - - uid: 8811 + - uid: 15104 components: - type: Transform pos: -5.5,-188.5 parent: 2 - - uid: 8851 + - uid: 15105 components: - type: Transform pos: -9.5,-188.5 parent: 2 - - uid: 8867 + - uid: 15106 components: - type: Transform pos: 9.5,-284.5 parent: 2 - - uid: 8898 + - uid: 15107 components: - type: Transform pos: -22.5,-250.5 parent: 2 - - uid: 8900 + - uid: 15108 components: - type: Transform pos: -12.5,-261.5 parent: 2 - - uid: 8904 + - uid: 15109 components: - type: Transform pos: -7.5,-149.5 parent: 2 - - uid: 8910 + - uid: 15110 components: - type: Transform pos: 14.5,-240.5 parent: 2 - - uid: 8942 + - uid: 15111 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-262.5 parent: 2 - - uid: 8969 + - uid: 15112 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-256.5 parent: 2 - - uid: 9020 + - uid: 15113 components: - type: Transform pos: 8.5,-288.5 parent: 2 - - uid: 9021 + - uid: 15114 components: - type: Transform pos: 9.5,-288.5 parent: 2 - - uid: 9087 + - uid: 15115 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-249.5 parent: 2 - - uid: 9366 + - uid: 15116 components: - type: Transform pos: 1.5,-294.5 parent: 2 - - uid: 9367 + - uid: 15117 components: - type: Transform pos: -0.5,-294.5 parent: 2 - - uid: 9368 + - uid: 15118 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 9369 + - uid: 15119 components: - type: Transform pos: 2.5,-296.5 parent: 2 - - uid: 9370 + - uid: 15120 components: - type: Transform pos: -1.5,-296.5 parent: 2 - - uid: 9371 + - uid: 15121 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 9372 + - uid: 15122 components: - type: Transform pos: -0.5,-296.5 parent: 2 - - uid: 9373 + - uid: 15123 components: - type: Transform pos: 1.5,-296.5 parent: 2 - - uid: 9380 + - uid: 15124 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-295.5 parent: 2 - - uid: 9381 + - uid: 15125 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-295.5 parent: 2 - - uid: 9382 + - uid: 15126 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-295.5 parent: 2 - - uid: 9383 + - uid: 15127 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-294.5 parent: 2 - - uid: 9384 + - uid: 15128 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-295.5 parent: 2 - - uid: 9387 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-295.5 parent: 2 - - uid: 9389 + - uid: 15130 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-295.5 parent: 2 - - uid: 9390 + - uid: 15131 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-294.5 parent: 2 - - uid: 9401 + - uid: 15132 components: - type: Transform pos: -10.5,-338.5 parent: 2 - - uid: 9402 + - uid: 15133 components: - type: Transform pos: -10.5,-340.5 parent: 2 - - uid: 9403 + - uid: 15134 components: - type: Transform pos: -10.5,-337.5 parent: 2 - - uid: 9404 + - uid: 15135 components: - type: Transform pos: -9.5,-343.5 parent: 2 - - uid: 9405 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-343.5 parent: 2 - - uid: 9406 + - uid: 15137 components: - type: Transform pos: -10.5,-342.5 parent: 2 - - uid: 9414 + - uid: 15138 components: - type: Transform pos: -9.5,-341.5 parent: 2 - - uid: 9415 + - uid: 15139 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-336.5 parent: 2 - - uid: 9417 + - uid: 15140 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-335.5 parent: 2 - - uid: 9463 + - uid: 15141 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-332.5 parent: 2 - - uid: 9473 + - uid: 15142 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-334.5 parent: 2 - - uid: 9475 + - uid: 15143 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-343.5 parent: 2 - - uid: 9476 + - uid: 15144 components: - type: Transform pos: 4.5,-341.5 parent: 2 - - uid: 9720 + - uid: 15145 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-296.5 parent: 2 - - uid: 9722 + - uid: 15146 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-296.5 parent: 2 - - uid: 9723 + - uid: 15147 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-295.5 parent: 2 - - uid: 9724 + - uid: 15148 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-296.5 parent: 2 - - uid: 9725 + - uid: 15149 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-296.5 parent: 2 - - uid: 9726 + - uid: 15150 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-296.5 parent: 2 - - uid: 9727 + - uid: 15151 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-296.5 parent: 2 - - uid: 9728 + - uid: 15152 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-296.5 parent: 2 - - uid: 9732 + - uid: 15153 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-300.5 parent: 2 - - uid: 9735 + - uid: 15154 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-300.5 parent: 2 - - uid: 9736 + - uid: 15155 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-301.5 parent: 2 - - uid: 9737 + - uid: 15156 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-302.5 parent: 2 - - uid: 9738 + - uid: 15157 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-303.5 parent: 2 - - uid: 9739 + - uid: 15158 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-304.5 parent: 2 - - uid: 9740 + - uid: 15159 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-305.5 parent: 2 - - uid: 9741 + - uid: 15160 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-305.5 parent: 2 - - uid: 9742 + - uid: 15161 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-262.5 parent: 2 - - uid: 9745 + - uid: 15162 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-310.5 parent: 2 - - uid: 9746 + - uid: 15163 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-308.5 parent: 2 - - uid: 9749 + - uid: 15164 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-309.5 parent: 2 - - uid: 9750 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-309.5 parent: 2 - - uid: 9751 + - uid: 15166 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-311.5 parent: 2 - - uid: 9752 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-312.5 parent: 2 - - uid: 9753 + - uid: 15168 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-313.5 parent: 2 - - uid: 9754 + - uid: 15169 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-314.5 parent: 2 - - uid: 9758 + - uid: 15170 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-318.5 parent: 2 - - uid: 9759 + - uid: 15171 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-319.5 parent: 2 - - uid: 9760 + - uid: 15172 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-310.5 parent: 2 - - uid: 9761 + - uid: 15173 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-319.5 parent: 2 - - uid: 9762 + - uid: 15174 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-319.5 parent: 2 - - uid: 9763 + - uid: 15175 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-319.5 parent: 2 - - uid: 9764 + - uid: 15176 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-319.5 parent: 2 - - uid: 9765 + - uid: 15177 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-320.5 parent: 2 - - uid: 9766 + - uid: 15178 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-320.5 parent: 2 - - uid: 9767 + - uid: 15179 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-321.5 parent: 2 - - uid: 9768 + - uid: 15180 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-322.5 parent: 2 - - uid: 9772 + - uid: 15181 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-320.5 parent: 2 - - uid: 9773 + - uid: 15182 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-321.5 parent: 2 - - uid: 9774 + - uid: 15183 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-322.5 parent: 2 - - uid: 9778 + - uid: 15184 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-321.5 parent: 2 - - uid: 9779 + - uid: 15185 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-321.5 parent: 2 - - uid: 9780 + - uid: 15186 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-320.5 parent: 2 - - uid: 9781 + - uid: 15187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-320.5 parent: 2 - - uid: 9782 + - uid: 15188 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - - uid: 9783 + - uid: 15189 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-320.5 parent: 2 - - uid: 9784 + - uid: 15190 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-321.5 parent: 2 - - uid: 9785 + - uid: 15191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 9786 + - uid: 15192 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-322.5 parent: 2 - - uid: 9787 + - uid: 15193 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-321.5 parent: 2 - - uid: 9788 + - uid: 15194 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-321.5 parent: 2 - - uid: 9789 + - uid: 15195 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 9792 + - uid: 15196 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-321.5 parent: 2 - - uid: 9793 + - uid: 15197 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-320.5 parent: 2 - - uid: 9794 + - uid: 15198 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-320.5 parent: 2 - - uid: 9795 + - uid: 15199 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-320.5 parent: 2 - - uid: 9801 + - uid: 15200 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-316.5 parent: 2 - - uid: 9802 + - uid: 15201 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-316.5 parent: 2 - - uid: 9804 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-310.5 parent: 2 - - uid: 9805 + - uid: 15203 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-311.5 parent: 2 - - uid: 9806 + - uid: 15204 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-312.5 parent: 2 - - uid: 9807 + - uid: 15205 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-312.5 parent: 2 - - uid: 9810 + - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-312.5 parent: 2 - - uid: 9811 + - uid: 15207 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-316.5 parent: 2 - - uid: 9812 + - uid: 15208 components: - type: Transform pos: -8.5,-306.5 parent: 2 - - uid: 9820 + - uid: 15209 components: - type: Transform pos: -8.5,-192.5 parent: 2 - - uid: 9833 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-298.5 parent: 2 - - uid: 9834 + - uid: 15211 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-297.5 parent: 2 - - uid: 9835 + - uid: 15212 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-296.5 parent: 2 - - uid: 9836 + - uid: 15213 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-296.5 parent: 2 - - uid: 9837 + - uid: 15214 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-296.5 parent: 2 - - uid: 9838 + - uid: 15215 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-296.5 parent: 2 - - uid: 9839 + - uid: 15216 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-295.5 parent: 2 - - uid: 9840 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-298.5 parent: 2 - - uid: 9841 + - uid: 15218 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-298.5 parent: 2 - - uid: 9842 + - uid: 15219 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-298.5 parent: 2 - - uid: 9843 + - uid: 15220 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-298.5 parent: 2 - - uid: 9844 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - - uid: 9845 + - uid: 15222 components: - type: Transform pos: 8.5,-241.5 parent: 2 - - uid: 9849 + - uid: 15223 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-301.5 parent: 2 - - uid: 9858 + - uid: 15224 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 9860 + - uid: 15225 components: - type: Transform pos: -8.5,-251.5 parent: 2 - - uid: 9862 + - uid: 15226 components: - type: Transform pos: -6.5,-306.5 parent: 2 - - uid: 9863 + - uid: 15227 components: - type: Transform pos: -7.5,-306.5 parent: 2 - - uid: 9866 + - uid: 15228 components: - type: Transform pos: -10.5,-305.5 parent: 2 - - uid: 9868 + - uid: 15229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-305.5 parent: 2 - - uid: 9875 + - uid: 15230 components: - type: Transform pos: -9.5,-306.5 parent: 2 - - uid: 9876 + - uid: 15231 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-305.5 parent: 2 - - uid: 9877 + - uid: 15232 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-304.5 parent: 2 - - uid: 9878 + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-303.5 parent: 2 - - uid: 9879 + - uid: 15234 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-302.5 parent: 2 - - uid: 9880 + - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-301.5 parent: 2 - - uid: 9881 + - uid: 15236 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-300.5 parent: 2 - - uid: 9882 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-299.5 parent: 2 - - uid: 9883 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-298.5 parent: 2 - - uid: 9884 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-298.5 parent: 2 - - uid: 9885 + - uid: 15240 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-298.5 parent: 2 - - uid: 9886 + - uid: 15241 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-298.5 parent: 2 - - uid: 9887 + - uid: 15242 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-298.5 parent: 2 - - uid: 9888 + - uid: 15243 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-298.5 parent: 2 - - uid: 9889 + - uid: 15244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-298.5 parent: 2 - - uid: 9890 + - uid: 15245 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-299.5 parent: 2 - - uid: 9891 + - uid: 15246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-300.5 parent: 2 - - uid: 9892 + - uid: 15247 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-301.5 parent: 2 - - uid: 9893 + - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 9894 + - uid: 15249 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-303.5 parent: 2 - - uid: 9896 + - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-315.5 parent: 2 - - uid: 9897 + - uid: 15251 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-305.5 parent: 2 - - uid: 9898 + - uid: 15252 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-305.5 parent: 2 - - uid: 9900 + - uid: 15253 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-309.5 parent: 2 - - uid: 9901 + - uid: 15254 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-309.5 parent: 2 - - uid: 9909 + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-315.5 parent: 2 - - uid: 9910 + - uid: 15256 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-316.5 parent: 2 - - uid: 9911 + - uid: 15257 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 9912 + - uid: 15258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-318.5 parent: 2 - - uid: 9914 + - uid: 15259 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-317.5 parent: 2 - - uid: 9915 + - uid: 15260 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-317.5 parent: 2 - - uid: 9916 + - uid: 15261 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 9918 + - uid: 15262 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-317.5 parent: 2 - - uid: 9919 + - uid: 15263 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-317.5 parent: 2 - - uid: 9920 + - uid: 15264 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-317.5 parent: 2 - - uid: 9921 + - uid: 15265 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-316.5 parent: 2 - - uid: 9922 + - uid: 15266 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-315.5 parent: 2 - - uid: 9923 + - uid: 15267 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-314.5 parent: 2 - - uid: 9924 + - uid: 15268 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-314.5 parent: 2 - - uid: 9925 + - uid: 15269 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-313.5 parent: 2 - - uid: 9926 + - uid: 15270 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-312.5 parent: 2 - - uid: 9927 + - uid: 15271 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-311.5 parent: 2 - - uid: 9928 + - uid: 15272 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-310.5 parent: 2 - - uid: 9929 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-309.5 parent: 2 - - uid: 9930 + - uid: 15274 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-309.5 parent: 2 - - uid: 9931 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-319.5 parent: 2 - - uid: 9933 + - uid: 15276 components: - type: Transform pos: -1.5,-318.5 parent: 2 - - uid: 9934 + - uid: 15277 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-316.5 parent: 2 - - uid: 9939 + - uid: 15278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-311.5 parent: 2 - - uid: 10005 + - uid: 15279 components: - type: Transform pos: -7.5,-298.5 parent: 2 - - uid: 10013 + - uid: 15280 components: - type: Transform pos: 8.5,-360.5 parent: 2 - - uid: 10015 + - uid: 15281 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-313.5 parent: 2 - - uid: 10034 + - uid: 15282 components: - type: Transform pos: -7.5,-305.5 parent: 2 - - uid: 10036 + - uid: 15283 components: - type: Transform pos: -4.5,-310.5 parent: 2 - - uid: 10040 + - uid: 15284 components: - type: Transform pos: -4.5,-306.5 parent: 2 - - uid: 10045 + - uid: 15285 components: - type: Transform pos: -2.5,-310.5 parent: 2 - - uid: 10046 + - uid: 15286 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 10050 + - uid: 15287 components: - type: Transform pos: -10.5,-301.5 parent: 2 - - uid: 10052 + - uid: 15288 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-306.5 parent: 2 - - uid: 10053 + - uid: 15289 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 10058 + - uid: 15290 components: - type: Transform pos: -10.5,-306.5 parent: 2 - - uid: 10086 + - uid: 15291 components: - type: Transform pos: -7.5,-346.5 parent: 2 - - uid: 10099 + - uid: 15292 components: - type: Transform pos: -1.5,-305.5 parent: 2 - - uid: 10102 + - uid: 15293 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-299.5 parent: 2 - - uid: 10135 + - uid: 15294 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-298.5 parent: 2 - - uid: 10167 + - uid: 15295 components: - type: Transform pos: -8.5,-298.5 parent: 2 - - uid: 10278 + - uid: 15296 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-317.5 parent: 2 - - uid: 10476 + - uid: 15297 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 10553 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-327.5 parent: 2 - - uid: 10584 + - uid: 15299 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 10585 + - uid: 15300 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 10587 + - uid: 15301 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10588 + - uid: 15302 components: - type: Transform pos: 2.5,-328.5 parent: 2 - - uid: 10589 + - uid: 15303 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 10590 + - uid: 15304 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 10591 + - uid: 15305 components: - type: Transform pos: -1.5,-328.5 parent: 2 - - uid: 10592 + - uid: 15306 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10593 + - uid: 15307 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 10633 + - uid: 15308 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-346.5 parent: 2 - - uid: 10635 + - uid: 15309 components: - type: Transform pos: 7.5,-332.5 parent: 2 - - uid: 10637 + - uid: 15310 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 10638 + - uid: 15311 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - - uid: 10640 + - uid: 15312 components: - type: Transform pos: -5.5,-328.5 parent: 2 - - uid: 10641 + - uid: 15313 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 10642 + - uid: 15314 components: - type: Transform pos: -6.5,-328.5 parent: 2 - - uid: 10643 + - uid: 15315 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - - uid: 10645 + - uid: 15316 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - - uid: 10647 + - uid: 15317 components: - type: Transform pos: 1.5,-349.5 parent: 2 - - uid: 10648 + - uid: 15318 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-327.5 parent: 2 - - uid: 10650 + - uid: 15319 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-327.5 parent: 2 - - uid: 10652 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-328.5 parent: 2 - - uid: 10653 + - uid: 15321 components: - type: Transform pos: 6.5,-344.5 parent: 2 - - uid: 10654 + - uid: 15322 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-326.5 parent: 2 - - uid: 10656 + - uid: 15323 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - - uid: 10660 + - uid: 15324 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-334.5 parent: 2 - - uid: 10661 + - uid: 15325 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-334.5 parent: 2 - - uid: 10662 + - uid: 15326 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - - uid: 10663 + - uid: 15327 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-334.5 parent: 2 - - uid: 10664 + - uid: 15328 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - - uid: 10665 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-334.5 parent: 2 - - uid: 10666 + - uid: 15330 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - - uid: 10667 + - uid: 15331 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-330.5 parent: 2 - - uid: 10668 + - uid: 15332 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - - uid: 10669 + - uid: 15333 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-334.5 parent: 2 - - uid: 10670 + - uid: 15334 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - - uid: 10671 + - uid: 15335 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-334.5 parent: 2 - - uid: 10672 + - uid: 15336 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-329.5 parent: 2 - - uid: 10679 + - uid: 15337 components: - type: Transform pos: -9.5,-339.5 parent: 2 - - uid: 10684 + - uid: 15338 components: - type: Transform pos: -9.5,-337.5 parent: 2 - - uid: 10685 + - uid: 15339 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-344.5 parent: 2 - - uid: 10686 + - uid: 15340 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-343.5 parent: 2 - - uid: 10687 + - uid: 15341 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-344.5 parent: 2 - - uid: 10688 + - uid: 15342 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-346.5 parent: 2 - - uid: 10689 + - uid: 15343 components: - type: Transform pos: 9.5,-338.5 parent: 2 - - uid: 10693 + - uid: 15344 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-335.5 parent: 2 - - uid: 10697 + - uid: 15345 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-343.5 parent: 2 - - uid: 10699 + - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-344.5 parent: 2 - - uid: 10702 + - uid: 15347 components: - type: Transform pos: -0.5,-347.5 parent: 2 - - uid: 10703 + - uid: 15348 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - - uid: 10704 + - uid: 15349 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 10706 + - uid: 15350 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-345.5 parent: 2 - - uid: 10713 + - uid: 15351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-328.5 parent: 2 - - uid: 10717 + - uid: 15352 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-343.5 parent: 2 - - uid: 10721 + - uid: 15353 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-346.5 parent: 2 - - uid: 10722 + - uid: 15354 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - - uid: 10723 + - uid: 15355 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - - uid: 10724 + - uid: 15356 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - - uid: 10725 + - uid: 15357 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - - uid: 10727 + - uid: 15358 components: - type: Transform pos: -1.5,-347.5 parent: 2 - - uid: 10728 + - uid: 15359 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-348.5 parent: 2 - - uid: 10729 + - uid: 15360 components: - type: Transform pos: -6.5,-348.5 parent: 2 - - uid: 10730 + - uid: 15361 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-348.5 parent: 2 - - uid: 10731 + - uid: 15362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - - uid: 10732 + - uid: 15363 components: - type: Transform pos: -5.5,-349.5 parent: 2 - - uid: 10733 + - uid: 15364 components: - type: Transform pos: 3.5,-328.5 parent: 2 - - uid: 10734 + - uid: 15365 components: - type: Transform pos: 3.5,-329.5 parent: 2 - - uid: 10737 + - uid: 15366 components: - type: Transform pos: -2.5,-348.5 parent: 2 - - uid: 10738 + - uid: 15367 components: - type: Transform pos: -6.5,-333.5 parent: 2 - - uid: 10739 + - uid: 15368 components: - type: Transform pos: -4.5,-348.5 parent: 2 - - uid: 10743 + - uid: 15369 components: - type: Transform pos: 3.5,-332.5 parent: 2 - - uid: 10745 + - uid: 15370 components: - type: Transform pos: -9.5,-340.5 parent: 2 - - uid: 10751 + - uid: 15371 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10758 + - uid: 15372 components: - type: Transform pos: -1.5,-334.5 parent: 2 - - uid: 10762 + - uid: 15373 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-344.5 parent: 2 - - uid: 10765 + - uid: 15374 components: - type: Transform pos: -6.5,-343.5 parent: 2 - - uid: 10767 + - uid: 15375 components: - type: Transform pos: -5.5,-343.5 parent: 2 - - uid: 10768 + - uid: 15376 components: - type: Transform pos: -3.5,-343.5 parent: 2 - - uid: 10769 + - uid: 15377 components: - type: Transform pos: -2.5,-343.5 parent: 2 - - uid: 10772 + - uid: 15378 components: - type: Transform pos: -5.5,-346.5 parent: 2 - - uid: 10773 + - uid: 15379 components: - type: Transform pos: -2.5,-347.5 parent: 2 - - uid: 10774 + - uid: 15380 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10775 + - uid: 15381 components: - type: Transform pos: -4.5,-347.5 parent: 2 - - uid: 10776 + - uid: 15382 components: - type: Transform pos: -5.5,-347.5 parent: 2 - - uid: 10777 + - uid: 15383 components: - type: Transform pos: -6.5,-347.5 parent: 2 - - uid: 10778 + - uid: 15384 components: - type: Transform pos: -6.5,-346.5 parent: 2 - - uid: 10779 - components: - - type: Transform - pos: -6.5,-345.5 - parent: 2 - - uid: 10780 + - uid: 15385 components: - type: Transform pos: -6.5,-344.5 parent: 2 - - uid: 10782 + - uid: 15386 components: - type: Transform pos: -7.5,-343.5 parent: 2 - - uid: 10783 + - uid: 15387 components: - type: Transform pos: -7.5,-344.5 parent: 2 - - uid: 10784 + - uid: 15388 components: - type: Transform pos: -7.5,-345.5 parent: 2 - - uid: 10785 + - uid: 15389 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 10786 + - uid: 15390 components: - type: Transform pos: -5.5,-348.5 parent: 2 - - uid: 10787 + - uid: 15391 components: - type: Transform pos: 5.5,-348.5 parent: 2 - - uid: 10788 + - uid: 15392 components: - type: Transform pos: -3.5,-348.5 parent: 2 - - uid: 10789 + - uid: 15393 components: - type: Transform pos: 3.5,-348.5 parent: 2 - - uid: 10790 + - uid: 15394 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 10791 + - uid: 15395 components: - type: Transform pos: 6.5,-349.5 parent: 2 - - uid: 10793 + - uid: 15396 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 10795 + - uid: 15397 components: - type: Transform pos: -5.5,-326.5 parent: 2 - - uid: 10796 + - uid: 15398 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 10812 + - uid: 15399 components: - type: Transform pos: -0.5,-343.5 parent: 2 - - uid: 10813 + - uid: 15400 components: - type: Transform pos: -1.5,-343.5 parent: 2 - - uid: 10816 + - uid: 15401 components: - type: Transform pos: -1.5,-344.5 parent: 2 - - uid: 10817 + - uid: 15402 components: - type: Transform pos: -1.5,-345.5 parent: 2 - - uid: 10818 + - uid: 15403 components: - type: Transform pos: -1.5,-346.5 parent: 2 - - uid: 10823 + - uid: 15404 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-342.5 parent: 2 - - uid: 10824 + - uid: 15405 components: - type: Transform pos: -7.5,-334.5 parent: 2 - - uid: 10827 + - uid: 15406 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 10841 + - uid: 15407 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-353.5 parent: 2 - - uid: 10850 + - uid: 15408 components: - type: Transform pos: -9.5,-342.5 parent: 2 - - uid: 10851 + - uid: 15409 components: - type: Transform pos: -9.5,-338.5 parent: 2 - - uid: 10862 + - uid: 15410 components: - type: Transform pos: 8.5,-339.5 parent: 2 - - uid: 10917 + - uid: 15411 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - - uid: 10918 + - uid: 15412 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-343.5 parent: 2 - - uid: 10919 + - uid: 15413 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-345.5 parent: 2 - - uid: 10921 + - uid: 15414 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-345.5 parent: 2 - - uid: 10924 + - uid: 15415 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-348.5 parent: 2 - - uid: 10926 + - uid: 15416 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-335.5 parent: 2 - - uid: 10927 + - uid: 15417 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-335.5 parent: 2 - - uid: 10930 + - uid: 15418 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-354.5 parent: 2 - - uid: 10998 + - uid: 15419 components: - type: Transform pos: -10.5,-339.5 parent: 2 - - uid: 10999 + - uid: 15420 components: - type: Transform pos: -10.5,-341.5 parent: 2 - - uid: 11044 + - uid: 15421 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-353.5 parent: 2 - - uid: 11068 + - uid: 15422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-354.5 parent: 2 - - uid: 11071 + - uid: 15423 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-354.5 parent: 2 - - uid: 11072 + - uid: 15424 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-353.5 parent: 2 - - uid: 11079 + - uid: 15425 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-353.5 parent: 2 - - uid: 11083 + - uid: 15426 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-354.5 parent: 2 - - uid: 11084 + - uid: 15427 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-355.5 parent: 2 - - uid: 11085 + - uid: 15428 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-355.5 parent: 2 - - uid: 11086 + - uid: 15429 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-355.5 parent: 2 - - uid: 11087 + - uid: 15430 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-355.5 parent: 2 - - uid: 11088 + - uid: 15431 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-354.5 parent: 2 - - uid: 11115 + - uid: 15432 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-332.5 parent: 2 - - uid: 11119 + - uid: 15433 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-306.5 parent: 2 - - uid: 11122 + - uid: 15434 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-302.5 parent: 2 - - uid: 11147 + - uid: 15435 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-353.5 parent: 2 - - uid: 11148 + - uid: 15436 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-354.5 parent: 2 - - uid: 11149 + - uid: 15437 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-354.5 parent: 2 - - uid: 11150 + - uid: 15438 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-353.5 parent: 2 - - uid: 11151 + - uid: 15439 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-354.5 parent: 2 - - uid: 11152 + - uid: 15440 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-354.5 parent: 2 - - uid: 11153 + - uid: 15441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-354.5 parent: 2 - - uid: 11155 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-355.5 parent: 2 - - uid: 11156 + - uid: 15443 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - - uid: 11157 + - uid: 15444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-355.5 parent: 2 - - uid: 11158 + - uid: 15445 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-356.5 parent: 2 - - uid: 11159 + - uid: 15446 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-355.5 parent: 2 - - uid: 11160 + - uid: 15447 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-355.5 parent: 2 - - uid: 11161 + - uid: 15448 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-356.5 parent: 2 - - uid: 11162 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-356.5 parent: 2 - - uid: 11163 + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-357.5 parent: 2 - - uid: 11164 + - uid: 15451 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-358.5 parent: 2 - - uid: 11165 + - uid: 15452 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-359.5 parent: 2 - - uid: 11166 + - uid: 15453 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-355.5 parent: 2 - - uid: 11167 + - uid: 15454 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-355.5 parent: 2 - - uid: 11168 + - uid: 15455 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-356.5 parent: 2 - - uid: 11169 + - uid: 15456 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-356.5 parent: 2 - - uid: 11170 + - uid: 15457 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-301.5 parent: 2 - - uid: 11171 + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-358.5 parent: 2 - - uid: 11172 + - uid: 15459 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-359.5 parent: 2 - - uid: 11179 + - uid: 15460 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-359.5 parent: 2 - - uid: 11180 + - uid: 15461 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-359.5 parent: 2 - - uid: 11181 + - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-359.5 parent: 2 - - uid: 11182 + - uid: 15463 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-359.5 parent: 2 - - uid: 11183 + - uid: 15464 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-359.5 parent: 2 - - uid: 11184 + - uid: 15465 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-359.5 parent: 2 - - uid: 11185 + - uid: 15466 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-359.5 parent: 2 - - uid: 11186 + - uid: 15467 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-359.5 parent: 2 - - uid: 11189 + - uid: 15468 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-312.5 parent: 2 - - uid: 11190 + - uid: 15469 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-309.5 parent: 2 - - uid: 11191 + - uid: 15470 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-308.5 parent: 2 - - uid: 11192 + - uid: 15471 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-312.5 parent: 2 - - uid: 11193 + - uid: 15472 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-358.5 parent: 2 - - uid: 11196 + - uid: 15473 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-312.5 parent: 2 - - uid: 11197 + - uid: 15474 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-312.5 parent: 2 - - uid: 11198 + - uid: 15475 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-358.5 parent: 2 - - uid: 11199 + - uid: 15476 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-305.5 parent: 2 - - uid: 11202 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-356.5 parent: 2 - - uid: 11206 + - uid: 15478 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-302.5 parent: 2 - - uid: 11207 + - uid: 15479 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-302.5 parent: 2 - - uid: 11215 + - uid: 15480 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-302.5 parent: 2 - - uid: 11216 + - uid: 15481 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-300.5 parent: 2 - - uid: 11219 + - uid: 15482 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-300.5 parent: 2 - - uid: 11223 + - uid: 15483 components: - type: Transform pos: 8.5,-361.5 parent: 2 - - uid: 11225 + - uid: 15484 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-362.5 parent: 2 - - uid: 11226 + - uid: 15485 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-362.5 parent: 2 - - uid: 11227 + - uid: 15486 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-362.5 parent: 2 - - uid: 11228 + - uid: 15487 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-362.5 parent: 2 - - uid: 11229 + - uid: 15488 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-362.5 parent: 2 - - uid: 11230 + - uid: 15489 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-365.5 parent: 2 - - uid: 11231 + - uid: 15490 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-365.5 parent: 2 - - uid: 11232 + - uid: 15491 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-365.5 parent: 2 - - uid: 11233 + - uid: 15492 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-365.5 parent: 2 - - uid: 11235 + - uid: 15493 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-368.5 parent: 2 - - uid: 11236 + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-368.5 parent: 2 - - uid: 11237 + - uid: 15495 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-368.5 parent: 2 - - uid: 11238 + - uid: 15496 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11239 + - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-367.5 parent: 2 - - uid: 11240 + - uid: 15498 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - - uid: 11241 + - uid: 15499 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - - uid: 11242 + - uid: 15500 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-368.5 parent: 2 - - uid: 11243 + - uid: 15501 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-368.5 parent: 2 - - uid: 11244 + - uid: 15502 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-365.5 parent: 2 - - uid: 11245 + - uid: 15503 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-365.5 parent: 2 - - uid: 11246 + - uid: 15504 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-365.5 parent: 2 - - uid: 11247 + - uid: 15505 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-365.5 parent: 2 - - uid: 11249 + - uid: 15506 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-362.5 parent: 2 - - uid: 11250 + - uid: 15507 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-362.5 parent: 2 - - uid: 11251 + - uid: 15508 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-362.5 parent: 2 - - uid: 11252 + - uid: 15509 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-362.5 parent: 2 - - uid: 11254 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-368.5 parent: 2 - - uid: 11255 + - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11257 + - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - - uid: 11267 + - uid: 15513 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-301.5 parent: 2 - - uid: 11268 + - uid: 15514 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-300.5 parent: 2 - - uid: 11275 + - uid: 15515 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-373.5 parent: 2 - - uid: 11276 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-374.5 parent: 2 - - uid: 11277 + - uid: 15517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-374.5 parent: 2 - - uid: 11278 + - uid: 15518 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-375.5 parent: 2 - - uid: 11279 + - uid: 15519 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-376.5 parent: 2 - - uid: 11280 + - uid: 15520 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-375.5 parent: 2 - - uid: 11281 + - uid: 15521 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-376.5 parent: 2 - - uid: 11282 + - uid: 15522 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-375.5 parent: 2 - - uid: 11283 + - uid: 15523 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-374.5 parent: 2 - - uid: 11284 + - uid: 15524 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-375.5 parent: 2 - - uid: 11289 + - uid: 15525 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-374.5 parent: 2 - - uid: 11290 + - uid: 15526 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-375.5 parent: 2 - - uid: 11292 + - uid: 15527 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-376.5 parent: 2 - - uid: 11293 + - uid: 15528 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-300.5 parent: 2 - - uid: 11294 + - uid: 15529 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-376.5 parent: 2 - - uid: 11295 + - uid: 15530 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-375.5 parent: 2 - - uid: 11296 + - uid: 15531 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-375.5 parent: 2 - - uid: 11297 + - uid: 15532 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-376.5 parent: 2 - - uid: 11298 + - uid: 15533 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-374.5 parent: 2 - - uid: 11299 + - uid: 15534 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-375.5 parent: 2 - - uid: 11300 + - uid: 15535 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-375.5 parent: 2 - - uid: 11301 + - uid: 15536 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-374.5 parent: 2 - - uid: 11302 + - uid: 15537 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-376.5 parent: 2 - - uid: 11303 + - uid: 15538 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-374.5 parent: 2 - - uid: 11304 + - uid: 15539 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-373.5 parent: 2 - - uid: 11305 + - uid: 15540 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-367.5 parent: 2 - - uid: 11315 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-296.5 parent: 2 - - uid: 11321 + - uid: 15542 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-296.5 parent: 2 - - uid: 11333 + - uid: 15543 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-296.5 parent: 2 - - uid: 11334 + - uid: 15544 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-296.5 parent: 2 - - uid: 11335 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-296.5 parent: 2 - - uid: 11336 + - uid: 15546 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-296.5 parent: 2 - - uid: 11337 + - uid: 15547 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-296.5 parent: 2 - - uid: 11338 + - uid: 15548 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-300.5 parent: 2 - - uid: 11339 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-300.5 parent: 2 - - uid: 11340 + - uid: 15550 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-318.5 parent: 2 - - uid: 11341 + - uid: 15551 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-318.5 parent: 2 - - uid: 11342 + - uid: 15552 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - - uid: 11343 + - uid: 15553 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - - uid: 11344 + - uid: 15554 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-318.5 parent: 2 - - uid: 11347 + - uid: 15555 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-318.5 parent: 2 - - uid: 11348 + - uid: 15556 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-318.5 parent: 2 - - uid: 11351 + - uid: 15557 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-318.5 parent: 2 - - uid: 11354 + - uid: 15558 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-369.5 parent: 2 - - uid: 11355 + - uid: 15559 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - - uid: 11356 + - uid: 15560 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - - uid: 11357 + - uid: 15561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-368.5 parent: 2 - - uid: 11358 + - uid: 15562 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-367.5 parent: 2 - - uid: 11359 + - uid: 15563 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-367.5 parent: 2 - - uid: 11360 + - uid: 15564 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-369.5 parent: 2 - - uid: 11361 + - uid: 15565 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - - uid: 11362 + - uid: 15566 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - - uid: 11363 + - uid: 15567 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-368.5 parent: 2 - - uid: 11364 + - uid: 15568 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-367.5 parent: 2 - - uid: 11365 + - uid: 15569 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 11366 + - uid: 15570 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-318.5 parent: 2 - - uid: 11368 + - uid: 15571 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-314.5 parent: 2 - - uid: 11369 + - uid: 15572 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - - uid: 11371 + - uid: 15573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-362.5 parent: 2 - - uid: 11372 + - uid: 15574 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - - uid: 11373 + - uid: 15575 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-314.5 parent: 2 - - uid: 11374 + - uid: 15576 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-314.5 parent: 2 - - uid: 11375 + - uid: 15577 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-314.5 parent: 2 - - uid: 11376 + - uid: 15578 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-314.5 parent: 2 - - uid: 11410 + - uid: 15579 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-314.5 parent: 2 - - uid: 11420 + - uid: 15580 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-305.5 parent: 2 - - uid: 11421 + - uid: 15581 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-305.5 parent: 2 - - uid: 11422 + - uid: 15582 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-305.5 parent: 2 - - uid: 11423 + - uid: 15583 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-309.5 parent: 2 - - uid: 11424 + - uid: 15584 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-309.5 parent: 2 - - uid: 11426 + - uid: 15585 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-309.5 parent: 2 - - uid: 11427 + - uid: 15586 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-304.5 parent: 2 - - uid: 11428 + - uid: 15587 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-303.5 parent: 2 - - uid: 11432 + - uid: 15588 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-305.5 parent: 2 - - uid: 11448 + - uid: 15589 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-374.5 parent: 2 - - uid: 11457 + - uid: 15590 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-375.5 parent: 2 - - uid: 11504 + - uid: 15591 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-309.5 parent: 2 - - uid: 11505 + - uid: 15592 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-307.5 parent: 2 - - uid: 11506 + - uid: 15593 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-306.5 parent: 2 - - uid: 11509 + - uid: 15594 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-308.5 parent: 2 - - uid: 11519 + - uid: 15595 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-307.5 parent: 2 - - uid: 11549 + - uid: 15596 components: - type: Transform pos: 6.5,-132.5 parent: 2 - - uid: 11716 + - uid: 15597 components: - type: Transform pos: 20.5,-241.5 parent: 2 - - uid: 11769 + - uid: 15598 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-307.5 parent: 2 - - uid: 11773 + - uid: 15599 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 11776 + - uid: 15600 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-311.5 parent: 2 - - uid: 11777 + - uid: 15601 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-310.5 parent: 2 - - uid: 11793 + - uid: 15602 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-311.5 parent: 2 - - uid: 11808 + - uid: 15603 components: - type: Transform pos: 1.5,-380.5 parent: 2 - - uid: 11809 + - uid: 15604 components: - type: Transform pos: -0.5,-380.5 parent: 2 - - uid: 11816 + - uid: 15605 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-310.5 parent: 2 - - uid: 11819 + - uid: 15606 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-382.5 parent: 2 - - uid: 11825 + - uid: 15607 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-304.5 parent: 2 - - uid: 11829 + - uid: 15608 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-381.5 parent: 2 - - uid: 11840 + - uid: 15609 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-382.5 parent: 2 - - uid: 11841 + - uid: 15610 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-381.5 parent: 2 - - uid: 11842 + - uid: 15611 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-382.5 parent: 2 - - uid: 11843 + - uid: 15612 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-382.5 parent: 2 - - uid: 11868 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-381.5 parent: 2 - - uid: 11869 + - uid: 15614 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-380.5 parent: 2 - - uid: 11870 + - uid: 15615 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-381.5 parent: 2 - - uid: 11871 + - uid: 15616 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-380.5 parent: 2 - - uid: 11872 + - uid: 15617 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-381.5 parent: 2 - - uid: 11873 + - uid: 15618 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-381.5 parent: 2 - - uid: 11874 + - uid: 15619 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-380.5 parent: 2 - - uid: 11875 + - uid: 15620 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-381.5 parent: 2 - - uid: 11876 + - uid: 15621 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-381.5 parent: 2 - - uid: 11877 + - uid: 15622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-380.5 parent: 2 - - uid: 11878 + - uid: 15623 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-381.5 parent: 2 - - uid: 11879 + - uid: 15624 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-381.5 parent: 2 - - uid: 11884 + - uid: 15625 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-382.5 parent: 2 - - uid: 11886 + - uid: 15626 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-382.5 parent: 2 - - uid: 11887 + - uid: 15627 components: - type: Transform pos: -10.5,-163.5 parent: 2 - - uid: 11895 + - uid: 15628 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-385.5 parent: 2 - - uid: 11896 + - uid: 15629 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 11897 + - uid: 15630 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 11900 + - uid: 15631 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-384.5 parent: 2 - - uid: 11902 + - uid: 15632 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-386.5 parent: 2 - - uid: 11909 + - uid: 15633 components: - type: Transform pos: -7.5,-161.5 parent: 2 - - uid: 11910 + - uid: 15634 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-383.5 parent: 2 - - uid: 11918 + - uid: 15635 components: - type: Transform pos: -22.5,-262.5 parent: 2 - - uid: 11919 + - uid: 15636 components: - type: Transform pos: -21.5,-262.5 parent: 2 - - uid: 11921 + - uid: 15637 components: - type: Transform pos: -12.5,-265.5 parent: 2 - - uid: 11922 + - uid: 15638 components: - type: Transform pos: -19.5,-262.5 parent: 2 - - uid: 11924 + - uid: 15639 components: - type: Transform pos: -22.5,-261.5 parent: 2 - - uid: 11925 + - uid: 15640 components: - type: Transform pos: -22.5,-260.5 parent: 2 - - uid: 11929 + - uid: 15641 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-384.5 parent: 2 - - uid: 11944 + - uid: 15642 components: - type: Transform pos: -6.5,-385.5 parent: 2 - - uid: 11954 + - uid: 15643 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-386.5 parent: 2 - - uid: 11956 + - uid: 15644 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-342.5 parent: 2 - - uid: 11960 + - uid: 15645 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-303.5 parent: 2 - - uid: 11961 + - uid: 15646 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-313.5 parent: 2 - - uid: 11962 + - uid: 15647 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-313.5 parent: 2 - - uid: 11963 + - uid: 15648 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-307.5 parent: 2 - - uid: 11965 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-340.5 parent: 2 - - uid: 11973 + - uid: 15650 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-339.5 parent: 2 - - uid: 11989 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-382.5 parent: 2 - - uid: 11993 + - uid: 15652 components: - type: Transform pos: -10.5,-161.5 parent: 2 - - uid: 11997 + - uid: 15653 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-383.5 parent: 2 - - uid: 12056 + - uid: 15654 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-336.5 parent: 2 - - uid: 12090 + - uid: 15655 components: - type: Transform pos: -8.5,-247.5 parent: 2 - - uid: 12095 + - uid: 15656 components: - type: Transform pos: -7.5,-247.5 parent: 2 - - uid: 12100 + - uid: 15657 components: - type: Transform pos: -14.5,-266.5 parent: 2 - - uid: 12102 + - uid: 15658 components: - type: Transform pos: -13.5,-266.5 parent: 2 - - uid: 12103 + - uid: 15659 components: - type: Transform pos: -22.5,-266.5 parent: 2 - - uid: 12105 + - uid: 15660 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 12149 + - uid: 15661 components: - type: Transform pos: -6.5,-128.5 parent: 2 - - uid: 12261 + - uid: 15662 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - - uid: 12326 + - uid: 15663 components: - type: Transform pos: -22.5,-252.5 parent: 2 - - uid: 12469 + - uid: 15664 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-342.5 parent: 2 - - uid: 12496 + - uid: 15665 components: - type: Transform pos: -16.5,-266.5 parent: 2 - - uid: 12678 + - uid: 15666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-345.5 + parent: 2 + - uid: 15667 components: - type: Transform pos: -19.5,-266.5 parent: 2 - - uid: 12685 + - uid: 15668 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-343.5 parent: 2 - - uid: 12687 + - uid: 15669 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-337.5 parent: 2 - - uid: 12771 + - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - - uid: 12801 + - uid: 15671 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-336.5 parent: 2 - - uid: 12817 + - uid: 15672 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-344.5 parent: 2 - - uid: 12818 + - uid: 15673 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-342.5 parent: 2 - - uid: 12819 + - uid: 15674 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-341.5 parent: 2 - - uid: 12820 + - uid: 15675 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-339.5 parent: 2 - - uid: 12821 + - uid: 15676 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-337.5 parent: 2 - - uid: 12824 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-340.5 parent: 2 - - uid: 12825 + - uid: 15678 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-341.5 parent: 2 - - uid: 12870 + - uid: 15679 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-334.5 parent: 2 - - uid: 12872 + - uid: 15680 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-339.5 parent: 2 - - uid: 12910 + - uid: 15681 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-338.5 parent: 2 - - uid: 12912 + - uid: 15682 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-346.5 parent: 2 - - uid: 12913 + - uid: 15683 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-339.5 parent: 2 - - uid: 12995 + - uid: 15684 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - - uid: 13074 + - uid: 15685 components: - type: Transform pos: 5.5,-344.5 parent: 2 - - uid: 13275 + - uid: 15686 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - - uid: 13276 + - uid: 15687 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - - uid: 13278 + - uid: 15688 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-337.5 parent: 2 - - uid: 13290 + - uid: 15689 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-264.5 parent: 2 - - uid: 13293 + - uid: 15690 components: - type: Transform pos: -9.5,-310.5 parent: 2 - - uid: 13294 + - uid: 15691 components: - type: Transform pos: -8.5,-310.5 parent: 2 - - uid: 13295 + - uid: 15692 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-298.5 parent: 2 - - uid: 13301 + - uid: 15693 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-300.5 parent: 2 - - uid: 13309 + - uid: 15694 components: - type: Transform pos: 7.5,-121.5 parent: 2 - - uid: 13327 + - uid: 15695 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-121.5 parent: 2 - - uid: 13330 + - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-299.5 parent: 2 - - uid: 13331 + - uid: 15697 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-264.5 parent: 2 - - uid: 13369 + - uid: 15698 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-120.5 parent: 2 - - uid: 13375 + - uid: 15699 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-261.5 parent: 2 - - uid: 13406 + - uid: 15700 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-338.5 parent: 2 - - uid: 13408 + - uid: 15701 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-121.5 parent: 2 - - uid: 13409 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - - uid: 13460 + - uid: 15703 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-163.5 parent: 2 - - uid: 13462 + - uid: 15704 components: - type: Transform pos: 7.5,-241.5 parent: 2 - - uid: 13961 + - uid: 15705 components: - type: Transform pos: 20.5,-239.5 parent: 2 - - uid: 13993 + - uid: 15706 components: - type: Transform pos: 20.5,-240.5 parent: 2 - - uid: 14020 + - uid: 15707 components: - type: Transform pos: -17.5,-266.5 parent: 2 - - uid: 14050 + - uid: 15708 components: - type: Transform pos: -20.5,-262.5 parent: 2 - - uid: 14089 + - uid: 15709 components: - type: Transform pos: -15.5,-266.5 parent: 2 - - uid: 14091 + - uid: 15710 components: - type: Transform pos: -13.5,-265.5 parent: 2 - - uid: 14201 + - uid: 15711 components: - type: Transform pos: -20.5,-266.5 parent: 2 - - uid: 14288 + - uid: 15712 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-181.5 parent: 2 - - uid: 14290 + - uid: 15713 components: - type: Transform pos: -10.5,-168.5 parent: 2 - - uid: 14301 + - uid: 15714 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-341.5 parent: 2 - - uid: 14781 + - uid: 15715 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 - - uid: 14911 + - uid: 15716 components: - type: Transform pos: -7.5,-148.5 parent: 2 - - uid: 14916 + - uid: 15717 components: - type: Transform pos: -7.5,-144.5 parent: 2 - - uid: 15795 + - uid: 15718 components: - type: Transform pos: -9.5,-336.5 parent: 2 - - uid: 15796 + - uid: 15719 components: - type: Transform pos: -8.5,-336.5 parent: 2 - - uid: 16471 + - uid: 15720 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-160.5 parent: 2 - - uid: 16472 + - uid: 15721 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-160.5 parent: 2 - - uid: 16473 + - uid: 15722 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-169.5 parent: 2 - - uid: 16474 + - uid: 15723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-169.5 parent: 2 - - uid: 16475 + - uid: 15724 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-169.5 parent: 2 - - uid: 16484 + - uid: 15725 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-160.5 parent: 2 - - uid: 16549 + - uid: 15726 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 16581 + - uid: 15727 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 - - uid: 16584 + - uid: 15728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-78.5 parent: 2 - - uid: 16623 + - uid: 15729 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 16624 + - uid: 15730 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 16628 + - uid: 15731 components: - type: Transform pos: -3.5,-187.5 parent: 2 - - uid: 16716 + - uid: 15732 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 - - uid: 16740 + - uid: 15733 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 - - uid: 16900 + - uid: 15734 components: - type: Transform pos: -3.5,-186.5 parent: 2 - - uid: 16901 + - uid: 15735 components: - type: Transform pos: -5.5,-187.5 parent: 2 - - uid: 16902 + - uid: 15736 components: - type: Transform pos: -5.5,-186.5 parent: 2 - proto: WallReinforcedDiagonal entities: - - uid: 145 + - uid: 15737 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 147 + - uid: 15738 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 260 + - uid: 15739 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 324 + - uid: 15740 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 325 + - uid: 15741 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 342 + - uid: 15742 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 359 + - uid: 15743 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 2 - - uid: 368 + - uid: 15744 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 375 + - uid: 15745 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 2 - - uid: 376 + - uid: 15746 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 381 + - uid: 15747 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - - uid: 382 + - uid: 15748 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 385 + - uid: 15749 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - uid: 425 + - uid: 15750 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 430 + - uid: 15751 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 571 + - uid: 15752 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 599 + - uid: 15753 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 642 + - uid: 15754 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 647 + - uid: 15755 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 659 + - uid: 15756 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 672 + - uid: 15757 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 941 + - uid: 15758 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-223.5 parent: 2 - - uid: 943 + - uid: 15759 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-58.5 parent: 2 - - uid: 956 + - uid: 15760 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 - - uid: 978 + - uid: 15761 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 979 + - uid: 15762 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 1002 + - uid: 15763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 1086 + - uid: 15764 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - - uid: 1240 + - uid: 15765 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 1286 + - uid: 15766 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 - - uid: 1463 + - uid: 15767 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 1464 + - uid: 15768 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 1813 + - uid: 15769 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 1823 + - uid: 15770 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 1824 + - uid: 15771 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 1927 + - uid: 15772 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-112.5 parent: 2 - - uid: 1958 + - uid: 15773 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - - uid: 1992 + - uid: 15774 components: - type: Transform pos: -9.5,-106.5 parent: 2 - - uid: 1993 + - uid: 15775 components: - type: Transform pos: -6.5,-105.5 parent: 2 - - uid: 2108 + - uid: 15776 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 2113 + - uid: 15777 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 2122 + - uid: 15778 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - - uid: 2165 + - uid: 15779 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-122.5 parent: 2 - - uid: 2449 + - uid: 15780 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 2451 + - uid: 15781 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 2522 + - uid: 15782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 2529 + - uid: 15783 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 2582 + - uid: 15784 components: - type: Transform pos: -6.5,-134.5 parent: 2 - - uid: 2853 + - uid: 15785 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 2854 + - uid: 15786 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 2872 + - uid: 15787 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-134.5 parent: 2 - - uid: 2886 + - uid: 15788 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-126.5 parent: 2 - - uid: 2887 + - uid: 15789 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 2906 + - uid: 15790 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - - uid: 2936 + - uid: 15791 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 2937 + - uid: 15792 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 3155 + - uid: 15793 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-180.5 parent: 2 - - uid: 3653 + - uid: 15794 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 3656 + - uid: 15795 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 3687 + - uid: 15796 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-180.5 parent: 2 - - uid: 3817 + - uid: 15797 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 3819 + - uid: 15798 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 3878 + - uid: 15799 components: - type: Transform pos: -10.5,-336.5 parent: 2 - - uid: 3883 + - uid: 15800 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-343.5 parent: 2 - - uid: 4009 + - uid: 15801 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 4319 + - uid: 15802 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 4322 + - uid: 15803 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 4530 + - uid: 15804 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 4533 + - uid: 15805 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 4535 + - uid: 15806 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 4549 + - uid: 15807 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 4550 + - uid: 15808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5088 + - uid: 15809 components: - type: Transform pos: -2.5,-111.5 parent: 2 - - uid: 5123 + - uid: 15810 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5125 + - uid: 15811 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5165 + - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5170 + - uid: 15813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5176 + - uid: 15814 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5180 + - uid: 15815 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5183 + - uid: 15816 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 5184 + - uid: 15817 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5187 + - uid: 15818 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5359 + - uid: 15819 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-238.5 parent: 2 - - uid: 5411 + - uid: 15820 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 6676 + - uid: 15821 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-128.5 parent: 2 - - uid: 6738 + - uid: 15822 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-256.5 parent: 2 - - uid: 7379 + - uid: 15823 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-266.5 parent: 2 - - uid: 7385 + - uid: 15824 components: - type: Transform pos: 14.5,-238.5 parent: 2 - - uid: 7415 + - uid: 15825 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-266.5 parent: 2 - - uid: 7488 + - uid: 15826 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-192.5 parent: 2 - - uid: 7494 + - uid: 15827 components: - type: Transform pos: -11.5,-306.5 parent: 2 - - uid: 8384 + - uid: 15828 components: - type: Transform pos: -10.5,-188.5 parent: 2 - - uid: 8410 + - uid: 15829 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-310.5 parent: 2 - - uid: 8411 + - uid: 15830 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 8412 + - uid: 15831 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 8579 + - uid: 15832 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 8580 + - uid: 15833 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 9364 + - uid: 15834 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 9365 + - uid: 15835 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 9474 + - uid: 15836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-332.5 parent: 2 - - uid: 9498 + - uid: 15837 components: - type: Transform pos: 3.5,-341.5 parent: 2 - - uid: 9542 + - uid: 15838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-339.5 parent: 2 - - uid: 10130 + - uid: 15839 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 10131 + - uid: 15840 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 10582 + - uid: 15841 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 10583 + - uid: 15842 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 10649 + - uid: 15843 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-349.5 parent: 2 - - uid: 10692 + - uid: 15844 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-344.5 parent: 2 - - uid: 10695 + - uid: 15845 components: - type: Transform pos: -7.5,-332.5 parent: 2 - - uid: 10700 + - uid: 15846 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-344.5 parent: 2 - - uid: 10792 + - uid: 15847 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-349.5 parent: 2 - - uid: 10825 + - uid: 15848 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 10994 + - uid: 15849 components: - type: Transform pos: -9.5,-335.5 parent: 2 - - uid: 11077 + - uid: 15850 components: - type: Transform pos: -1.5,-353.5 parent: 2 - - uid: 11078 + - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-353.5 parent: 2 - - uid: 11285 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-376.5 parent: 2 - - uid: 11563 + - uid: 15853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-376.5 parent: 2 - - uid: 11725 + - uid: 15854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-359.5 parent: 2 - - uid: 11726 + - uid: 15855 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-359.5 parent: 2 - - uid: 11762 + - uid: 15856 components: - type: Transform pos: -1.5,-361.5 parent: 2 - - uid: 11805 + - uid: 15857 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-380.5 parent: 2 - - uid: 11806 + - uid: 15858 components: - type: Transform pos: -1.5,-380.5 parent: 2 - - uid: 11813 + - uid: 15859 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - - uid: 11892 + - uid: 15860 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-160.5 parent: 2 - - uid: 12057 + - uid: 15861 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-336.5 parent: 2 - - uid: 12146 + - uid: 15862 components: - type: Transform pos: -8.5,-333.5 parent: 2 - - uid: 12822 + - uid: 15863 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-333.5 parent: 2 - - uid: 12823 + - uid: 15864 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-335.5 parent: 2 - - uid: 12911 + - uid: 15865 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-343.5 parent: 2 - - uid: 13305 + - uid: 15866 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-310.5 parent: 2 - - uid: 13308 + - uid: 15867 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-306.5 parent: 2 - - uid: 13352 + - uid: 15868 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-121.5 parent: 2 - - uid: 14798 + - uid: 15869 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-74.5 parent: 2 - - uid: 15751 + - uid: 15870 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 15752 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 15753 + - uid: 15872 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 15754 + - uid: 15873 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 15755 + - uid: 15874 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 15756 + - uid: 15875 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 15757 + - uid: 15876 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 15758 + - uid: 15877 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 15759 + - uid: 15878 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 15760 + - uid: 15879 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 15761 + - uid: 15880 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 15762 + - uid: 15881 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 15763 + - uid: 15882 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 15764 + - uid: 15883 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 15765 + - uid: 15884 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 15766 + - uid: 15885 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 15767 + - uid: 15886 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 15768 + - uid: 15887 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 15769 + - uid: 15888 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 15770 + - uid: 15889 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 15771 + - uid: 15890 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 15772 + - uid: 15891 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-303.5 parent: 2 - - uid: 15773 + - uid: 15892 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 15774 + - uid: 15893 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 15775 + - uid: 15894 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 15776 + - uid: 15895 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 15777 + - uid: 15896 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 15778 + - uid: 15897 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 15779 + - uid: 15898 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 15780 + - uid: 15899 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 15781 + - uid: 15900 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 15782 + - uid: 15901 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 15783 + - uid: 15902 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 16482 + - uid: 15903 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-169.5 parent: 2 - - uid: 16502 + - uid: 15904 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-169.5 parent: 2 - - uid: 16530 + - uid: 15905 components: - type: Transform pos: -15.5,-160.5 parent: 2 - proto: WallReinforcedRust entities: - - uid: 121 + - uid: 15906 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 122 + - uid: 15907 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 123 + - uid: 15908 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 124 + - uid: 15909 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 125 + - uid: 15910 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 126 + - uid: 15911 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 130 + - uid: 15912 components: - type: Transform pos: 3.5,-2.5 parent: 2 - - uid: 135 + - uid: 15913 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 139 + - uid: 15914 components: - type: Transform pos: 4.5,-3.5 parent: 2 - - uid: 148 + - uid: 15915 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 149 + - uid: 15916 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 153 + - uid: 15917 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 180 + - uid: 15918 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 188 + - uid: 15919 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 232 + - uid: 15920 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 233 + - uid: 15921 components: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 244 + - uid: 15922 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 249 + - uid: 15923 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 254 + - uid: 15924 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 258 + - uid: 15925 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 259 + - uid: 15926 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 261 + - uid: 15927 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 262 + - uid: 15928 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 329 + - uid: 15929 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 331 + - uid: 15930 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 332 + - uid: 15931 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 349 + - uid: 15932 components: - type: Transform pos: 6.5,-20.5 parent: 2 - - uid: 350 + - uid: 15933 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 371 + - uid: 15934 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 443 + - uid: 15935 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 457 + - uid: 15936 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 490 + - uid: 15937 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 497 + - uid: 15938 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 502 + - uid: 15939 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 504 + - uid: 15940 components: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 517 + - uid: 15941 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 518 + - uid: 15942 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 519 + - uid: 15943 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 520 + - uid: 15944 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 540 + - uid: 15945 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 897 + - uid: 15946 components: - type: Transform pos: 4.5,-53.5 parent: 2 - - uid: 900 + - uid: 15947 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 925 + - uid: 15948 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 927 + - uid: 15949 components: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 928 + - uid: 15950 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 960 + - uid: 15951 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 982 + - uid: 15952 components: - type: Transform pos: 2.5,-54.5 parent: 2 - - uid: 983 + - uid: 15953 components: - type: Transform pos: 2.5,-55.5 parent: 2 - - uid: 994 + - uid: 15954 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 1012 + - uid: 15955 components: - type: Transform pos: -1.5,-74.5 parent: 2 - - uid: 1014 + - uid: 15956 components: - type: Transform pos: 6.5,-74.5 parent: 2 - - uid: 1120 + - uid: 15957 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 1121 + - uid: 15958 components: - type: Transform pos: 6.5,-73.5 parent: 2 - - uid: 1213 + - uid: 15959 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 1420 + - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-74.5 parent: 2 - - uid: 1516 + - uid: 15961 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - uid: 1517 + - uid: 15962 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1518 + - uid: 15963 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 1536 + - uid: 15964 components: - type: Transform pos: -6.5,-93.5 parent: 2 - - uid: 1537 + - uid: 15965 components: - type: Transform pos: -6.5,-94.5 parent: 2 - - uid: 1538 + - uid: 15966 components: - type: Transform pos: -6.5,-95.5 parent: 2 - - uid: 1554 + - uid: 15967 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 1581 + - uid: 15968 components: - type: Transform pos: 7.5,-92.5 parent: 2 - - uid: 1711 + - uid: 15969 components: - type: Transform pos: 2.5,-99.5 parent: 2 - - uid: 1712 + - uid: 15970 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 1847 + - uid: 15971 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - - uid: 1855 + - uid: 15972 components: - type: Transform pos: -7.5,-106.5 parent: 2 - - uid: 1856 + - uid: 15973 components: - type: Transform pos: -8.5,-106.5 parent: 2 - - uid: 1931 + - uid: 15974 components: - type: Transform pos: 6.5,-112.5 parent: 2 - - uid: 1955 + - uid: 15975 components: - type: Transform pos: -9.5,-117.5 parent: 2 - - uid: 2099 + - uid: 15976 components: - type: Transform pos: -5.5,-128.5 parent: 2 - - uid: 2111 + - uid: 15977 components: - type: Transform pos: 2.5,-126.5 parent: 2 - - uid: 2112 + - uid: 15978 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 2115 + - uid: 15979 components: - type: Transform pos: 3.5,-127.5 parent: 2 - - uid: 2116 + - uid: 15980 components: - type: Transform pos: 4.5,-127.5 parent: 2 - - uid: 2120 + - uid: 15981 components: - type: Transform pos: 4.5,-128.5 parent: 2 - - uid: 2173 + - uid: 15982 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 2174 + - uid: 15983 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 2175 + - uid: 15984 components: - type: Transform pos: 2.5,-115.5 parent: 2 - - uid: 2176 + - uid: 15985 components: - type: Transform pos: 2.5,-117.5 parent: 2 - - uid: 2186 + - uid: 15986 components: - type: Transform pos: 4.5,-113.5 parent: 2 - - uid: 2187 + - uid: 15987 components: - type: Transform pos: 4.5,-112.5 parent: 2 - - uid: 2192 + - uid: 15988 components: - type: Transform pos: 4.5,-115.5 parent: 2 - - uid: 2193 + - uid: 15989 components: - type: Transform pos: 1.5,-114.5 parent: 2 - - uid: 2285 + - uid: 15990 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 2456 + - uid: 15991 components: - type: Transform pos: 1.5,-134.5 parent: 2 - - uid: 2457 + - uid: 15992 components: - type: Transform pos: 2.5,-134.5 parent: 2 - - uid: 2458 + - uid: 15993 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 2482 + - uid: 15994 components: - type: Transform pos: 3.5,-133.5 parent: 2 - - uid: 2496 + - uid: 15995 components: - type: Transform pos: -6.5,-143.5 parent: 2 - - uid: 2497 + - uid: 15996 components: - type: Transform pos: -6.5,-137.5 parent: 2 - - uid: 2498 + - uid: 15997 components: - type: Transform pos: -7.5,-137.5 parent: 2 - - uid: 2499 + - uid: 15998 components: - type: Transform pos: -7.5,-138.5 parent: 2 - - uid: 2500 + - uid: 15999 components: - type: Transform pos: -7.5,-142.5 parent: 2 - - uid: 2501 + - uid: 16000 components: - type: Transform pos: -7.5,-143.5 parent: 2 - - uid: 2510 + - uid: 16001 components: - type: Transform pos: -7.5,-151.5 parent: 2 - - uid: 2511 + - uid: 16002 components: - type: Transform pos: -6.5,-151.5 parent: 2 - - uid: 2525 + - uid: 16003 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 2530 + - uid: 16004 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 2534 + - uid: 16005 components: - type: Transform pos: 4.5,-154.5 parent: 2 - - uid: 2535 + - uid: 16006 components: - type: Transform pos: 4.5,-155.5 parent: 2 - - uid: 2546 + - uid: 16007 components: - type: Transform pos: 3.5,-154.5 parent: 2 - - uid: 2564 + - uid: 16008 components: - type: Transform pos: 9.5,-151.5 parent: 2 - - uid: 2578 + - uid: 16009 components: - type: Transform pos: 9.5,-137.5 parent: 2 - - uid: 2579 + - uid: 16010 components: - type: Transform pos: 9.5,-136.5 parent: 2 - - uid: 3084 + - uid: 16011 components: - type: Transform pos: -1.5,-161.5 parent: 2 - - uid: 3085 + - uid: 16012 components: - type: Transform pos: -0.5,-180.5 parent: 2 - - uid: 3086 + - uid: 16013 components: - type: Transform pos: -1.5,-180.5 parent: 2 - - uid: 3088 + - uid: 16014 components: - type: Transform pos: -8.5,-171.5 parent: 2 - - uid: 3106 + - uid: 16015 components: - type: Transform pos: -8.5,-172.5 parent: 2 - - uid: 3108 + - uid: 16016 components: - type: Transform pos: -8.5,-179.5 parent: 2 - - uid: 3111 + - uid: 16017 components: - type: Transform pos: 8.5,-164.5 parent: 2 - - uid: 3131 + - uid: 16018 components: - type: Transform pos: 8.5,-170.5 parent: 2 - - uid: 3138 + - uid: 16019 components: - type: Transform pos: -5.5,-181.5 parent: 2 - - uid: 3139 + - uid: 16020 components: - type: Transform pos: -5.5,-182.5 parent: 2 - - uid: 3140 + - uid: 16021 components: - type: Transform pos: -3.5,-181.5 parent: 2 - - uid: 3142 + - uid: 16022 components: - type: Transform pos: 9.5,-178.5 parent: 2 - - uid: 3153 + - uid: 16023 components: - type: Transform pos: 6.5,-181.5 parent: 2 - - uid: 3154 + - uid: 16024 components: - type: Transform pos: 4.5,-182.5 parent: 2 - - uid: 3157 + - uid: 16025 components: - type: Transform pos: 8.5,-179.5 parent: 2 - - uid: 3664 + - uid: 16026 components: - type: Transform pos: 6.5,-187.5 parent: 2 - - uid: 3665 + - uid: 16027 components: - type: Transform pos: 6.5,-188.5 parent: 2 - - uid: 3666 + - uid: 16028 components: - type: Transform pos: 7.5,-188.5 parent: 2 - - uid: 3668 + - uid: 16029 components: - type: Transform pos: 7.5,-189.5 parent: 2 - - uid: 3791 + - uid: 16030 components: - type: Transform pos: -6.5,-192.5 parent: 2 - - uid: 3793 + - uid: 16031 components: - type: Transform pos: -7.5,-193.5 parent: 2 - - uid: 3808 + - uid: 16032 components: - type: Transform pos: -6.5,-207.5 parent: 2 - - uid: 3809 + - uid: 16033 components: - type: Transform pos: -5.5,-207.5 parent: 2 - - uid: 3810 + - uid: 16034 components: - type: Transform pos: -5.5,-208.5 parent: 2 - - uid: 3825 + - uid: 16035 components: - type: Transform pos: 4.5,-208.5 parent: 2 - - uid: 3827 + - uid: 16036 components: - type: Transform pos: 6.5,-208.5 parent: 2 - - uid: 3829 + - uid: 16037 components: - type: Transform pos: 6.5,-207.5 parent: 2 - - uid: 3830 + - uid: 16038 components: - type: Transform pos: 7.5,-207.5 parent: 2 - - uid: 3831 + - uid: 16039 components: - type: Transform pos: 7.5,-206.5 parent: 2 - - uid: 4726 + - uid: 16040 components: - type: Transform pos: 6.5,-186.5 parent: 2 - - uid: 6306 + - uid: 16041 components: - type: Transform pos: 4.5,-114.5 parent: 2 - - uid: 6917 + - uid: 16042 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-186.5 parent: 2 - - uid: 7755 + - uid: 16043 components: - type: Transform pos: 5.5,-207.5 parent: 2 - - uid: 7764 + - uid: 16044 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 7843 + - uid: 16045 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 8387 + - uid: 16046 components: - type: Transform pos: -2.5,-192.5 parent: 2 - - uid: 8809 + - uid: 16047 components: - type: Transform pos: -5.5,-192.5 parent: 2 - - uid: 12684 + - uid: 16048 components: - type: Transform pos: -7.5,-127.5 parent: 2 - - uid: 14689 + - uid: 16049 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 2 - - uid: 16739 + - uid: 16050 components: - type: Transform rot: 1.5707963267948966 rad @@ -102632,2028 +102056,2037 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 439 + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-171.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-171.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-171.5 + parent: 2 + - uid: 16051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 447 + - uid: 16052 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 458 + - uid: 16053 components: - type: Transform pos: -5.5,-33.5 parent: 2 - - uid: 461 + - uid: 16054 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 462 + - uid: 16055 components: - type: Transform pos: -1.5,-33.5 parent: 2 - - uid: 464 + - uid: 16056 components: - type: Transform pos: -1.5,-36.5 parent: 2 - - uid: 465 + - uid: 16057 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 466 + - uid: 16058 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 467 + - uid: 16059 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 468 + - uid: 16060 components: - type: Transform pos: -2.5,-39.5 parent: 2 - - uid: 469 + - uid: 16061 components: - type: Transform pos: -2.5,-40.5 parent: 2 - - uid: 472 + - uid: 16062 components: - type: Transform pos: -3.5,-40.5 parent: 2 - - uid: 473 + - uid: 16063 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 475 + - uid: 16064 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 476 + - uid: 16065 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 480 + - uid: 16066 components: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 481 + - uid: 16067 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 482 + - uid: 16068 components: - type: Transform pos: 4.5,-29.5 parent: 2 - - uid: 483 + - uid: 16069 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 484 + - uid: 16070 components: - type: Transform pos: 4.5,-27.5 parent: 2 - - uid: 487 + - uid: 16071 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 488 + - uid: 16072 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 489 + - uid: 16073 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 491 + - uid: 16074 components: - type: Transform pos: 4.5,-35.5 parent: 2 - - uid: 492 + - uid: 16075 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 493 + - uid: 16076 components: - type: Transform pos: 6.5,-35.5 parent: 2 - - uid: 880 + - uid: 16077 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 881 + - uid: 16078 components: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 908 + - uid: 16079 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 945 + - uid: 16080 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 959 + - uid: 16081 components: - type: Transform pos: 3.5,-33.5 parent: 2 - - uid: 965 + - uid: 16082 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 966 + - uid: 16083 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 967 + - uid: 16084 components: - type: Transform pos: 2.5,-70.5 parent: 2 - - uid: 968 + - uid: 16085 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 969 + - uid: 16086 components: - type: Transform pos: 5.5,-62.5 parent: 2 - - uid: 971 + - uid: 16087 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 972 + - uid: 16088 components: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 976 + - uid: 16089 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 984 + - uid: 16090 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 987 + - uid: 16091 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 1010 + - uid: 16092 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 1018 + - uid: 16093 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 1019 + - uid: 16094 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 1020 + - uid: 16095 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - uid: 1032 + - uid: 16096 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 1071 + - uid: 16097 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 1076 + - uid: 16098 components: - type: Transform pos: 3.5,-60.5 parent: 2 - - uid: 1077 + - uid: 16099 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 1080 + - uid: 16100 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 1084 + - uid: 16101 components: - type: Transform pos: 4.5,-60.5 parent: 2 - - uid: 1087 + - uid: 16102 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-56.5 parent: 2 - - uid: 1218 + - uid: 16103 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 1223 + - uid: 16104 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 1243 + - uid: 16105 components: - type: Transform pos: -1.5,-93.5 parent: 2 - - uid: 1274 + - uid: 16106 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 1417 + - uid: 16107 components: - type: Transform pos: -1.5,-70.5 parent: 2 - - uid: 1425 + - uid: 16108 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 1428 + - uid: 16109 components: - type: Transform pos: 4.5,-70.5 parent: 2 - - uid: 1434 + - uid: 16110 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 1495 + - uid: 16111 components: - type: Transform pos: -1.5,-279.5 parent: 2 - - uid: 1496 + - uid: 16112 components: - type: Transform pos: -1.5,-278.5 parent: 2 - - uid: 1549 + - uid: 16113 components: - type: Transform pos: -1.5,-96.5 parent: 2 - - uid: 1639 + - uid: 16114 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 1640 + - uid: 16115 components: - type: Transform pos: -1.5,-83.5 parent: 2 - - uid: 1642 + - uid: 16116 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 1643 + - uid: 16117 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 1644 + - uid: 16118 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 1645 + - uid: 16119 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 1648 + - uid: 16120 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 1651 + - uid: 16121 components: - type: Transform pos: -2.5,-88.5 parent: 2 - - uid: 1652 + - uid: 16122 components: - type: Transform pos: -4.5,-88.5 parent: 2 - - uid: 1653 + - uid: 16123 components: - type: Transform pos: -4.5,-89.5 parent: 2 - - uid: 1654 + - uid: 16124 components: - type: Transform pos: -5.5,-89.5 parent: 2 - - uid: 1655 + - uid: 16125 components: - type: Transform pos: -2.5,-89.5 parent: 2 - - uid: 1656 + - uid: 16126 components: - type: Transform pos: -1.5,-89.5 parent: 2 - - uid: 1657 + - uid: 16127 components: - type: Transform pos: -5.5,-90.5 parent: 2 - - uid: 1658 + - uid: 16128 components: - type: Transform pos: -1.5,-90.5 parent: 2 - - uid: 1661 + - uid: 16129 components: - type: Transform pos: -0.5,-90.5 parent: 2 - - uid: 1663 + - uid: 16130 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 1664 + - uid: 16131 components: - type: Transform pos: -0.5,-93.5 parent: 2 - - uid: 1667 + - uid: 16132 components: - type: Transform pos: -1.5,-94.5 parent: 2 - - uid: 1668 + - uid: 16133 components: - type: Transform pos: -2.5,-94.5 parent: 2 - - uid: 1681 + - uid: 16134 components: - type: Transform pos: 2.5,-93.5 parent: 2 - - uid: 1682 + - uid: 16135 components: - type: Transform pos: 3.5,-92.5 parent: 2 - - uid: 1684 + - uid: 16136 components: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 1685 + - uid: 16137 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 1729 + - uid: 16138 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 1751 + - uid: 16139 components: - type: Transform pos: 2.5,-92.5 parent: 2 - - uid: 1765 + - uid: 16140 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 1829 + - uid: 16141 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-108.5 parent: 2 - - uid: 1832 + - uid: 16142 components: - type: Transform pos: -4.5,-108.5 parent: 2 - - uid: 1848 + - uid: 16143 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - - uid: 1863 + - uid: 16144 components: - type: Transform - pos: -5.5,-112.5 + rot: 1.5707963267948966 rad + pos: -5.5,-111.5 parent: 2 - - uid: 1864 + - uid: 16145 components: - type: Transform - pos: -5.5,-111.5 + rot: 1.5707963267948966 rad + pos: -5.5,-112.5 parent: 2 - - uid: 1865 + - uid: 16146 components: - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-111.5 parent: 2 - - uid: 1866 + - uid: 16147 components: - type: Transform pos: -7.5,-111.5 parent: 2 - - uid: 1867 + - uid: 16148 components: - type: Transform pos: -8.5,-111.5 parent: 2 - - uid: 1868 + - uid: 16149 components: - type: Transform pos: -5.5,-115.5 parent: 2 - - uid: 1869 + - uid: 16150 components: - type: Transform pos: -5.5,-114.5 parent: 2 - - uid: 1870 + - uid: 16151 components: - type: Transform pos: -6.5,-114.5 parent: 2 - - uid: 1871 + - uid: 16152 components: - type: Transform pos: -7.5,-114.5 parent: 2 - - uid: 1872 + - uid: 16153 components: - type: Transform pos: -8.5,-114.5 parent: 2 - - uid: 1875 + - uid: 16154 components: - type: Transform pos: -6.5,-117.5 parent: 2 - - uid: 1876 + - uid: 16155 components: - type: Transform pos: -5.5,-117.5 parent: 2 - - uid: 1877 + - uid: 16156 components: - type: Transform pos: -8.5,-120.5 parent: 2 - - uid: 1878 + - uid: 16157 components: - type: Transform pos: -7.5,-120.5 parent: 2 - - uid: 1881 + - uid: 16158 components: - type: Transform pos: -8.5,-123.5 parent: 2 - - uid: 1882 + - uid: 16159 components: - type: Transform pos: -7.5,-123.5 parent: 2 - - uid: 1883 + - uid: 16160 components: - type: Transform pos: -6.5,-123.5 parent: 2 - - uid: 1884 + - uid: 16161 components: - type: Transform pos: -5.5,-123.5 parent: 2 - - uid: 1885 + - uid: 16162 components: - type: Transform pos: -5.5,-124.5 parent: 2 - - uid: 1887 + - uid: 16163 components: - type: Transform pos: -5.5,-118.5 parent: 2 - - uid: 2200 + - uid: 16164 components: - type: Transform pos: 2.5,-111.5 parent: 2 - - uid: 2201 + - uid: 16165 components: - type: Transform pos: 2.5,-110.5 parent: 2 - - uid: 2203 + - uid: 16166 components: - type: Transform pos: 2.5,-108.5 parent: 2 - - uid: 2353 + - uid: 16167 components: - type: Transform pos: 3.5,-150.5 parent: 2 - - uid: 2504 + - uid: 16168 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 2528 + - uid: 16169 components: - type: Transform pos: 2.5,-151.5 parent: 2 - - uid: 2531 + - uid: 16170 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2536 + - uid: 16171 components: - type: Transform pos: 1.5,-146.5 parent: 2 - - uid: 2540 + - uid: 16172 components: - type: Transform pos: 1.5,-142.5 parent: 2 - - uid: 2541 + - uid: 16173 components: - type: Transform pos: 1.5,-141.5 parent: 2 - - uid: 2542 + - uid: 16174 components: - type: Transform pos: 1.5,-140.5 parent: 2 - - uid: 2543 + - uid: 16175 components: - type: Transform pos: 2.5,-140.5 parent: 2 - - uid: 2544 + - uid: 16176 components: - type: Transform pos: 3.5,-140.5 parent: 2 - - uid: 2547 + - uid: 16177 components: - type: Transform pos: 5.5,-140.5 parent: 2 - - uid: 2548 + - uid: 16178 components: - type: Transform pos: 6.5,-140.5 parent: 2 - - uid: 2549 + - uid: 16179 components: - type: Transform pos: 7.5,-140.5 parent: 2 - - uid: 2552 + - uid: 16180 components: - type: Transform pos: 7.5,-141.5 parent: 2 - - uid: 2553 + - uid: 16181 components: - type: Transform pos: 7.5,-142.5 parent: 2 - - uid: 2554 + - uid: 16182 components: - type: Transform pos: 7.5,-143.5 parent: 2 - - uid: 2555 + - uid: 16183 components: - type: Transform pos: 7.5,-144.5 parent: 2 - - uid: 2591 + - uid: 16184 components: - type: Transform pos: -1.5,-152.5 parent: 2 - - uid: 2593 + - uid: 16185 components: - type: Transform pos: -1.5,-150.5 parent: 2 - - uid: 2606 + - uid: 16186 components: - type: Transform pos: -3.5,-137.5 parent: 2 - - uid: 2607 + - uid: 16187 components: - type: Transform pos: -2.5,-137.5 parent: 2 - - uid: 2608 + - uid: 16188 components: - type: Transform pos: -1.5,-137.5 parent: 2 - - uid: 2609 + - uid: 16189 components: - type: Transform pos: -1.5,-135.5 parent: 2 - - uid: 2610 + - uid: 16190 components: - type: Transform pos: -1.5,-136.5 parent: 2 - - uid: 2611 + - uid: 16191 components: - type: Transform pos: -1.5,-138.5 parent: 2 - - uid: 2612 + - uid: 16192 components: - type: Transform pos: -1.5,-142.5 parent: 2 - - uid: 2613 + - uid: 16193 components: - type: Transform pos: -1.5,-143.5 parent: 2 - - uid: 2616 + - uid: 16194 components: - type: Transform pos: -1.5,-144.5 parent: 2 - - uid: 2617 + - uid: 16195 components: - type: Transform pos: -1.5,-145.5 parent: 2 - - uid: 2618 + - uid: 16196 components: - type: Transform pos: -1.5,-146.5 parent: 2 - - uid: 2619 + - uid: 16197 components: - type: Transform pos: -1.5,-147.5 parent: 2 - - uid: 2620 + - uid: 16198 components: - type: Transform pos: -1.5,-148.5 parent: 2 - - uid: 2621 + - uid: 16199 components: - type: Transform pos: -1.5,-149.5 parent: 2 - - uid: 2622 + - uid: 16200 components: - type: Transform pos: -2.5,-149.5 parent: 2 - - uid: 2677 + - uid: 16201 components: - type: Transform pos: 1.5,-138.5 parent: 2 - - uid: 2679 + - uid: 16202 components: - type: Transform pos: 1.5,-139.5 parent: 2 - - uid: 2681 + - uid: 16203 components: - type: Transform pos: 4.5,-136.5 parent: 2 - - uid: 2682 + - uid: 16204 components: - type: Transform pos: 3.5,-136.5 parent: 2 - - uid: 2685 + - uid: 16205 components: - type: Transform pos: 7.5,-139.5 parent: 2 - - uid: 2700 + - uid: 16206 components: - type: Transform pos: 5.5,-136.5 parent: 2 - - uid: 2734 + - uid: 16207 components: - type: Transform pos: 4.5,-150.5 parent: 2 - - uid: 2735 + - uid: 16208 components: - type: Transform pos: 5.5,-150.5 parent: 2 - - uid: 2736 + - uid: 16209 components: - type: Transform pos: 6.5,-150.5 parent: 2 - - uid: 2737 + - uid: 16210 components: - type: Transform pos: 7.5,-150.5 parent: 2 - - uid: 2927 + - uid: 16211 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 2948 + - uid: 16212 components: - type: Transform pos: 2.5,-169.5 parent: 2 - - uid: 3032 + - uid: 16213 components: - type: Transform pos: -0.5,-173.5 parent: 2 - - uid: 3035 + - uid: 16214 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 3043 + - uid: 16215 components: - type: Transform pos: -5.5,-177.5 parent: 2 - - uid: 3046 + - uid: 16216 components: - type: Transform pos: -5.5,-175.5 parent: 2 - - uid: 3050 + - uid: 16217 components: - type: Transform pos: -5.5,-171.5 parent: 2 - - uid: 3056 + - uid: 16218 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 3057 + - uid: 16219 components: - type: Transform pos: 2.5,-170.5 parent: 2 - - uid: 3059 + - uid: 16220 components: - type: Transform pos: 2.5,-165.5 parent: 2 - - uid: 3061 + - uid: 16221 components: - type: Transform pos: 3.5,-164.5 parent: 2 - - uid: 3062 + - uid: 16222 components: - type: Transform pos: 4.5,-164.5 parent: 2 - - uid: 3063 + - uid: 16223 components: - type: Transform pos: 5.5,-164.5 parent: 2 - - uid: 3066 + - uid: 16224 components: - type: Transform pos: 7.5,-170.5 parent: 2 - - uid: 3073 + - uid: 16225 components: - type: Transform pos: 2.5,-171.5 parent: 2 - - uid: 3170 + - uid: 16226 components: - type: Transform pos: -0.5,-177.5 parent: 2 - - uid: 3185 + - uid: 16227 components: - type: Transform pos: -1.5,-178.5 parent: 2 - - uid: 3221 + - uid: 16228 components: - type: Transform pos: -5.5,-178.5 parent: 2 - - uid: 3224 + - uid: 16229 components: - type: Transform pos: -2.5,-178.5 parent: 2 - - uid: 3507 + - uid: 16230 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-36.5 parent: 2 - - uid: 3676 + - uid: 16231 components: - type: Transform pos: 2.5,-172.5 parent: 2 - - uid: 3681 + - uid: 16232 components: - type: Transform pos: 2.5,-176.5 parent: 2 - - uid: 3723 + - uid: 16233 components: - type: Transform pos: 1.5,-191.5 parent: 2 - - uid: 3724 + - uid: 16234 components: - type: Transform pos: 2.5,-191.5 parent: 2 - - uid: 3725 + - uid: 16235 components: - type: Transform pos: 3.5,-191.5 parent: 2 - - uid: 3726 + - uid: 16236 components: - type: Transform pos: 4.5,-191.5 parent: 2 - - uid: 3730 + - uid: 16237 components: - type: Transform pos: 4.5,-195.5 parent: 2 - - uid: 3731 + - uid: 16238 components: - type: Transform pos: 3.5,-195.5 parent: 2 - - uid: 3732 + - uid: 16239 components: - type: Transform pos: 1.5,-195.5 parent: 2 - - uid: 3733 + - uid: 16240 components: - type: Transform pos: 0.5,-195.5 parent: 2 - - uid: 3737 + - uid: 16241 components: - type: Transform pos: -1.5,-193.5 parent: 2 - - uid: 3738 + - uid: 16242 components: - type: Transform pos: -1.5,-192.5 parent: 2 - - uid: 3740 + - uid: 16243 components: - type: Transform pos: -0.5,-191.5 parent: 2 - - uid: 3750 + - uid: 16244 components: - type: Transform pos: 4.5,-196.5 parent: 2 - - uid: 3751 + - uid: 16245 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 3772 + - uid: 16246 components: - type: Transform pos: -1.5,-199.5 parent: 2 - - uid: 3773 + - uid: 16247 components: - type: Transform pos: -1.5,-200.5 parent: 2 - - uid: 4574 + - uid: 16248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-246.5 parent: 2 - - uid: 5212 + - uid: 16249 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-259.5 parent: 2 - - uid: 5215 + - uid: 16250 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 5337 + - uid: 16251 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-258.5 parent: 2 - - uid: 6195 + - uid: 16252 components: - type: Transform pos: -0.5,-168.5 parent: 2 - - uid: 6819 + - uid: 16253 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 6896 + - uid: 16254 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-258.5 parent: 2 - - uid: 7420 + - uid: 16255 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-258.5 parent: 2 - - uid: 7724 + - uid: 16256 components: - type: Transform pos: -0.5,-164.5 parent: 2 - - uid: 7729 + - uid: 16257 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-257.5 parent: 2 - - uid: 7731 + - uid: 16258 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-258.5 parent: 2 - - uid: 7732 + - uid: 16259 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-245.5 parent: 2 - - uid: 7733 + - uid: 16260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7734 + - uid: 16261 components: - type: Transform pos: 1.5,-137.5 parent: 2 - - uid: 7782 + - uid: 16262 components: - type: Transform pos: 6.5,-179.5 parent: 2 - - uid: 7792 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-245.5 parent: 2 - - uid: 7795 + - uid: 16264 components: - type: Transform pos: -1.5,-280.5 parent: 2 - - uid: 7802 + - uid: 16265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 7812 + - uid: 16266 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - - uid: 7827 + - uid: 16267 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-246.5 parent: 2 - - uid: 7873 + - uid: 16268 components: - type: Transform pos: 6.5,-177.5 parent: 2 - - uid: 7874 + - uid: 16269 components: - type: Transform pos: 6.5,-178.5 parent: 2 - - uid: 7878 + - uid: 16270 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-245.5 parent: 2 - - uid: 7883 + - uid: 16271 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 7884 + - uid: 16272 components: - type: Transform pos: 3.5,-177.5 parent: 2 - - uid: 8025 + - uid: 16273 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-246.5 parent: 2 - - uid: 8026 + - uid: 16274 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-246.5 parent: 2 - - uid: 8028 + - uid: 16275 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 8033 + - uid: 16276 components: - type: Transform pos: 1.5,-252.5 parent: 2 - - uid: 8053 + - uid: 16277 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-251.5 parent: 2 - - uid: 8058 + - uid: 16278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-250.5 parent: 2 - - uid: 8059 + - uid: 16279 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-249.5 parent: 2 - - uid: 8103 + - uid: 16280 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-249.5 parent: 2 - - uid: 8214 + - uid: 16281 components: - type: Transform pos: 6.5,-246.5 parent: 2 - - uid: 8391 + - uid: 16282 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-247.5 parent: 2 - - uid: 8478 + - uid: 16283 components: - type: Transform pos: -5.5,-168.5 parent: 2 - - uid: 8582 + - uid: 16284 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-270.5 parent: 2 - - uid: 8583 + - uid: 16285 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-272.5 parent: 2 - - uid: 8584 + - uid: 16286 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-272.5 parent: 2 - - uid: 8586 + - uid: 16287 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-275.5 parent: 2 - - uid: 8587 + - uid: 16288 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-276.5 parent: 2 - - uid: 8622 + - uid: 16289 components: - type: Transform pos: -4.5,-282.5 parent: 2 - - uid: 8623 + - uid: 16290 components: - type: Transform pos: -4.5,-283.5 parent: 2 - - uid: 8626 + - uid: 16291 components: - type: Transform pos: -1.5,-277.5 parent: 2 - - uid: 8648 + - uid: 16292 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-275.5 parent: 2 - - uid: 8649 + - uid: 16293 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-275.5 parent: 2 - - uid: 8650 + - uid: 16294 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-283.5 parent: 2 - - uid: 8653 + - uid: 16295 components: - type: Transform pos: -1.5,-286.5 parent: 2 - - uid: 8654 + - uid: 16296 components: - type: Transform pos: -1.5,-287.5 parent: 2 - - uid: 8656 + - uid: 16297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-270.5 parent: 2 - - uid: 8666 + - uid: 16298 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - - uid: 8671 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-281.5 parent: 2 - - uid: 8682 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-283.5 parent: 2 - - uid: 8692 + - uid: 16301 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-286.5 parent: 2 - - uid: 8699 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - - uid: 8765 + - uid: 16303 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-275.5 parent: 2 - - uid: 8766 + - uid: 16304 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-275.5 parent: 2 - - uid: 8931 + - uid: 16305 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-258.5 parent: 2 - - uid: 9852 + - uid: 16306 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-258.5 parent: 2 - - uid: 9865 + - uid: 16307 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-249.5 parent: 2 - - uid: 10064 + - uid: 16308 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 10075 + - uid: 16309 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-249.5 parent: 2 - - uid: 10329 + - uid: 16310 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-258.5 parent: 2 - - uid: 10675 + - uid: 16311 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 11903 + - uid: 16312 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-387.5 parent: 2 - - uid: 11904 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-387.5 parent: 2 - - uid: 11905 + - uid: 16314 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-388.5 parent: 2 - - uid: 11908 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-387.5 parent: 2 - - uid: 11911 + - uid: 16316 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-383.5 parent: 2 - - uid: 11941 + - uid: 16317 components: - type: Transform pos: -2.5,-385.5 parent: 2 - - uid: 11942 + - uid: 16318 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-384.5 parent: 2 - - uid: 11947 + - uid: 16319 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-387.5 parent: 2 - - uid: 11948 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-382.5 parent: 2 - - uid: 11949 + - uid: 16321 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-383.5 parent: 2 - - uid: 11950 + - uid: 16322 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-387.5 parent: 2 - - uid: 11952 + - uid: 16323 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-387.5 parent: 2 - - uid: 11994 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-385.5 parent: 2 - - uid: 11995 - components: - - type: Transform - pos: -2.5,-171.5 - parent: 2 - - uid: 11996 - components: - - type: Transform - pos: -3.5,-171.5 - parent: 2 - - uid: 12000 - components: - - type: Transform - pos: -1.5,-171.5 - parent: 2 - - uid: 12001 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-385.5 parent: 2 - - uid: 12002 + - uid: 16329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-386.5 parent: 2 - - uid: 12003 + - uid: 16330 components: - type: Transform pos: -0.5,-171.5 parent: 2 - - uid: 12005 + - uid: 16331 components: - type: Transform pos: -5.5,-169.5 parent: 2 - - uid: 12006 + - uid: 16332 components: - type: Transform pos: -0.5,-170.5 parent: 2 - - uid: 12009 + - uid: 16333 components: - type: Transform pos: -4.5,-167.5 parent: 2 - - uid: 12010 + - uid: 16334 components: - type: Transform pos: -1.5,-167.5 parent: 2 - - uid: 12011 - components: - - type: Transform - pos: -4.5,-171.5 - parent: 2 - - uid: 12084 + - uid: 16335 components: - type: Transform pos: -0.5,-167.5 parent: 2 - - uid: 12085 + - uid: 16336 components: - type: Transform pos: -2.5,-167.5 parent: 2 - - uid: 12086 + - uid: 16337 components: - type: Transform pos: -3.5,-167.5 parent: 2 - - uid: 12096 + - uid: 16338 components: - type: Transform pos: -2.5,-164.5 parent: 2 - - uid: 12097 + - uid: 16339 components: - type: Transform pos: -1.5,-164.5 parent: 2 - - uid: 12110 + - uid: 16340 components: - type: Transform pos: -0.5,-166.5 parent: 2 - - uid: 12116 + - uid: 16341 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-374.5 parent: 2 - - uid: 12130 + - uid: 16342 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-374.5 parent: 2 - - uid: 12131 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-374.5 parent: 2 - - uid: 12176 + - uid: 16344 components: - type: Transform pos: -5.5,-167.5 parent: 2 - - uid: 12204 + - uid: 16345 components: - type: Transform pos: -5.5,-166.5 parent: 2 - - uid: 12209 + - uid: 16346 components: - type: Transform pos: -5.5,-164.5 parent: 2 - - uid: 12215 + - uid: 16347 components: - type: Transform pos: -5.5,-165.5 parent: 2 - - uid: 13450 + - uid: 16348 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 13469 + - uid: 16349 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-258.5 parent: 2 - - uid: 13471 + - uid: 16350 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-254.5 parent: 2 - - uid: 13990 + - uid: 16351 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-255.5 parent: 2 - - uid: 13996 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-257.5 parent: 2 - - uid: 14001 + - uid: 16353 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 14021 + - uid: 16354 components: - type: Transform pos: -4.5,-164.5 parent: 2 - - uid: 14647 + - uid: 16355 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-246.5 parent: 2 - - uid: 14803 + - uid: 16356 components: - type: Transform pos: -2.5,-70.5 parent: 2 - proto: WallSolidDiagonal entities: - - uid: 1683 + - uid: 16357 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-93.5 parent: 2 - - uid: 1688 + - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-83.5 parent: 2 - - uid: 2246 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-108.5 parent: 2 - - uid: 2563 + - uid: 16360 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-147.5 parent: 2 - - uid: 2824 + - uid: 16361 components: - type: Transform pos: 2.5,-150.5 parent: 2 - - uid: 3225 + - uid: 16362 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 8850 + - uid: 16363 components: - type: Transform pos: -1.5,-191.5 parent: 2 - proto: WallSolidRust entities: - - uid: 459 + - uid: 16364 components: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 460 + - uid: 16365 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 759 + - uid: 16366 components: - type: Transform pos: -1.5,-35.5 parent: 2 - - uid: 963 + - uid: 16367 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 1024 + - uid: 16368 components: - type: Transform pos: 3.5,-66.5 parent: 2 - - uid: 1082 + - uid: 16369 components: - type: Transform pos: -5.5,-93.5 parent: 2 - - uid: 1105 + - uid: 16370 components: - type: Transform pos: 3.5,-65.5 parent: 2 - - uid: 1128 + - uid: 16371 components: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 1230 + - uid: 16372 components: - type: Transform pos: 2.5,-71.5 parent: 2 - - uid: 1641 + - uid: 16373 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 1646 + - uid: 16374 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 1647 + - uid: 16375 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 1665 + - uid: 16376 components: - type: Transform pos: -5.5,-94.5 parent: 2 - - uid: 1666 + - uid: 16377 components: - type: Transform pos: -4.5,-94.5 parent: 2 - - uid: 1828 + - uid: 16378 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 1873 + - uid: 16379 components: - type: Transform pos: -8.5,-117.5 parent: 2 - - uid: 1874 + - uid: 16380 components: - type: Transform pos: -7.5,-117.5 parent: 2 - - uid: 1879 + - uid: 16381 components: - type: Transform pos: -6.5,-120.5 parent: 2 - - uid: 1880 + - uid: 16382 components: - type: Transform pos: -5.5,-120.5 parent: 2 - - uid: 1886 + - uid: 16383 components: - type: Transform pos: -5.5,-121.5 parent: 2 - - uid: 1990 + - uid: 16384 components: - type: Transform pos: -3.5,-108.5 parent: 2 - - uid: 2556 + - uid: 16385 components: - type: Transform pos: 7.5,-145.5 parent: 2 - - uid: 2557 + - uid: 16386 components: - type: Transform pos: 7.5,-146.5 parent: 2 - - uid: 2558 + - uid: 16387 components: - type: Transform pos: 7.5,-147.5 parent: 2 - - uid: 2559 + - uid: 16388 components: - type: Transform pos: 6.5,-147.5 parent: 2 - - uid: 2605 + - uid: 16389 components: - type: Transform pos: -5.5,-137.5 parent: 2 - - uid: 2624 + - uid: 16390 components: - type: Transform pos: -4.5,-149.5 parent: 2 - - uid: 2625 + - uid: 16391 components: - type: Transform pos: -5.5,-149.5 parent: 2 - - uid: 2683 + - uid: 16392 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 2684 + - uid: 16393 components: - type: Transform pos: 7.5,-137.5 parent: 2 - - uid: 2689 + - uid: 16394 components: - type: Transform pos: 2.5,-137.5 parent: 2 - - uid: 2691 + - uid: 16395 components: - type: Transform pos: 2.5,-136.5 parent: 2 - - uid: 2701 + - uid: 16396 components: - type: Transform pos: 6.5,-136.5 parent: 2 - - uid: 3160 + - uid: 16397 components: - type: Transform pos: 2.5,-163.5 parent: 2 - - uid: 3167 + - uid: 16398 components: - type: Transform pos: -0.5,-172.5 parent: 2 - - uid: 3179 + - uid: 16399 components: - type: Transform pos: -5.5,-176.5 parent: 2 - - uid: 3180 + - uid: 16400 components: - type: Transform pos: -5.5,-174.5 parent: 2 - - uid: 3184 + - uid: 16401 components: - type: Transform pos: -5.5,-172.5 parent: 2 - - uid: 3222 + - uid: 16402 components: - type: Transform pos: -4.5,-178.5 parent: 2 - - uid: 3223 + - uid: 16403 components: - type: Transform pos: -3.5,-178.5 parent: 2 - - uid: 3734 + - uid: 16404 components: - type: Transform pos: -0.5,-195.5 parent: 2 - - uid: 3735 + - uid: 16405 components: - type: Transform pos: -1.5,-195.5 parent: 2 - - uid: 3736 + - uid: 16406 components: - type: Transform pos: -1.5,-194.5 parent: 2 - - uid: 3771 + - uid: 16407 components: - type: Transform pos: -1.5,-196.5 parent: 2 - proto: WardrobeBlackFilled entities: - - uid: 14352 + - uid: 16408 components: - type: Transform pos: 13.5,-71.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 14389 + - uid: 16409 components: - type: Transform pos: 17.5,-67.5 parent: 2 - proto: WardrobeCargoFilled entities: - - uid: 6684 + - uid: 16410 components: - type: Transform pos: 1.5,-276.5 parent: 2 - proto: WardrobeGreenFilled entities: - - uid: 14365 + - uid: 16411 components: - type: Transform pos: 14.5,-71.5 parent: 2 - proto: WardrobeGreyFilled entities: - - uid: 14378 + - uid: 16412 components: - type: Transform pos: 17.5,-71.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 4710 + - uid: 16413 components: - type: Transform pos: 14.5,-67.5 parent: 2 - - uid: 14376 + - uid: 16414 components: - type: Transform pos: 16.5,-71.5 parent: 2 - - uid: 14382 + - uid: 16415 components: - type: Transform pos: 16.5,-75.5 parent: 2 - - uid: 14387 + - uid: 16416 components: - type: Transform pos: 16.5,-67.5 parent: 2 - proto: WardrobePinkFilled entities: - - uid: 14038 + - uid: 16417 components: - type: Transform pos: 13.5,-67.5 parent: 2 - - uid: 14385 + - uid: 16418 components: - type: Transform pos: 17.5,-75.5 parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 11440 + - uid: 16419 components: - type: Transform pos: 6.5,-367.5 parent: 2 - - uid: 11441 + - uid: 16420 components: - type: Transform pos: 6.5,-364.5 parent: 2 - - uid: 11442 + - uid: 16421 components: - type: Transform pos: -5.5,-364.5 parent: 2 - - uid: 11443 + - uid: 16422 components: - type: Transform pos: -5.5,-367.5 parent: 2 - - uid: 11444 + - uid: 16423 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 11445 + - uid: 16424 components: - type: Transform pos: 6.5,-369.5 parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 9950 + - uid: 16425 components: - type: Transform pos: 3.5,-310.5 parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 8625 + - uid: 16426 components: - type: Transform pos: -6.5,-284.5 parent: 2 - proto: WardrobeScienceFilled entities: - - uid: 9828 + - uid: 16427 components: - type: Transform pos: -2.5,-311.5 parent: 2 - - uid: 10032 + - uid: 16428 components: - type: Transform pos: -2.5,-312.5 parent: 2 - proto: WardrobeVirologyFilled entities: - - uid: 3910 + - uid: 16429 components: - type: Transform pos: -5.5,-198.5 parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 14368 + - uid: 16430 components: - type: Transform pos: 14.5,-75.5 parent: 2 - proto: WardrobeYellowFilled entities: - - uid: 14367 + - uid: 16431 components: - type: Transform pos: 13.5,-75.5 parent: 2 - proto: WarningAir entities: - - uid: 8117 + - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad @@ -104661,7 +104094,7 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 12017 + - uid: 16433 components: - type: Transform rot: -1.5707963267948966 rad @@ -104669,21 +104102,21 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 12222 + - uid: 16434 components: - type: Transform pos: -18.5,-258.5 parent: 2 - proto: WarningO2 entities: - - uid: 12569 + - uid: 16435 components: - type: Transform pos: -18.5,-256.5 parent: 2 - proto: WarningPlasma entities: - - uid: 6784 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad @@ -104691,7 +104124,7 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 2875 + - uid: 16437 components: - type: Transform rot: 1.5707963267948966 rad @@ -104700,7 +104133,7 @@ entities: - type: WarpPoint location: 'Car 05: Chapel, Library' - type: BombingTarget - - uid: 2880 + - uid: 16438 components: - type: Transform rot: 1.5707963267948966 rad @@ -104709,7 +104142,7 @@ entities: - type: WarpPoint location: 'Car 01: Arrivals, Evacuation' - type: BombingTarget - - uid: 2881 + - uid: 16439 components: - type: Transform rot: 1.5707963267948966 rad @@ -104718,7 +104151,7 @@ entities: - type: WarpPoint location: 'Car 02: Bar' - type: BombingTarget - - uid: 2883 + - uid: 16440 components: - type: Transform rot: 1.5707963267948966 rad @@ -104727,7 +104160,7 @@ entities: - type: WarpPoint location: 'Car 03: Kitchen, Hydroponic' - type: BombingTarget - - uid: 2885 + - uid: 16441 components: - type: Transform rot: 1.5707963267948966 rad @@ -104736,7 +104169,7 @@ entities: - type: WarpPoint location: 'Car 04: HoP, Dormatories' - type: BombingTarget - - uid: 3150 + - uid: 16442 components: - type: Transform rot: 3.141592653589793 rad @@ -104745,7 +104178,7 @@ entities: - type: WarpPoint location: 'Car 06: Med' - type: BombingTarget - - uid: 4570 + - uid: 16443 components: - type: Transform rot: 3.141592653589793 rad @@ -104754,7 +104187,7 @@ entities: - type: WarpPoint location: 'Car 08: Solar panels' - type: BombingTarget - - uid: 8358 + - uid: 16444 components: - type: Transform pos: 0.5,-252.5 @@ -104762,7 +104195,7 @@ entities: - type: WarpPoint location: 'Car 09: Engneering' - type: BombingTarget - - uid: 8984 + - uid: 16445 components: - type: Transform rot: -1.5707963267948966 rad @@ -104771,7 +104204,7 @@ entities: - type: WarpPoint location: 'Car 10: Cargo' - type: BombingTarget - - uid: 10623 + - uid: 16446 components: - type: Transform pos: 0.5,-308.5 @@ -104779,7 +104212,7 @@ entities: - type: WarpPoint location: 'Car 11: RnD' - type: BombingTarget - - uid: 10805 + - uid: 16447 components: - type: Transform pos: 0.5,-338.5 @@ -104787,7 +104220,7 @@ entities: - type: WarpPoint location: 'Car 12: Brig' - type: BombingTarget - - uid: 11945 + - uid: 16448 components: - type: Transform rot: -1.5707963267948966 rad @@ -104798,129 +104231,129 @@ entities: - type: BombingTarget - proto: WaterCooler entities: - - uid: 204 + - uid: 16449 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 2850 + - uid: 16450 components: - type: Transform pos: 2.5,-333.5 parent: 2 - - uid: 7572 + - uid: 16451 components: - type: Transform pos: 7.5,-199.5 parent: 2 - - uid: 13123 + - uid: 16452 components: - type: Transform pos: -0.5,-356.5 parent: 2 - proto: WaterTankFull entities: - - uid: 1733 + - uid: 16453 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - uid: 2884 + - uid: 16454 components: - type: Transform pos: 4.5,-151.5 parent: 2 - - uid: 2897 + - uid: 16455 components: - type: Transform pos: -2.5,-150.5 parent: 2 - - uid: 9063 + - uid: 16456 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 12119 + - uid: 16457 components: - type: Transform pos: -2.5,-374.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 2322 + - uid: 16458 components: - type: Transform pos: -2.5,-82.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 10966 + - uid: 16459 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - - uid: 12893 + - uid: 16460 components: - type: Transform pos: -0.5,-366.5 parent: 2 - proto: WeaponDisabler entities: - - uid: 21784 + - uid: 16461 components: - type: Transform pos: 0.10163805,-366.3702 parent: 2 - proto: WeaponDisablerPractice entities: - - uid: 11524 + - uid: 16462 components: - type: Transform pos: 5.5389,-350.683 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 12363 + - uid: 16463 components: - type: Transform pos: 1.2513196,-368.03192 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 12774 + - uid: 5609 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - - uid: 15297 + - uid: 16464 components: - type: Transform pos: -4.3806252,-346.3184 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 9688 + - uid: 16465 components: - type: Transform pos: 30.5,-308.5 parent: 2 - - uid: 9690 + - uid: 16466 components: - type: Transform pos: 30.5,-306.5 parent: 2 - - uid: 9705 + - uid: 16467 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9706 + - uid: 16468 components: - type: Transform rot: 3.141592653589793 rad @@ -104928,14 +104361,14 @@ entities: parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 9942 + - uid: 16469 components: - type: Transform pos: 3.4013178,-313.2785 parent: 2 - proto: WeaponWaterPistol entities: - - uid: 11014 + - uid: 16470 components: - type: Transform rot: -1.5707963267948966 rad @@ -104943,52 +104376,52 @@ entities: parent: 2 - proto: WeedSpray entities: - - uid: 26464 + - uid: 16471 components: - type: Transform pos: 0.072262526,-370.32172 parent: 2 - proto: WelderIndustrial entities: - - uid: 16800 + - uid: 3961 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WelderIndustrialAdvanced entities: - - uid: 14342 + - uid: 16472 components: - type: Transform pos: 8.601893,-250.1304 parent: 2 - proto: WelderMini entities: - - uid: 11436 + - uid: 16473 components: - type: Transform pos: 4.523847,-358.3457 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1597 + - uid: 16474 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 2334 + - uid: 16475 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 2882 + - uid: 16476 components: - type: Transform pos: 3.5,-151.5 parent: 2 - - uid: 6678 + - uid: 16477 components: - type: Transform anchored: True @@ -104996,58 +104429,58 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 8472 + - uid: 16478 components: - type: Transform pos: -7.5,-173.5 parent: 2 - - uid: 8514 + - uid: 16479 components: - type: Transform pos: 15.5,-242.5 parent: 2 - - uid: 8561 + - uid: 16480 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 9064 + - uid: 16481 components: - type: Transform pos: 1.5,-282.5 parent: 2 - - uid: 15216 + - uid: 16482 components: - type: Transform pos: 8.5,-251.5 parent: 2 - - uid: 15270 + - uid: 16483 components: - type: Transform pos: 6.5,-245.5 parent: 2 - - uid: 16881 + - uid: 16484 components: - type: Transform pos: 10.5,-298.5 parent: 2 - proto: WetFloorSign entities: - - uid: 12681 + - uid: 16485 components: - type: Transform pos: -3.1763532,-150.31618 parent: 2 - proto: WindoorBarLocked entities: - - uid: 15584 + - uid: 16486 components: - type: Transform pos: -0.5,-65.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 1650 + - uid: 16487 components: - type: Transform rot: -1.5707963267948966 rad @@ -105055,12 +104488,12 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 2248 + - uid: 16488 components: - type: Transform pos: -0.5,-122.5 parent: 2 - - uid: 14877 + - uid: 16489 components: - type: Transform rot: 1.5707963267948966 rad @@ -105068,11 +104501,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 14980 + - uid: 16490 components: - type: Transform rot: 1.5707963267948966 rad @@ -105080,41 +104513,41 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - proto: WindoorSecureArmoryLocked entities: - - uid: 93 + - uid: 16491 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 2471 + - uid: 16492 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3680 + - uid: 16493 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 7738 + - uid: 16494 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-339.5 parent: 2 - - uid: 10085 + - uid: 16495 components: - type: Transform pos: 1.5,-366.5 parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 11002 + - uid: 16496 components: - type: Transform rot: 1.5707963267948966 rad @@ -105122,13 +104555,13 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 8504 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8537 + - uid: 16498 components: - type: Transform rot: 1.5707963267948966 rad @@ -105136,13 +104569,13 @@ entities: parent: 2 - proto: WindoorSecureChapelLocked entities: - - uid: 2687 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - - uid: 2694 + - uid: 16500 components: - type: Transform rot: 1.5707963267948966 rad @@ -105150,31 +104583,31 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 2643 + - uid: 16501 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-170.5 parent: 2 - - uid: 3067 + - uid: 16502 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3093 + - uid: 16503 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - - uid: 3094 + - uid: 16504 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-167.5 parent: 2 - - uid: 3095 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad @@ -105182,13 +104615,13 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 8275 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8305 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad @@ -105196,26 +104629,19 @@ entities: parent: 2 - proto: WindoorSecureExternalLocked entities: - - uid: 164 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 268 + - uid: 16509 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 278 + - uid: 16510 components: - type: Transform rot: -1.5707963267948966 rad @@ -105223,22 +104649,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 5 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 280 + - uid: 16511 components: - type: Transform rot: 1.5707963267948966 rad @@ -105246,22 +104667,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 4694: + 212: - DoorStatus: Close - 670: + 205: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - - uid: 282 + - uid: 16512 components: - type: Transform rot: 1.5707963267948966 rad @@ -105269,22 +104685,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 671: + 206: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 991: + 207: - DoorStatus: Close - - uid: 284 + - uid: 16513 components: - type: Transform rot: -1.5707963267948966 rad @@ -105292,42 +104703,29 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 991: + 207: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 671: + 206: - DoorStatus: Close - - uid: 333 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 605 + - uid: 16515 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 708 + - uid: 16516 components: - type: Transform rot: 1.5707963267948966 rad @@ -105335,59 +104733,41 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 1335 + - uid: 16517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 1791 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 1812 + - uid: 16519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 2646 + - uid: 16520 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 3508 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad @@ -105395,10 +104775,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 3544 + - uid: 16522 components: - type: Transform rot: -1.5707963267948966 rad @@ -105406,22 +104783,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 3545 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad @@ -105429,22 +104801,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 3546 + - uid: 16524 components: - type: Transform rot: -1.5707963267948966 rad @@ -105452,22 +104819,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 670: + 205: - DoorStatus: Close - 4694: + 212: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - - uid: 3547 + - uid: 16525 components: - type: Transform rot: -1.5707963267948966 rad @@ -105475,22 +104837,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 5262 + - uid: 16526 components: - type: Transform rot: -1.5707963267948966 rad @@ -105498,22 +104855,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5463 + - uid: 16527 components: - type: Transform rot: 1.5707963267948966 rad @@ -105521,22 +104873,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5466 + - uid: 16528 components: - type: Transform rot: -1.5707963267948966 rad @@ -105544,32 +104891,23 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 6 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 5738 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 8135 + - uid: 16530 components: - type: Transform rot: 1.5707963267948966 rad @@ -105577,22 +104915,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 8136 + - uid: 16531 components: - type: Transform rot: 1.5707963267948966 rad @@ -105600,22 +104933,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 8137 + - uid: 16532 components: - type: Transform rot: 1.5707963267948966 rad @@ -105623,22 +104951,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9343 + - uid: 16533 components: - type: Transform rot: 1.5707963267948966 rad @@ -105646,22 +104969,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 9346 + - uid: 16534 components: - type: Transform rot: 1.5707963267948966 rad @@ -105669,22 +104987,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 9347 + - uid: 16535 components: - type: Transform rot: 1.5707963267948966 rad @@ -105692,22 +105005,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 9374 + - uid: 16536 components: - type: Transform rot: -1.5707963267948966 rad @@ -105715,22 +105023,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 9423 + - uid: 16537 components: - type: Transform rot: -1.5707963267948966 rad @@ -105738,22 +105041,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 9433 + - uid: 16538 components: - type: Transform rot: -1.5707963267948966 rad @@ -105761,22 +105059,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 9439 + - uid: 16539 components: - type: Transform rot: -1.5707963267948966 rad @@ -105784,22 +105077,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9455 + - uid: 16540 components: - type: Transform rot: -1.5707963267948966 rad @@ -105807,22 +105095,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - - uid: 9459 + - uid: 16541 components: - type: Transform rot: 1.5707963267948966 rad @@ -105830,130 +105113,83 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - - uid: 11820 + - uid: 16542 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-378.5 parent: 2 - - type: DeviceLinkSink - links: - - 11821 - - uid: 14751 + - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 14757 + - uid: 16544 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14760 + - uid: 16545 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14768 + - uid: 16546 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 14783 + - uid: 16547 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 14857 + - uid: 16548 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14858 + - uid: 16549 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14859 + - uid: 16550 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14860 + - uid: 16551 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14880 + - uid: 16552 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 14890 + - uid: 16553 components: - type: Transform rot: 1.5707963267948966 rad @@ -105961,10 +105197,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14891 + - uid: 16554 components: - type: Transform rot: -1.5707963267948966 rad @@ -105972,32 +105205,19 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14978 + - uid: 16555 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 14979 + - uid: 16556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 15040 + - uid: 16557 components: - type: Transform rot: -1.5707963267948966 rad @@ -106005,61 +105225,39 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 15117 + - uid: 16558 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15118 + - uid: 16559 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15152 + - uid: 16560 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 15193 + - uid: 16561 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - - uid: 15194 + - uid: 16562 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 2238 + - uid: 16563 components: - type: Transform rot: 3.141592653589793 rad @@ -106067,19 +105265,19 @@ entities: parent: 2 - proto: WindoorSecureKitchenLocked entities: - - uid: 5844 + - uid: 16564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 5851 + - uid: 16565 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 5872 + - uid: 16566 components: - type: Transform rot: 1.5707963267948966 rad @@ -106087,19 +105285,19 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 10042 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-301.5 parent: 2 - - uid: 10106 + - uid: 16568 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10107 + - uid: 16569 components: - type: Transform rot: 1.5707963267948966 rad @@ -106107,7 +105305,7 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 11204 + - uid: 16570 components: - type: Transform rot: -1.5707963267948966 rad @@ -106115,13 +105313,13 @@ entities: parent: 2 - proto: WindoorServiceLocked entities: - - uid: 1649 + - uid: 16571 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 2741 + - uid: 16572 components: - type: Transform rot: 3.141592653589793 rad @@ -106129,176 +105327,176 @@ entities: parent: 2 - proto: Window entities: - - uid: 203 + - uid: 16573 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 205 + - uid: 16574 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 831 + - uid: 16575 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 1011 + - uid: 16576 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 1398 + - uid: 16577 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1690 + - uid: 16578 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2537 + - uid: 16579 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 2538 + - uid: 16580 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 2539 + - uid: 16581 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 2996 + - uid: 16582 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 3742 + - uid: 16583 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3743 + - uid: 16584 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3744 + - uid: 16585 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3769 + - uid: 16586 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 5137 + - uid: 16587 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 7638 + - uid: 16588 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 7758 + - uid: 16589 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 8433 + - uid: 16590 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8490 + - uid: 16591 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8521 + - uid: 16592 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-273.5 parent: 2 - - uid: 8538 + - uid: 16593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-283.5 parent: 2 - - uid: 8585 + - uid: 16594 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8627 + - uid: 16595 components: - type: Transform pos: -0.5,-275.5 parent: 2 - - uid: 8628 + - uid: 16596 components: - type: Transform pos: -1.5,-276.5 parent: 2 - - uid: 8652 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8658 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8676 + - uid: 16599 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - - uid: 8815 + - uid: 16600 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 8837 + - uid: 16601 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 9000 + - uid: 16602 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 9001 + - uid: 16603 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9003 + - uid: 16604 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 10829 + - uid: 16605 components: - type: Transform rot: -1.5707963267948966 rad @@ -106306,47 +105504,47 @@ entities: parent: 2 - proto: WindowDiagonal entities: - - uid: 8503 + - uid: 16606 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8518 + - uid: 16607 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 8519 + - uid: 16608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 8541 + - uid: 16609 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 8629 + - uid: 16610 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8635 + - uid: 16611 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8636 + - uid: 16612 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8644 + - uid: 16613 components: - type: Transform rot: 1.5707963267948966 rad @@ -106354,161 +105552,161 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 4161 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - - uid: 4162 + - uid: 16615 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-60.5 parent: 2 - - uid: 4164 + - uid: 16616 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 4165 + - uid: 16617 components: - type: Transform pos: -2.5,-65.5 parent: 2 - - uid: 4166 + - uid: 16618 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 4167 + - uid: 16619 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 4168 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-60.5 parent: 2 - - uid: 7898 + - uid: 16621 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 11770 + - uid: 16622 components: - type: Transform pos: 14.5,-58.5 parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 2303 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 2313 + - uid: 16624 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 2314 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 2315 + - uid: 16626 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 6627 + - uid: 16627 components: - type: Transform pos: 10.5,-161.5 parent: 2 - - uid: 7235 + - uid: 16628 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-163.5 parent: 2 - - uid: 7285 + - uid: 16629 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-163.5 parent: 2 - - uid: 7288 + - uid: 16630 components: - type: Transform pos: 11.5,-161.5 parent: 2 - - uid: 7289 + - uid: 16631 components: - type: Transform pos: 9.5,-161.5 parent: 2 - - uid: 7354 + - uid: 16632 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-163.5 parent: 2 - - uid: 7355 + - uid: 16633 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-156.5 parent: 2 - - uid: 7356 + - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-156.5 parent: 2 - - uid: 9464 + - uid: 16635 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-309.5 parent: 2 - - uid: 9465 + - uid: 16636 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-309.5 parent: 2 - - uid: 9467 + - uid: 16637 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-309.5 parent: 2 - - uid: 9470 + - uid: 16638 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9471 + - uid: 16639 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9472 + - uid: 16640 components: - type: Transform pos: 21.5,-305.5 parent: 2 - - uid: 11203 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad @@ -106516,1773 +105714,1773 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 195 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-23.5 parent: 2 - - uid: 271 + - uid: 16643 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-23.5 parent: 2 - - uid: 312 + - uid: 16644 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-266.5 parent: 2 - - uid: 363 + - uid: 16645 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-261.5 parent: 2 - - uid: 529 + - uid: 16646 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-30.5 parent: 2 - - uid: 556 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-159.5 parent: 2 - - uid: 557 + - uid: 16648 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-267.5 parent: 2 - - uid: 581 + - uid: 16649 components: - type: Transform pos: -6.5,-131.5 parent: 2 - - uid: 588 + - uid: 16650 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-157.5 parent: 2 - - uid: 590 + - uid: 16651 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-185.5 parent: 2 - - uid: 600 + - uid: 16652 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-264.5 parent: 2 - - uid: 607 + - uid: 16653 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-21.5 parent: 2 - - uid: 609 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-129.5 parent: 2 - - uid: 617 + - uid: 16655 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 - - uid: 644 + - uid: 16656 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-183.5 parent: 2 - - uid: 648 + - uid: 16657 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 - - uid: 649 + - uid: 16658 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 650 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 2 - - uid: 654 + - uid: 16660 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 655 + - uid: 16661 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 668 + - uid: 16662 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-293.5 parent: 2 - - uid: 669 + - uid: 16663 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-291.5 parent: 2 - - uid: 702 + - uid: 16664 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 703 + - uid: 16665 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 704 + - uid: 16666 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 - - uid: 705 + - uid: 16667 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-30.5 parent: 2 - - uid: 822 + - uid: 16668 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-163.5 parent: 2 - - uid: 885 + - uid: 16669 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-159.5 parent: 2 - - uid: 1455 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-77.5 parent: 2 - - uid: 1580 + - uid: 16671 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-102.5 parent: 2 - - uid: 1925 + - uid: 16672 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-159.5 parent: 2 - - uid: 1926 + - uid: 16673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-158.5 parent: 2 - - uid: 1943 + - uid: 16674 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-322.5 parent: 2 - - uid: 2077 + - uid: 16675 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-124.5 parent: 2 - - uid: 2179 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-323.5 parent: 2 - - uid: 2240 + - uid: 16677 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 2241 + - uid: 16678 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-124.5 parent: 2 - - uid: 2242 + - uid: 16679 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 2278 + - uid: 16680 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-325.5 parent: 2 - - uid: 2333 + - uid: 16681 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-266.5 parent: 2 - - uid: 2394 + - uid: 16682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-264.5 parent: 2 - - uid: 2483 + - uid: 16683 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-323.5 parent: 2 - - uid: 2654 + - uid: 16684 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 - - uid: 2656 + - uid: 16685 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-322.5 parent: 2 - - uid: 2686 + - uid: 16686 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 2792 + - uid: 16687 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-157.5 parent: 2 - - uid: 2861 + - uid: 16688 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-155.5 parent: 2 - - uid: 3163 + - uid: 16689 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-261.5 parent: 2 - - uid: 3216 + - uid: 16690 components: - type: Transform pos: -11.5,-242.5 parent: 2 - - uid: 3217 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-244.5 parent: 2 - - uid: 3503 + - uid: 16692 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 3504 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-132.5 parent: 2 - - uid: 3548 + - uid: 16694 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-210.5 parent: 2 - - uid: 3555 + - uid: 16695 components: - type: Transform pos: -8.5,-242.5 parent: 2 - - uid: 3601 + - uid: 16696 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-244.5 parent: 2 - - uid: 3645 + - uid: 16697 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-244.5 parent: 2 - - uid: 3739 + - uid: 16698 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 3770 + - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-237.5 parent: 2 - - uid: 3783 + - uid: 16700 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-185.5 parent: 2 - - uid: 3836 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-183.5 parent: 2 - - uid: 3851 + - uid: 16702 components: - type: Transform pos: -7.5,-242.5 parent: 2 - - uid: 4040 + - uid: 16703 components: - type: Transform pos: -10.5,-242.5 parent: 2 - - uid: 4110 + - uid: 16704 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-244.5 parent: 2 - - uid: 4188 + - uid: 16705 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-249.5 parent: 2 - - uid: 4209 + - uid: 16706 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-249.5 parent: 2 - - uid: 4217 + - uid: 16707 components: - type: Transform pos: -11.5,-247.5 parent: 2 - - uid: 4218 + - uid: 16708 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-261.5 parent: 2 - - uid: 4219 + - uid: 16709 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-261.5 parent: 2 - - uid: 4297 + - uid: 16710 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-104.5 parent: 2 - - uid: 4298 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-104.5 parent: 2 - - uid: 4312 + - uid: 16712 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-129.5 parent: 2 - - uid: 4314 + - uid: 16713 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-156.5 parent: 2 - - uid: 4355 + - uid: 16714 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-50.5 parent: 2 - - uid: 4419 + - uid: 16715 components: - type: Transform pos: -10.5,-247.5 parent: 2 - - uid: 4520 + - uid: 16716 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-48.5 parent: 2 - - uid: 4597 + - uid: 16717 components: - type: Transform pos: -8.5,-259.5 parent: 2 - - uid: 4630 + - uid: 16718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 - - uid: 4685 + - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-77.5 parent: 2 - - uid: 4690 + - uid: 16720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 - - uid: 4691 + - uid: 16721 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-21.5 parent: 2 - - uid: 4735 + - uid: 16722 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-48.5 parent: 2 - - uid: 4750 + - uid: 16723 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 5012 + - uid: 16724 components: - type: Transform pos: -5.5,-131.5 parent: 2 - - uid: 5464 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-323.5 parent: 2 - - uid: 6188 + - uid: 16726 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-165.5 parent: 2 - - uid: 6304 + - uid: 16727 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-185.5 parent: 2 - - uid: 6518 + - uid: 16728 components: - type: Transform pos: -9.5,-166.5 parent: 2 - - uid: 6625 + - uid: 16729 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 6650 + - uid: 16730 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-261.5 parent: 2 - - uid: 6667 + - uid: 16731 components: - type: Transform pos: -11.5,-259.5 parent: 2 - - uid: 6671 + - uid: 16732 components: - type: Transform pos: -10.5,-259.5 parent: 2 - - uid: 6745 + - uid: 16733 components: - type: Transform pos: -9.5,-161.5 parent: 2 - - uid: 7439 + - uid: 16734 components: - type: Transform pos: 12.5,-247.5 parent: 2 - - uid: 7440 + - uid: 16735 components: - type: Transform pos: 13.5,-247.5 parent: 2 - - uid: 7450 + - uid: 16736 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-151.5 parent: 2 - - uid: 7508 + - uid: 16737 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-325.5 parent: 2 - - uid: 7742 + - uid: 16738 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-244.5 parent: 2 - - uid: 7915 + - uid: 16739 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-244.5 parent: 2 - - uid: 7916 + - uid: 16740 components: - type: Transform pos: 9.5,-242.5 parent: 2 - - uid: 7917 + - uid: 16741 components: - type: Transform pos: 10.5,-242.5 parent: 2 - - uid: 7918 + - uid: 16742 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-257.5 parent: 2 - - uid: 7922 + - uid: 16743 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-257.5 parent: 2 - - uid: 7937 + - uid: 16744 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-164.5 parent: 2 - - uid: 8138 + - uid: 16745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-264.5 parent: 2 - - uid: 8139 + - uid: 16746 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-239.5 parent: 2 - - uid: 8141 + - uid: 16747 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-212.5 parent: 2 - - uid: 8143 + - uid: 16748 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-131.5 parent: 2 - - uid: 8144 + - uid: 16749 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-158.5 parent: 2 - - uid: 8150 + - uid: 16750 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - uid: 8152 + - uid: 16751 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-77.5 parent: 2 - - uid: 8176 + - uid: 16752 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-261.5 parent: 2 - - uid: 8204 + - uid: 16753 components: - type: Transform pos: 10.5,-259.5 parent: 2 - - uid: 8220 + - uid: 16754 components: - type: Transform pos: 13.5,-242.5 parent: 2 - - uid: 8421 + - uid: 16755 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-361.5 parent: 2 - - uid: 8479 + - uid: 16756 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-249.5 parent: 2 - - uid: 8683 + - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-293.5 parent: 2 - - uid: 8686 + - uid: 16758 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-323.5 parent: 2 - - uid: 8824 + - uid: 16759 components: - type: Transform pos: 13.5,-259.5 parent: 2 - - uid: 8945 + - uid: 16760 components: - type: Transform pos: 11.5,-259.5 parent: 2 - - uid: 8947 + - uid: 16761 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 9393 + - uid: 16762 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-168.5 parent: 2 - - uid: 9454 + - uid: 16763 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-266.5 parent: 2 - - uid: 9462 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-212.5 parent: 2 - - uid: 9500 + - uid: 16765 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-210.5 parent: 2 - - uid: 9501 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-239.5 parent: 2 - - uid: 9503 + - uid: 16767 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-237.5 parent: 2 - - uid: 9504 + - uid: 16768 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 - - uid: 9536 + - uid: 16769 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-131.5 parent: 2 - - uid: 9539 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-102.5 parent: 2 - - uid: 9541 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-156.5 parent: 2 - - uid: 9547 + - uid: 16772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-158.5 parent: 2 - - uid: 9548 + - uid: 16773 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-75.5 parent: 2 - - uid: 9549 + - uid: 16774 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 - - uid: 9550 + - uid: 16775 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 - - uid: 9684 + - uid: 16776 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-325.5 parent: 2 - - uid: 9686 + - uid: 16777 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-291.5 parent: 2 - - uid: 9854 + - uid: 16778 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-257.5 parent: 2 - - uid: 10096 + - uid: 16779 components: - type: Transform pos: 11.5,-242.5 parent: 2 - - uid: 10103 + - uid: 16780 components: - type: Transform pos: -1.5,-304.5 parent: 2 - - uid: 10104 + - uid: 16781 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10105 + - uid: 16782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-300.5 parent: 2 - - uid: 10108 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-300.5 parent: 2 - - uid: 10134 + - uid: 16784 components: - type: Transform pos: 12.5,-242.5 parent: 2 - - uid: 10143 + - uid: 16785 components: - type: Transform pos: 11.5,-247.5 parent: 2 - - uid: 10159 + - uid: 16786 components: - type: Transform pos: 10.5,-247.5 parent: 2 - - uid: 10170 + - uid: 16787 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-244.5 parent: 2 - - uid: 10276 + - uid: 16788 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-244.5 parent: 2 - - uid: 10328 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-244.5 parent: 2 - - uid: 10330 + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-261.5 parent: 2 - - uid: 10532 + - uid: 16791 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 - - uid: 11732 + - uid: 16792 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11817 + - uid: 16793 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11818 + - uid: 16794 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 12064 + - uid: 16795 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-183.5 parent: 2 - - uid: 12094 + - uid: 16796 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-261.5 parent: 2 - - uid: 12342 + - uid: 16797 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-325.5 parent: 2 - - uid: 12567 + - uid: 16798 components: - type: Transform pos: -8.5,-161.5 parent: 2 - - uid: 12880 + - uid: 16799 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 12881 + - uid: 16800 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 13350 + - uid: 16801 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-257.5 parent: 2 - - uid: 13379 + - uid: 16802 components: - type: Transform pos: 11.5,-80.5 parent: 2 - - uid: 13458 + - uid: 16803 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-136.5 parent: 2 - - uid: 14026 + - uid: 16804 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-129.5 parent: 2 - - uid: 14029 + - uid: 16805 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-142.5 parent: 2 - - uid: 14030 + - uid: 16806 components: - type: Transform pos: 10.5,-140.5 parent: 2 - - uid: 14037 + - uid: 16807 components: - type: Transform pos: 11.5,-140.5 parent: 2 - - uid: 14039 + - uid: 16808 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-142.5 parent: 2 - - uid: 14040 + - uid: 16809 components: - type: Transform pos: 10.5,-149.5 parent: 2 - - uid: 14041 + - uid: 16810 components: - type: Transform pos: 11.5,-149.5 parent: 2 - - uid: 14042 + - uid: 16811 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-151.5 parent: 2 - - uid: 14043 + - uid: 16812 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-308.5 parent: 2 - - uid: 14044 + - uid: 16813 components: - type: Transform pos: 14.5,-306.5 parent: 2 - - uid: 14045 + - uid: 16814 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-308.5 parent: 2 - - uid: 14046 + - uid: 16815 components: - type: Transform pos: 16.5,-306.5 parent: 2 - - uid: 14047 + - uid: 16816 components: - type: Transform pos: 15.5,-306.5 parent: 2 - - uid: 14048 + - uid: 16817 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-308.5 parent: 2 - - uid: 14085 + - uid: 16818 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-136.5 parent: 2 - - uid: 14086 + - uid: 16819 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-135.5 parent: 2 - - uid: 14087 + - uid: 16820 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-134.5 parent: 2 - - uid: 14088 + - uid: 16821 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-133.5 parent: 2 - - uid: 14092 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-65.5 parent: 2 - - uid: 14261 + - uid: 16823 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-71.5 parent: 2 - - uid: 14262 + - uid: 16824 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 14263 + - uid: 16825 components: - type: Transform pos: 9.5,-80.5 parent: 2 - - uid: 14264 + - uid: 16826 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 14266 + - uid: 16827 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-82.5 parent: 2 - - uid: 14267 + - uid: 16828 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-82.5 parent: 2 - - uid: 14268 + - uid: 16829 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-82.5 parent: 2 - - uid: 14269 + - uid: 16830 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-82.5 parent: 2 - - uid: 14270 + - uid: 16831 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-71.5 parent: 2 - - uid: 14271 + - uid: 16832 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-71.5 parent: 2 - - uid: 14273 + - uid: 16833 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 14274 + - uid: 16834 components: - type: Transform pos: 10.5,-69.5 parent: 2 - - uid: 14275 + - uid: 16835 components: - type: Transform pos: 11.5,-69.5 parent: 2 - - uid: 14283 + - uid: 16836 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-163.5 parent: 2 - - uid: 14332 + - uid: 16837 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-65.5 parent: 2 - - uid: 14604 + - uid: 16838 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14608 + - uid: 16839 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-244.5 parent: 2 - - uid: 14610 + - uid: 16840 components: - type: Transform pos: -9.5,-131.5 parent: 2 - - uid: 14611 + - uid: 16841 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-168.5 parent: 2 - - uid: 14733 + - uid: 16842 components: - type: Transform pos: -8.5,-131.5 parent: 2 - - uid: 14750 + - uid: 16843 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 2 - - uid: 14752 + - uid: 16844 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 - - uid: 14756 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 2 - - uid: 14758 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 2 - - uid: 14759 + - uid: 16847 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14761 + - uid: 16848 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-23.5 parent: 2 - - uid: 14765 + - uid: 16849 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-50.5 parent: 2 - - uid: 14767 + - uid: 16850 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-48.5 parent: 2 - - uid: 14769 + - uid: 16851 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-50.5 parent: 2 - - uid: 14782 + - uid: 16852 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-75.5 parent: 2 - - uid: 14784 + - uid: 16853 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-77.5 parent: 2 - - uid: 14849 + - uid: 16854 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-104.5 parent: 2 - - uid: 14850 + - uid: 16855 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-102.5 parent: 2 - - uid: 14851 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-104.5 parent: 2 - - uid: 14852 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-102.5 parent: 2 - - uid: 14853 + - uid: 16858 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-104.5 parent: 2 - - uid: 14854 + - uid: 16859 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-102.5 parent: 2 - - uid: 14855 + - uid: 16860 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-102.5 parent: 2 - - uid: 14856 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-104.5 parent: 2 - - uid: 14876 + - uid: 16862 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-131.5 parent: 2 - - uid: 14878 + - uid: 16863 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-132.5 parent: 2 - - uid: 14879 + - uid: 16864 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-131.5 parent: 2 - - uid: 14881 + - uid: 16865 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-129.5 parent: 2 - - uid: 14883 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-131.5 parent: 2 - - uid: 14884 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-129.5 parent: 2 - - uid: 14887 + - uid: 16868 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-131.5 parent: 2 - - uid: 14888 + - uid: 16869 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-129.5 parent: 2 - - uid: 14903 + - uid: 16870 components: - type: Transform pos: -7.5,-131.5 parent: 2 - - uid: 14908 + - uid: 16871 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-133.5 parent: 2 - - uid: 14909 + - uid: 16872 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-133.5 parent: 2 - - uid: 14910 + - uid: 16873 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-134.5 parent: 2 - - uid: 14918 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-136.5 parent: 2 - - uid: 14931 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-137.5 parent: 2 - - uid: 14932 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-138.5 parent: 2 - - uid: 14933 + - uid: 16877 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-139.5 parent: 2 - - uid: 14934 + - uid: 16878 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-140.5 parent: 2 - - uid: 14935 + - uid: 16879 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-141.5 parent: 2 - - uid: 14936 + - uid: 16880 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-142.5 parent: 2 - - uid: 14937 + - uid: 16881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-143.5 parent: 2 - - uid: 14938 + - uid: 16882 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-144.5 parent: 2 - - uid: 14939 + - uid: 16883 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-145.5 parent: 2 - - uid: 14940 + - uid: 16884 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-146.5 parent: 2 - - uid: 14941 + - uid: 16885 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-147.5 parent: 2 - - uid: 14942 + - uid: 16886 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-148.5 parent: 2 - - uid: 14943 + - uid: 16887 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-149.5 parent: 2 - - uid: 14944 + - uid: 16888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-150.5 parent: 2 - - uid: 14945 + - uid: 16889 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-151.5 parent: 2 - - uid: 14977 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-156.5 parent: 2 - - uid: 14981 + - uid: 16891 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-157.5 parent: 2 - - uid: 14982 + - uid: 16892 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-157.5 parent: 2 - - uid: 14983 + - uid: 16893 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-156.5 parent: 2 - - uid: 14984 + - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-155.5 parent: 2 - - uid: 14985 + - uid: 16895 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-155.5 parent: 2 - - uid: 14986 + - uid: 16896 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-154.5 parent: 2 - - uid: 14987 + - uid: 16897 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-153.5 parent: 2 - - uid: 14988 + - uid: 16898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-152.5 parent: 2 - - uid: 14989 + - uid: 16899 components: - type: Transform pos: -7.5,-153.5 parent: 2 - - uid: 14990 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 15039 + - uid: 16901 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-185.5 parent: 2 - - uid: 15041 + - uid: 16902 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-183.5 parent: 2 - - uid: 15050 + - uid: 16903 components: - type: Transform pos: 8.5,-189.5 parent: 2 - - uid: 15051 + - uid: 16904 components: - type: Transform pos: 9.5,-189.5 parent: 2 - - uid: 15052 + - uid: 16905 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-190.5 parent: 2 - - uid: 15053 + - uid: 16906 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-191.5 parent: 2 - - uid: 15054 + - uid: 16907 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-192.5 parent: 2 - - uid: 15055 + - uid: 16908 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-193.5 parent: 2 - - uid: 15056 + - uid: 16909 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-194.5 parent: 2 - - uid: 15057 + - uid: 16910 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-195.5 parent: 2 - - uid: 15058 + - uid: 16911 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-196.5 parent: 2 - - uid: 15059 + - uid: 16912 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-197.5 parent: 2 - - uid: 15060 + - uid: 16913 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-198.5 parent: 2 - - uid: 15061 + - uid: 16914 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-199.5 parent: 2 - - uid: 15062 + - uid: 16915 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-200.5 parent: 2 - - uid: 15063 + - uid: 16916 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-201.5 parent: 2 - - uid: 15064 + - uid: 16917 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-202.5 parent: 2 - - uid: 15065 + - uid: 16918 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-203.5 parent: 2 - - uid: 15066 + - uid: 16919 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-204.5 parent: 2 - - uid: 15067 + - uid: 16920 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-205.5 parent: 2 - - uid: 15068 + - uid: 16921 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-206.5 parent: 2 - - uid: 15069 + - uid: 16922 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-206.5 parent: 2 - - uid: 15070 + - uid: 16923 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-202.5 parent: 2 - - uid: 15071 + - uid: 16924 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-201.5 parent: 2 - - uid: 15072 + - uid: 16925 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-204.5 parent: 2 - - uid: 15073 + - uid: 16926 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-203.5 parent: 2 - - uid: 15074 + - uid: 16927 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-202.5 parent: 2 - - uid: 15075 + - uid: 16928 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 15076 + - uid: 16929 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-192.5 parent: 2 - - uid: 15077 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-191.5 parent: 2 - - uid: 15078 + - uid: 16931 components: - type: Transform pos: 11.5,-194.5 parent: 2 - - uid: 15079 + - uid: 16932 components: - type: Transform pos: 10.5,-193.5 parent: 2 - - uid: 15080 + - uid: 16933 components: - type: Transform pos: 8.5,-204.5 parent: 2 - - uid: 15081 + - uid: 16934 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-191.5 parent: 2 - - uid: 15113 + - uid: 16935 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-156.5 parent: 2 - - uid: 15114 + - uid: 16936 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-156.5 parent: 2 - - uid: 15115 + - uid: 16937 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-158.5 parent: 2 - - uid: 15116 + - uid: 16938 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-159.5 parent: 2 - - uid: 15149 + - uid: 16939 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-267.5 parent: 2 - - uid: 15150 + - uid: 16940 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-266.5 parent: 2 - - uid: 15151 + - uid: 16941 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-264.5 parent: 2 - - uid: 15189 + - uid: 16942 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-293.5 parent: 2 - - uid: 15190 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-291.5 parent: 2 - - uid: 15191 + - uid: 16944 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-293.5 parent: 2 - - uid: 15192 + - uid: 16945 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-291.5 parent: 2 - - uid: 15786 + - uid: 16946 components: - type: Transform pos: -8.5,-166.5 parent: 2 - - uid: 16514 + - uid: 16947 components: - type: Transform rot: 3.141592653589793 rad @@ -108300,37 +107498,37 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-167.5 parent: 2 - - uid: 16951 + - uid: 16950 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-166.5 parent: 2 - - uid: 16952 + - uid: 16951 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-165.5 parent: 2 - - uid: 16953 + - uid: 16952 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-164.5 parent: 2 - - uid: 16954 + - uid: 16953 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-163.5 parent: 2 - - uid: 16955 + - uid: 16954 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-162.5 parent: 2 - - uid: 16956 + - uid: 16955 components: - type: Transform rot: 1.5707963267948966 rad @@ -108338,38 +107536,38 @@ entities: parent: 2 - proto: Wirecutter entities: - - uid: 9673 + - uid: 16956 components: - type: Transform pos: 22.367733,-317.24506 parent: 2 - proto: WoodenSupportBeam entities: - - uid: 2753 + - uid: 16957 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2754 + - uid: 16958 components: - type: Transform pos: -3.5,-145.5 parent: 2 - proto: WoodenSupportWallBroken entities: - - uid: 2755 + - uid: 16959 components: - type: Transform pos: -4.5,-147.5 parent: 2 - proto: Wrench entities: - - uid: 2294 + - uid: 16960 components: - type: Transform pos: -2.6635373,-80.719284 parent: 2 - - uid: 10023 + - uid: 16961 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Prototypes/Actions/ninja.yml b/Resources/Prototypes/Actions/ninja.yml index adaf563692d9..47cb8a83f445 100644 --- a/Resources/Prototypes/Actions/ninja.yml +++ b/Resources/Prototypes/Actions/ninja.yml @@ -2,7 +2,7 @@ - type: entity id: ActionToggleNinjaGloves name: Toggle ninja gloves - description: Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies, downloading research and calling in a threat. + description: Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies and hacking certain computers. components: - type: InstantAction priority: -13 @@ -21,7 +21,7 @@ state: icon itemIconStyle: NoItem priority: -10 - event: !type:CreateThrowingStarEvent {} + event: !type:CreateItemEvent {} - type: entity id: ActionRecallKatana @@ -59,7 +59,7 @@ # have to plan (un)cloaking ahead of time useDelay: 5 priority: -9 - event: !type:ToggleStealthEvent + event: !type:ToggleActionEvent # katana - type: entity @@ -72,6 +72,10 @@ sprite: Objects/Magic/magicactions.rsi state: blink itemIconStyle: NoItem + sound: + path: /Audio/Magic/blink.ogg + params: + volume: 5 priority: -12 event: !type:DashEvent checkCanAccess: false diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 4b3d75bf920e..07d1a622adaf 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -37,6 +37,7 @@ description: Turn the light on and off. components: - type: InstantAction + useDelay: 1 icon: { sprite: Objects/Tools/flashlight.rsi, state: flashlight } iconOn: { sprite: Objects/Tools/flashlight.rsi, state: flashlight-on } event: !type:ToggleActionEvent diff --git a/Resources/Prototypes/Catalog/Bounties/bounties.yml b/Resources/Prototypes/Catalog/Bounties/bounties.yml index 08bb2a142250..f656eb1962f2 100644 --- a/Resources/Prototypes/Catalog/Bounties/bounties.yml +++ b/Resources/Prototypes/Catalog/Bounties/bounties.yml @@ -1,4 +1,4 @@ -- type: cargoBounty +- type: cargoBounty id: BountyArtifact reward: 2500 description: bounty-description-artifact @@ -500,6 +500,8 @@ whitelist: components: - TemperatureProtection + tags: + - Scarf - type: cargoBounty id: BountyBattery diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index ae57ea634213..71d3f00df35d 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -247,6 +247,19 @@ - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled +- type: entity + parent: ClothingBackpackDuffelSyndicateBundle + id: ClothingBackpackDuffelSyndicateRaidBundle + name: syndicate raid suit bundle + description: "Contains the Syndicate's durable raid armor suit." + components: + - type: StorageFill + contents: + - id: ClothingOuterArmorRaid + - id: ClothingHeadHelmetRaid + - id: ClothingMaskGasSyndicate + - id: ClothingHandsGlovesCombat + - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateHardsuitBundle diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index fac36ba710c5..b49fa383bcec 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -170,6 +170,8 @@ prob: 0.20 - id: BarberScissors prob: 0.05 + - id: Wristwatch + prob: 0.05 - id: BookRandomStory prob: 0.1 # Syndicate loot diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 9bd10c8ef0a2..fe8b038dd924 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -784,7 +784,7 @@ description: uplink-slipocalypse-clustersoap-desc productEntity: SlipocalypseClusterSoap cost: - Telecrystal: 3 + Telecrystal: 2 categories: - UplinkDisruption @@ -902,7 +902,7 @@ - type: listing id: UplinkReinforcementRadioSyndicate name: uplink-reinforcement-radio-name - description: uplink-reinforcement-radio-desc + description: uplink-reinforcement-radio-traitor-desc productEntity: ReinforcementRadioSyndicate icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } cost: @@ -918,7 +918,7 @@ - type: listing id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns an agent with the NukeOperative component. name: uplink-reinforcement-radio-name - description: uplink-reinforcement-radio-desc + description: uplink-reinforcement-radio-nukeops-desc productEntity: ReinforcementRadioSyndicateNukeops icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } cost: @@ -1298,6 +1298,22 @@ categories: - UplinkWearables +- type: listing + id: UplinkClothingOuterArmorRaid + name: uplink-syndie-raid-name + description: uplink-syndie-raid-desc + icon: { sprite: /Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi, state: icon } + productEntity: ClothingBackpackDuffelSyndicateRaidBundle + cost: + Telecrystal: 8 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkHardsuitSyndieElite name: uplink-hardsuit-syndieelite-name diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 8b73eee0d249..f1d99884658a 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -206,7 +206,7 @@ - type: FingerprintMask - type: entity - parent: ClothingHandsBase + parent: [ClothingHandsBase, BaseToggleClothing] id: ClothingHandsGlovesSpaceNinja name: space ninja gloves description: These black nano-enhanced gloves insulate from electricity and provide fire resistance. @@ -234,7 +234,31 @@ - type: Thieving stripTimeReduction: 1 stealthy: true + - type: ToggleClothing + action: ActionToggleNinjaGloves - type: NinjaGloves + abilities: + - components: + - type: BatteryDrainer + - type: StunProvider + noPowerPopup: ninja-no-power + whitelist: + components: + - Stamina + - type: EmagProvider + whitelist: + components: + - Airlock + - objective: StealResearchObjective + components: + - type: ResearchStealer + - objective: TerrorObjective + components: + - type: CommsHacker + threats: NinjaThreats + - objective: MassArrestObjective + components: + - type: CriminalRecordsHacker - type: entity parent: ClothingHandsGlovesColorBlack diff --git a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml index 51a56f1f1d69..da56194f7156 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml @@ -20,6 +20,8 @@ - state: icon_mask map: [ "unfoldedLayer" ] visible: false + - type: HideLayerClothing # needed since head bandana inherits from mask bandana + slots: [] - type: Tag tags: - Bandana diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 7f0c0573005d..ffa5747e871e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -111,6 +111,8 @@ - state: equipped-head - state: equipped-head-unshaded shader: unshaded + - type: PointLight + radius: 6 - type: PressureProtection highPressureMultiplier: 0.72 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index d220d55f1f52..8eeb82cbf4f9 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -391,7 +391,6 @@ - type: HideLayerClothing slots: - Hair - - Snout - HeadTop - HeadSide diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index a01d6fae5191..b44508d4a37b 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -357,6 +357,24 @@ - type: Clothing sprite: Clothing/Head/Helmets/ert_janitor.rsi +- type: entity + parent: ClothingHeadHelmetBasic + id: ClothingHeadHelmetRaid + name: syndicate raid helmet + description: An armored helmet for use with the syndicate raid suit. Very stylish. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Armor + modifiers: #There's gotta be SOME reason to use this over other helmets. + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + #Bone Helmet - type: entity parent: ClothingHeadHelmetBasic diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index c6a556b2d324..c32f485f9cad 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -183,6 +183,36 @@ - type: AddAccentClothing accent: OwOAccent +- type: entity + parent: [ClothingHeadHatCatEars, BaseToggleClothing] + id: ClothingHeadHatCatEarsValid + suffix: Valid, DO NOT MAP + components: + - type: ToggleClothing + action: ActionBecomeValid + disableOnUnequip: true + - type: ComponentToggler + parent: true + components: + - type: KillSign + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: Sprite + sprite: Clothing/Head/Hats/catears.rsi + - type: Clothing + sprite: Clothing/Head/Hats/catears.rsi + - type: AddAccentClothing + accent: OwOAccent + +- type: entity + noSpawn: true + id: ActionBecomeValid + name: Become Valid + description: "*notices your killsign* owo whats this" + components: + - type: InstantAction + event: !type:ToggleActionEvent + - type: entity parent: ClothingHeadBase id: ClothingHeadHatDogEars diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index f5ad2fb6c839..802103009533 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -11,6 +11,9 @@ - HEAD unfoldedSlots: - MASK + foldedHideLayers: [] + unfoldedHideLayers: + - Snout - type: Mask - type: IngestionBlocker - type: IdentityBlocker diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml index 1bccb4c92a3e..608f061dd890 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml @@ -29,3 +29,14 @@ tags: - ClothMade - WhitelistChameleon + +- type: entity + abstract: true + parent: ClothingNeckBase + id: ClothingScarfBase + components: + - type: Tag + tags: + - Scarf + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml index 33f582d30dee..1f9d6b8b2c67 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedRed name: striped red scarf description: A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -10,7 +10,7 @@ sprite: Clothing/Neck/Scarfs/red.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedBlue name: striped blue scarf description: A stylish striped blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -21,7 +21,7 @@ sprite: Clothing/Neck/Scarfs/blue.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedGreen name: striped green scarf description: A stylish striped green scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -32,7 +32,7 @@ sprite: Clothing/Neck/Scarfs/green.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedBlack name: striped black scarf description: A stylish striped black scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -43,7 +43,7 @@ sprite: Clothing/Neck/Scarfs/black.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedBrown name: striped brown scarf description: A stylish striped brown scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -54,7 +54,7 @@ sprite: Clothing/Neck/Scarfs/brown.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedLightBlue name: striped light blue scarf description: A stylish striped light blue scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -65,7 +65,7 @@ sprite: Clothing/Neck/Scarfs/lightblue.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedOrange name: striped orange scarf description: A stylish striped orange scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -76,7 +76,7 @@ sprite: Clothing/Neck/Scarfs/orange.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedPurple name: striped purple scarf description: A stylish striped purple scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -87,7 +87,7 @@ sprite: Clothing/Neck/Scarfs/purple.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedSyndieGreen name: striped syndicate green scarf description: A stylish striped syndicate green scarf. The perfect winter accessory for those with a keen fashion sense, and those who are in the mood to steal something. @@ -98,7 +98,7 @@ sprite: Clothing/Neck/Scarfs/syndiegreen.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedSyndieRed name: striped syndicate red scarf description: A stylish striped syndicate red scarf. The perfect winter accessory for those with a keen fashion sense, and those who are in the mood to steal something. @@ -109,7 +109,7 @@ sprite: Clothing/Neck/Scarfs/syndiered.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedCentcom name: striped CentCom scarf description: A stylish striped centcom colored scarf. The perfect winter accessory for those with a keen fashion sense, and those who need to do paperwork in the cold. @@ -120,7 +120,7 @@ sprite: Clothing/Neck/Scarfs/centcom.rsi - type: entity - parent: ClothingNeckBase + parent: ClothingScarfBase id: ClothingNeckScarfStripedZebra name: zebra scarf description: A striped scarf, a mandatory accessory for artists. diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index 56fddceaad69..b98cdd02e0c0 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingNeckBase id: ClothingNeckChameleon name: striped red scarf @@ -12,7 +12,7 @@ - type: Clothing sprite: Clothing/Neck/Scarfs/red.rsi - type: ChameleonClothing - slot: [neck] + slot: [NECK] default: ClothingNeckScarfStripedRed - type: UserInterface interfaces: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 606af0b127ab..6de0c78220fd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -99,6 +99,78 @@ reflects: - Energy +- type: entity + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + id: ClothingOuterArmorRaid + name: syndicate raid suit + description: A somewhat flexible and well-armored suit with a powerful shoulder mounted flashlight manufactured in the Gorlex Marauder's iconic blood-red color scheme, it does not protect it's wearer from space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + layers: + - state: icon + - state: light-overlay + visible: false + shader: unshaded + - type: Clothing + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.35 + Slash: 0.35 + Piercing: 0.35 + Heat: 0.35 + Caustic: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.35 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + #Shoulder mounted flashlight + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING-light + shader: unshaded + - type: Appearance + - type: HandheldLight + addPrefix: false + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: PointLight + enabled: false + color: "#80ff80" + radius: 5 + energy: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + netsync: false + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + - type: Battery + maxCharge: 600 + startingCharge: 600 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 2 + - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterArmorCult diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 2053ced0f631..bacdd0046f88 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -127,7 +127,7 @@ slots: WITHOUT_POCKET - type: entity - parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseToggleClothing] id: ClothingOuterSuitSpaceNinja name: space ninja suit description: This black technologically advanced, cybernetically-enhanced suit provides many abilities like invisibility or teleportation. @@ -136,9 +136,7 @@ sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - - type: StealthClothing - visibility: 1.1 - toggleAction: ActionTogglePhaseCloak + # hardsuit stuff - type: PressureProtection highPressureMultiplier: 0.6 lowPressureMultiplier: 1000 @@ -151,7 +149,27 @@ Slash: 0.8 Piercing: 0.8 Heat: 0.8 + # phase cloak + - type: ToggleClothing + action: ActionTogglePhaseCloak + - type: ComponentToggler + parent: true + components: + - type: Stealth + minVisibility: 0.1 + lastVisibility: 0.1 + - type: PowerCellDraw + drawRate: 1.8 # 200 seconds on the default cell + # throwing star ability + - type: ItemCreator + action: ActionCreateThrowingStar + charge: 14.4 + spawnedPrototype: ThrowingStarNinja + noPowerPopup: ninja-no-power + # core ninja suit stuff - type: NinjaSuit + - type: UseDelay + delay: 5 # disable time - type: PowerCellSlot cellSlotId: cell_slot # throwing in a recharger would bypass glove charging mechanic diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index d934a8b97e13..19fa86a63122 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -1,33 +1,39 @@ - type: entity - parent: ClothingShoesBase + parent: [ClothingShoesBase, BaseToggleClothing] id: ClothingShoesBootsMag name: magboots description: Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - - type: Sprite - sprite: Clothing/Shoes/Boots/magboots.rsi - layers: - - state: icon - map: [ "enum.ToggleVisuals.Layer" ] - - type: Clothing - sprite: Clothing/Shoes/Boots/magboots.rsi - - type: Magboots - - type: ClothingSpeedModifier - walkModifier: 0.85 - sprintModifier: 0.8 - enabled: false - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ToggleVisuals.Toggled: - enum.ToggleVisuals.Layer: - True: {state: icon-on} - False: {state: icon} - - type: StaticPrice - price: 200 - - type: Tag - tags: - - WhitelistChameleon + - type: Sprite + sprite: Clothing/Shoes/Boots/magboots.rsi + layers: + - state: icon + map: [ "enum.ToggleVisuals.Layer" ] + - type: Clothing + sprite: Clothing/Shoes/Boots/magboots.rsi + - type: ToggleClothing + action: ActionToggleMagboots + - type: ToggleVerb + text: toggle-magboots-verb-get-data-text + - type: ComponentToggler + components: + - type: NoSlip + - type: Magboots + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.8 + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: icon-on} + False: {state: icon} + - type: StaticPrice + price: 200 + - type: Tag + tags: + - WhitelistChameleon - type: entity parent: ClothingShoesBootsMag @@ -40,13 +46,9 @@ state: icon - type: Clothing sprite: Clothing/Shoes/Boots/magboots-advanced.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsAdvanced - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 1 - enabled: false - - type: NoSlip - type: Tag tags: - WhitelistChameleon @@ -64,8 +66,6 @@ sprite: Clothing/Shoes/Boots/magboots-science.rsi - type: Clothing sprite: Clothing/Shoes/Boots/magboots-science.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsSci - type: entity parent: ClothingShoesBootsMag @@ -76,7 +76,6 @@ - type: ClothingSpeedModifier walkModifier: 1.10 #PVS isn't too much of an issue when you are blind... sprintModifier: 1.10 - enabled: false - type: StaticPrice price: 3000 @@ -91,12 +90,9 @@ state: icon - type: Clothing sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsSyndie - type: ClothingSpeedModifier walkModifier: 0.95 sprintModifier: 0.9 - enabled: false - type: GasTank outputPressure: 42.6 air: @@ -104,49 +100,17 @@ volume: 0.75 temperature: 293.15 moles: - - 0.153853429 # oxygen - - 0.153853429 # nitrogen + - 0.153853429 # oxygen + - 0.153853429 # nitrogen - type: Item sprite: null size: Normal - type: entity - id: ActionBaseToggleMagboots + id: ActionToggleMagboots name: Toggle Magboots description: Toggles the magboots on and off. components: - type: InstantAction - itemIconStyle: NoItem - event: !type:ToggleMagbootsEvent - -- type: entity - id: ActionToggleMagboots - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots.rsi, state: icon } - iconOn: { sprite : Clothing/Shoes/Boots/magboots.rsi, state: icon-on } - -- type: entity - id: ActionToggleMagbootsAdvanced - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png - -- type: entity - id: ActionToggleMagbootsSci - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-science.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-science.rsi/icon-on.png - -- type: entity - id: ActionToggleMagbootsSyndie - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png + itemIconStyle: BigItem + event: !type:ToggleActionEvent diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 22cd13af6005..fae871722380 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -88,7 +88,7 @@ - type: NoSlip - type: entity - parent: [ClothingShoesBase, PowerCellSlotSmallItem] + parent: [ClothingShoesBase, PowerCellSlotSmallItem, BaseToggleClothing] id: ClothingShoesBootsSpeed name: speed boots description: High-tech boots woven with quantum fibers, able to convert electricity into pure speed! @@ -100,12 +100,11 @@ map: [ "enum.ToggleVisuals.Layer" ] - type: Clothing sprite: Clothing/Shoes/Boots/speedboots.rsi - - type: ToggleClothingSpeed - toggleAction: ActionToggleSpeedBoots + - type: ToggleClothing + action: ActionToggleSpeedBoots - type: ClothingSpeedModifier walkModifier: 1.5 sprintModifier: 1.5 - enabled: false - type: Appearance - type: GenericVisualizer visuals: @@ -130,10 +129,8 @@ description: Toggles the speed boots on and off. components: - type: InstantAction - itemIconStyle: NoItem - event: !type:ToggleClothingSpeedEvent - icon: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon } - iconOn: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon-on } + itemIconStyle: BigItem + event: !type:ToggleActionEvent - type: entity parent: ClothingShoesBase diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 4ae752345a78..80d5eab249b0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -121,6 +121,7 @@ - type: Clothing sprite: Clothing/Shoes/Specific/spaceninja.rsi - type: NoSlip + - type: Magboots # always have gravity because le suction cups - type: ClothingSpeedModifier # ninja are masters of sneaking around relatively quickly, won't break cloak walkModifier: 1.1 diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index a96ca2d23c8c..02a2ddce4116 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -57,3 +57,12 @@ - type: GroupExamine - type: Armor modifiers: {} + +# for clothing that can be toggled, like magboots +- type: entity + abstract: true + id: BaseToggleClothing + components: + - type: ItemToggle + onUse: false # can't really wear it like that + - type: ToggleClothing diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index ee300e9aeaff..4f925ed311a6 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -70,7 +70,6 @@ state: foam-west - type: SmoothEdge - type: IconSmooth - key: walls mode: NoSprite - type: FoamVisuals animationTime: 0.6 diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index fecf9f19a478..62bb923a61b3 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -113,7 +113,6 @@ components: - type: Clickable - type: Slippery - launchForwardsMultiplier: 2.0 - type: Transform noRot: true anchored: true diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 7d7d9697d2c4..00798b36e0f5 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -67,6 +67,7 @@ - ClothingHeadHatCowboyBountyHunter - ClothingNeckAutismPin - ClothingNeckGoldAutismPin + - WristwatchGold rareChance: 0.01 prototypes: - Lighter @@ -128,6 +129,7 @@ - ClothingShoesTourist - ClothingUniformJumpsuitLoungewear - ClothingHeadHatCowboyRed + - Wristwatch chance: 0.6 offset: 0.0 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index b6f9287cf7ff..b8cf755d0ff9 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -151,10 +151,9 @@ state: alive - type: entity + noSpawn: true + parent: BaseAntagSpawner id: SpawnPointGhostSpaceNinja - name: ghost role spawn point - suffix: space ninja - parent: MarkerBase components: - type: GhostRole name: ghost-role-information-space-ninja-name @@ -162,8 +161,6 @@ rules: ghost-role-information-antagonist-rules raffle: settings: default - - type: GhostRoleMobSpawner - prototype: MobHumanSpaceNinja - type: Sprite sprite: Markers/jobs.rsi layers: diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 3b8e5bde6ae8..2618207b7a90 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -112,6 +112,11 @@ - type: PowerCellSlot cellSlotId: cell_slot fitsInCharger: true + - type: ItemToggle + onUse: false # no item-borg toggling sorry + - type: AccessToggle + # TODO: refactor movement to just be based on toggle like speedboots but for the boots themselves + # TODO: or just have sentient speedboots be fast idk - type: PowerCellDraw drawRate: 0.6 - type: ItemSlots @@ -145,6 +150,7 @@ - type: Lock locked: true breakOnEmag: false + unlockOnClick: false - type: ActivatableUIRequiresLock - type: LockedWiresPanel - type: Damageable diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 075ac534c62a..3a17869dc8fc 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -29,6 +29,11 @@ node: cyborg - type: Speech speechVerb: Robotic + - type: InteractionPopup + interactSuccessString: petting-success-generic-cyborg + interactFailureString: petting-failure-generic-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisMining @@ -85,6 +90,11 @@ access: [["Cargo"], ["Salvage"], ["Command"], ["Research"]] - type: Inventory templateId: borgTall + - type: InteractionPopup + interactSuccessString: petting-success-salvage-cyborg + interactFailureString: petting-failure-salvage-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisEngineer @@ -133,6 +143,11 @@ access: [["Engineering"], ["Command"], ["Research"]] - type: Inventory templateId: borgShort + - type: InteractionPopup + interactSuccessString: petting-success-engineer-cyborg + interactFailureString: petting-failure-engineer-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisJanitor @@ -189,6 +204,11 @@ access: [["Service"], ["Command"], ["Research"]] - type: Inventory templateId: borgShort + - type: InteractionPopup + interactSuccessString: petting-success-janitor-cyborg + interactFailureString: petting-failure-janitor-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisMedical @@ -248,6 +268,11 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepHoverBorg + - type: InteractionPopup + interactSuccessString: petting-success-medical-cyborg + interactFailureString: petting-failure-medical-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisService @@ -296,6 +321,11 @@ access: [["Service"], ["Command"], ["Research"]] - type: Inventory templateId: borgTall + - type: InteractionPopup + interactSuccessString: petting-success-service-cyborg + interactFailureString: petting-failure-service-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisSyndicateAssault @@ -325,6 +355,11 @@ noMindState: synd_sec - type: Construction node: syndicateassault + - type: InteractionPopup + interactSuccessString: petting-success-syndicate-cyborg + interactFailureString: petting-failure-syndicate-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisSyndicateMedical @@ -357,6 +392,11 @@ - type: ShowHealthBars damageContainers: - Biological + - type: InteractionPopup + interactSuccessString: petting-success-syndicate-cyborg + interactFailureString: petting-failure-syndicate-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BorgChassisSyndicateSaboteur @@ -390,3 +430,8 @@ damageContainers: - Inorganic - Silicon + - type: InteractionPopup + interactSuccessString: petting-success-syndicate-cyborg + interactFailureString: petting-failure-syndicate-cyborg + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 172ed66cc3a3..d34b1b536b2c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -337,7 +337,8 @@ - type: Sprite sprite: Mobs/Silicon/Bots/supplybot.rsi layers: - - state: supplybot + - map: ["enum.DamageStateVisualLayers.Base", "movement"] + state: supplybot - type: SpriteMovement movementLayers: movement: diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index a0eb01e03b30..0c814e08f714 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -69,6 +69,7 @@ - type: RadarConsole followEntity: true - type: CargoOrderConsole + - type: BankClient - type: CrewMonitoringConsole - type: GeneralStationRecordConsole canDeleteEntries: true diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 629ba91518ae..0b718746e13e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -33,11 +33,37 @@ giveUplink: false giveObjectives: false +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentMedic + name: syndicate medic + components: + - type: Loadout + prototypes: [SyndicateReinforcementMedic] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentSpy + name: syndicate spy + components: + - type: Loadout + prototypes: [SyndicateReinforcementSpy] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentThief + name: syndicate thief + components: + - type: Loadout + prototypes: [SyndicateReinforcementThief] + - type: entity parent: MobHumanSyndicateAgentBase id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink suffix: Human, NukeOps components: + - type: Loadout + prototypes: [SyndicateOperativeGearReinforcementNukeOps] - type: NukeOperative # Nuclear Operative @@ -68,28 +94,3 @@ - type: NpcFactionMember factions: - Syndicate - -# Space Ninja -- type: entity - noSpawn: true - name: Space Ninja - parent: MobHuman - id: MobHumanSpaceNinja - components: - - type: RandomHumanoidAppearance - randomizeName: false - - type: Loadout - prototypes: [SpaceNinjaGear] - - type: NpcFactionMember - factions: - - Syndicate - - type: SpaceNinja - - type: GenericAntag - rule: Ninja - - type: AutoImplant - implants: - - DeathAcidifierImplant - - type: RandomMetadata - nameSegments: - - names_ninja_title - - names_ninja diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 5bcc33b5f6d5..47baca61347b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -607,6 +607,8 @@ - type: randomHumanoidSettings id: LostCargoTechnician parent: EventHumanoid + speciesBlacklist: + - Vox components: - type: GhostRole name: ghost-role-information-lost-cargo-technical-name @@ -658,6 +660,8 @@ id: ClownTroupe parent: EventHumanoid randomizeName: false + speciesBlacklist: + - Vox components: - type: GhostRole name: ghost-role-information-clown-troupe-name @@ -708,6 +712,8 @@ - type: randomHumanoidSettings id: TravelingChef parent: EventHumanoid + speciesBlacklist: + - Vox components: - type: GhostRole name: ghost-role-information-traveling-chef-name @@ -768,6 +774,8 @@ - type: randomHumanoidSettings id: DisasterVictimHead parent: EventHumanoidMindShielded + speciesBlacklist: + - Vox components: - type: GhostRole name: ghost-role-information-disaster-victim-name @@ -826,6 +834,8 @@ - type: randomHumanoidSettings id: SyndieDisasterVictim parent: EventHumanoid + speciesBlacklist: + - Vox components: - type: NpcFactionMember factions: diff --git a/Resources/Prototypes/Entities/Mobs/Player/vox.yml b/Resources/Prototypes/Entities/Mobs/Player/vox.yml index e7ad39d73161..28906584cb92 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/vox.yml @@ -1,5 +1,5 @@ - type: entity save: false - name: Urist McVox + name: Uristititi McVox parent: BaseMobVox - id: MobVox \ No newline at end of file + id: MobVox diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index d956f1871d78..8702bbe0218c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -142,9 +142,6 @@ - Pacified - StaminaModifier - Flashed - - type: Reflect - enabled: false - reflectProb: 0 - type: Body prototype: Human requiredLegs: 2 diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index ad543620cf89..0d93e6fe51a8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -71,5 +71,11 @@ components: - type: HumanoidAppearance species: Reptilian + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + - type: Inventory + speciesId: reptilian #Weh diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index caa3690e5d20..6d5c8697f46d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -53,7 +53,6 @@ - type: Damageable damageContainer: Biological damageModifierSet: Slime - - type: Geras - type: PassiveDamage # Around 8 damage a minute healed allowedStates: - Alive diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 4d5239e50c56..02e2791e3541 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -26,6 +26,30 @@ layerKey: dummy parameterTexture: displacementMap parameterUV: displacementUV + eyes: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: eyes + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV + gloves: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: hand + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV + back: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: back + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV - type: Speech speechVerb: Vox speechSounds: Vox @@ -124,4 +148,28 @@ layerKey: dummy parameterTexture: displacementMap parameterUV: displacementUV + eyes: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: eyes + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV + gloves: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: hand + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV + back: + layer: + sprite: Mobs/Species/Vox/displacement.rsi + state: back + copyToShaderParameters: + layerKey: dummy + parameterTexture: displacementMap + parameterUV: displacementUV diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index fae47113107d..3a555beebfbd 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -99,6 +99,8 @@ - Piercing - Heat - Shock + - Cold + - Caustic - type: DamageOnHighSpeedImpact damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 5d77c91a5db0..a51a9a19306e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -78,6 +78,9 @@ solution: drink - type: FitsInDispenser solution: drink + - type: Tag + tags: + - DrinkGlass # Transformable container - normal glass - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index f5cb260e03bd..b6488dbe8bf0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -432,6 +432,7 @@ whitelist: tags: - Cola + hideStackVisualsWhenClosed: false - type: StorageFill contents: - id: DrinkColaCan diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index f97d87a9c503..09ec706e1fe7 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -148,6 +148,9 @@ - state: tin - state: plain - type: CreamPie + - type: ThrowingAngle + angle: 180 + - type: LandAtCursor - type: ContainerContainer containers: payloadSlot: !type:ContainerSlot diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index be23c2e43f6c..f1f30f6c46dd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -34,6 +34,9 @@ solution: food - type: TrashOnSolutionEmpty solution: food + - type: Tag + tags: + - Ingredient - type: entity abstract: true @@ -272,6 +275,9 @@ reagents: - ReagentId: Nutriment Quantity: 15 + - type: Tag + tags: + - Ingredient - type: entity name: dough @@ -684,3 +690,6 @@ reagents: - ReagentId: CocoaPowder Quantity: 2 + - type: Tag + tags: + - Ingredient diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index a74e3450e940..b2375a2dbf98 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -311,7 +311,6 @@ sprite: Objects/Specific/Hydroponics/banana.rsi heldPrefix: peel - type: Slippery - launchForwardsMultiplier: 1.5 - type: StepTrigger intersectRatio: 0.2 - type: CollisionWake @@ -388,7 +387,6 @@ path: /Audio/Effects/slip.ogg params: volume: -100 - launchForwardsMultiplier: 1.6 - type: entity name: bananium peel @@ -402,8 +400,6 @@ sprite: Objects/Materials/materials.rsi heldPrefix: peel - type: Slippery - paralyzeTime: 4 - launchForwardsMultiplier: 2 - type: entity name: carrot diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index d49c79f48b3c..6aa2686fa617 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -1,6 +1,7 @@ - type: entity parent: BaseItem - id: ReinforcementRadioSyndicate + abstract: true + id: ReinforcementRadio name: syndicate reinforcement radio description: Call in a syndicate agent of questionable quality, instantly! Only basic equipment provided. components: @@ -8,29 +9,43 @@ sprite: Objects/Devices/communication.rsi layers: - state: old-radio + - type: UserInterface + interfaces: + enum.GhostRoleRadioUiKey.Key: + type: GhostRoleRadioBoundUserInterface + - type: ActivatableUI + key: enum.GhostRoleRadioUiKey.Key + +- type: entity + parent: ReinforcementRadio + id: ReinforcementRadioSyndicate + name: syndicate reinforcement radio + description: Call in a syndicate agent of questionable quality, instantly! + components: - type: GhostRole - name: ghost-role-information-syndicate-reinforcement-name + name: ghost-role-information-syndicate-reinforcement-spy-name description: ghost-role-information-syndicate-reinforcement-description rules: ghost-role-information-syndicate-reinforcement-rules raffle: settings: default - type: GhostRoleMobSpawner - prototype: MobHumanSyndicateAgent - - type: EmitSoundOnUse - sound: /Audio/Effects/Emotes/parp1.ogg - - type: UseDelay - delay: 300 + prototype: MobHumanSyndicateAgentSpy + selectablePrototypes: ["SyndicateAgentMedic", "SyndicateAgentSpy", "SyndicateAgentThief"] - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateNukeops # Reinforcement radio exclusive to nukeops uplink suffix: NukeOps components: + - type: GhostRole + name: ghost-role-information-syndicate-reinforcement-name + description: ghost-role-information-syndicate-reinforcement-description + rules: ghost-role-information-syndicate-reinforcement-rules - type: GhostRoleMobSpawner prototype: MobHumanSyndicateAgentNukeops - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateAncestor name: syndicate genetic ancestor reinforcement radio description: Calls in a specially trained ancestor of your choosing to assist you. @@ -55,7 +70,7 @@ selectablePrototypes: ["SyndicateMonkeyNukeops", "SyndicateKoboldNukeops"] - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateSyndiCat name: syndicat reinforcement radio description: Calls in a faithfully trained cat with a microbomb to assist you. @@ -72,7 +87,7 @@ sound: /Audio/Animals/cat_meow.ogg - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateCyborgAssault # Reinforcement radio exclusive to nukeops uplink name: syndicate assault cyborg reinforcement radio description: Call in a well armed assault cyborg, instantly! diff --git a/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml b/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml new file mode 100644 index 000000000000..259323fede3d --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml @@ -0,0 +1,11 @@ +- type: entity + abstract: true + parent: [BaseItem, PowerCellSlotSmallItem] + id: BaseHandheldComputer + components: + - type: ActivatableUIRequiresPowerCell + - type: ItemToggle + onUse: false # above component does the toggling + - type: PowerCellDraw + drawRate: 0 + useRate: 20 diff --git a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml index a368ec2b65d3..623efa727696 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml @@ -160,3 +160,5 @@ - AllAccess tags: - CentralCommand + - NuclearOperative + - SyndicateAgent diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 84f0f4ae94c8..04b023248e8f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -109,6 +109,9 @@ id: BaseMedicalPDA abstract: true components: + - type: ItemToggle + toggleLight: false + onUse: false - type: HealthAnalyzer scanDelay: 1 scanningEndSound: @@ -254,9 +257,7 @@ borderColor: "#C18199" - type: Icon state: pda-clown - - type: Slippery - paralyzeTime: 4 - launchForwardsMultiplier: 1.5 + - type: Slippery # secretly made of bananium - type: StepTrigger - type: CollisionWake enabled: false diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index 0d2f890a1d3e..54fc4a70c5a5 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -1,9 +1,9 @@ - type: entity + parent: BaseItem id: BaseHandheldStationMap name: station map description: Displays a readout of the current station. abstract: true - parent: BaseItem components: - type: StationMap - type: Sprite @@ -34,14 +34,9 @@ - type: entity id: HandheldStationMap parent: - - BaseHandheldStationMap - - PowerCellSlotSmallItem + - BaseHandheldStationMap + - BaseHandheldComputer suffix: Handheld, Powered - components: - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell - type: entity id: HandheldStationMapEmpty diff --git a/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml b/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml new file mode 100644 index 000000000000..7fbb4aecf615 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml @@ -0,0 +1,59 @@ +- type: entity + id: Wristwatch + parent: BaseItem + name: wristwatch + description: A cheap watch for telling time. How much did you waste playing Space Station 14? + components: + - type: Sprite + sprite: Objects/Devices/wristwatch.rsi + layers: + - state: wristwatch + - map: [ "enum.ClockVisualLayers.MinuteHand"] + - map: [ "enum.ClockVisualLayers.HourHand"] + - type: Clock + - type: Item + sprite: Objects/Devices/wristwatch.rsi + size: Small + - type: Clothing + sprite: Objects/Devices/wristwatch.rsi + slots: + - gloves + - type: Appearance + - type: Damageable + damageContainer: Inorganic + - type: StaticPrice + price: 50 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageGroupTrigger + damageGroup: Brute + damage: 25 + behaviors: + - !type:DoActsBehavior + acts: [ "Breakage" ] + +- type: entity + id: WristwatchGold + parent: Wristwatch + name: gold watch + description: A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani. + components: + - type: Sprite + sprite: Objects/Devices/goldwatch.rsi + layers: + - state: goldwatch + - map: [ "enum.ClockVisualLayers.MinuteHand"] + - map: [ "enum.ClockVisualLayers.HourHand"] + - type: Item + sprite: Objects/Devices/goldwatch.rsi + - type: Clothing + sprite: Objects/Devices/goldwatch.rsi + - type: StaticPrice + price: 500 #if you ever increase the price of kidneys, increase this too. diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml index 8cb3d88ede27..243a816a4781 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml @@ -162,8 +162,6 @@ sound: path: /Audio/Items/bikehorn.ogg - type: Slippery - paralyzeTime: 4 - launchForwardsMultiplier: 1.5 - type: StepTrigger - type: CollisionWake enabled: false diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml index 7224efa9e023..6ceb5e23edc1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml @@ -21,6 +21,7 @@ quickEquip: false slots: - back + - suitStorage sprite: Objects/Fun/Instruments/eguitar.rsi - type: Tag tags: @@ -50,6 +51,7 @@ quickEquip: false slots: - back + - suitStorage sprite: Objects/Fun/Instruments/bassguitar.rsi - type: Tag tags: @@ -78,6 +80,7 @@ quickEquip: false slots: - back + - suitStorage sprite: Objects/Fun/Instruments/rockguitar.rsi - type: Tag tags: @@ -120,6 +123,7 @@ quickEquip: false slots: - back + - suitStorage sprite: Objects/Fun/Instruments/guitar.rsi - type: Wieldable - type: Damageable # Smash it! Does 20 damage a hit, but breaks after 1 hit. diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml index 351396b5b916..64e7d7ace985 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml @@ -10,6 +10,9 @@ setup: !type:TabletopEmptySetup boardPrototype: Crowbar + - type: Tag + tags: + - TabletopBoard - type: entity id: BaseTabletopPiece # Board piece diff --git a/Resources/Prototypes/Entities/Objects/Fun/darts.yml b/Resources/Prototypes/Entities/Objects/Fun/darts.yml index dd25d503ce23..31fd4fd8e276 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/darts.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/darts.yml @@ -84,6 +84,7 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: BalloonPopper - type: entity parent: Dart diff --git a/Resources/Prototypes/Entities/Objects/Fun/error.yml b/Resources/Prototypes/Entities/Objects/Fun/error.yml index 8f3fc2113783..e4b9af61e0ae 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/error.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/error.yml @@ -16,7 +16,8 @@ - ReagentId: Nutriment Quantity: 5 - type: Slippery - launchForwardsMultiplier: 5 + paralyzeTime: 3 + launchForwardsMultiplier: 3 - type: StepTrigger intersectRatio: 0.2 - type: CollisionWake @@ -28,14 +29,14 @@ slips: shape: !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" + bounds: "-0.4,-0.3,0.4,0.3" hard: false layer: - SlipLayer fix1: shape: !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" + bounds: "-0.4,-0.3,0.4,0.3" density: 30 mask: - ItemMask diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 1ac622db86c8..33a322cb25e7 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -184,6 +184,19 @@ energy: 2 - type: RgbLightController layers: [ 0 ] + - type: Item + inhandVisuals: + left: + - state: bee-inhand-left + shader: unshaded + right: + - state: bee-inhand-right + shader: unshaded + - type: Clothing + clothingVisuals: + head: + - state: bee-equipped-HELMET + shader: unshaded - type: entity parent: BasePlushie @@ -543,6 +556,15 @@ energy: 2 - type: RgbLightController layers: [ 0 ] + - type: Item + heldPrefix: rainbowcarpplush + inhandVisuals: + left: + - state: rainbowcarpplush-inhand-left + shader: unshaded + right: + - state: rainbowcarpplush-inhand-right + shader: unshaded - type: entity parent: PlushieCarp @@ -869,6 +891,7 @@ - type: Sprite - type: Item size: Normal + - type: PacifismAllowedGun - type: entity parent: FoamWeaponBase diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index c4de4bb18f2f..a3fc4a277458 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -350,8 +350,21 @@ components: - type: Stack stackType: Diamond + baseLayer: base + layerStates: + - diamond + - diamond_2 + - diamond_3 - type: Sprite state: diamond + layers: + - state: diamond + map: ["base"] + - type: StaticPrice + price: 0 + - type: StackPrice + price: 500 + - type: Appearance - type: Item heldPrefix: diamond - type: Extractable diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index bf7dbfad5a3c..136d20cc81b9 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -66,6 +66,37 @@ - type: Stack count: 1 +- type: entity + parent: OreBase + id: DiamondOre + name: diamond ore + suffix: Full + components: + - type: Stack + stackType: DiamondOre + - type: Sprite + state: diamond + - type: Material + - type: PhysicalComposition + materialComposition: + RawDiamond: 500 + - type: Extractable + grindableSolutionName: diamondore + - type: SolutionContainerManager + solutions: + diamondore: + reagents: + - ReagentId: Carbon + Quantity: 20 + +- type: entity + parent: DiamondOre + id: DiamondOre1 + suffix: Single + components: + - type: Stack + count: 1 + - type: entity parent: OreBase id: SteelOre diff --git a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml new file mode 100644 index 000000000000..a15e30fbc720 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml @@ -0,0 +1,139 @@ +- type: entity + name: lamp + parent: BaseItem + id: ArabianLamp + description: Why the heck won't this piece of junk open!? + components: + - type: Appearance + - type: AccessReader + access: [ [ "CentralCommand" ] ] + breakOnEmag: false + - type: Lock + lockOnClick: false + breakOnEmag: false + - type: EntityStorage + capacity: 1 # Its smol. + itemCanStoreMobs: false # just leaving this here explicitly since I know at some point someone will want to use this to hold a mob. This also prevents it from becoming His Grace. + # - type: StorageFill + # contents: + # - id: PuddleSparkle # Ha! Cute. Unfortunately it despawns before the container is likely to open. + - type: ContainerContainer + containers: + entity_storage: !type:Container + - type: Item + size: Normal + heldPrefix: lamp + sprite: Objects/Misc/arabianlamp.rsi + inhandVisuals: + left: + - state: inhand-left + right: + - state: inhand-right + - type: MeleeWeapon + wideAnimationRotation: 180 + damage: + types: + Blunt: 6 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Blunt: 6 + Heat: 3 + activatedSoundOnHit: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -10 + activatedSoundOnHitNoDamage: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -12 + deactivatedSoundOnHitNoDamage: + collection: MetalThud + - type: ItemToggle + predictable: false + soundActivate: + collection: lighterOnSounds + soundDeactivate: + path: /Audio/Items/candle_blowing.ogg + params: + variation: 0.05 + volume: 10 + - type: ItemToggleHot + - type: Sprite + sprite: Objects/Misc/arabianlamp.rsi + layers: + - state: lamp + map: [ "enum.StorageVisualLayers.Base" ] + - state: lamptop + map: ["enum.StorageVisualLayers.Door"] + - state: flame + visible: false + shader: unshaded + map: ["enum.ToggleVisuals.Layer"] + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: EntityStorageVisuals + stateBaseClosed: lamp + stateDoorOpen: lamp + stateDoorClosed: lamptop + - type: ToggleableLightVisuals + spriteLayer: flame + inhandVisuals: + left: + - state: inhand-left-flame + shader: unshaded + right: + - state: inhand-right-flame + shader: unshaded + - type: SolutionContainerManager + solutions: + Welder: + reagents: + - ReagentId: WeldingFuel + Quantity: 25 + maxVol: 25 + - type: SolutionTransfer + transferAmount: 5 + canChangeTransferAmount: false + - type: Spillable + solution: Welder + - type: DrawableSolution + solution: Welder + - type: RefillableSolution + solution: Welder + - type: DrainableSolution + solution: Welder + - type: ExaminableSolution + solution: Welder + - type: SolutionRegeneration + solution: Welder + generated: + reagents: + - ReagentId: WeldingFuel + Quantity: 0.1 + duration: 5 + - type: EmitSoundOnLand + sound: + path: /Audio/Items/welder_drop.ogg + - type: Welder + fuelConsumption: 0.05 + fuelLitCost: 0.05 + tankSafe: true + - type: PointLight + enabled: false + netsync: false + radius: 5 + color: orange + - type: StaticPrice + price: 1500 + - type: Prayable + sentMessage: prayer-popup-notify-lamp-sent + notificationPrefix: prayer-chat-notify-lamp + verb: prayer-verbs-rub + verbImage: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 5aaa58dbbeee..89b421c97d4d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -7,8 +7,8 @@ - type: Sprite sprite: Objects/Misc/fire_extinguisher.rsi layers: - - state: fire_extinguisher_closed - map: [ "enabled" ] + - state: fire_extinguisher_closed + map: [ "enum.ToggleVisuals.Layer" ] - type: Item sprite: Objects/Misc/fire_extinguisher.rsi size: Normal @@ -24,6 +24,8 @@ - type: DrainableSolution solution: spray - type: SolutionTransfer + maxTransferAmount: 100 + transferAmount: 100 - type: UseDelay - type: Spray transferAmount: 10 @@ -34,8 +36,20 @@ vaporAmount: 3 vaporSpread: 90 sprayVelocity: 2.0 - - type: FireExtinguisher - hasSafety: true + - type: ItemToggle + soundActivate: + path: /Audio/Machines/button.ogg + params: + variation: 0.125 + volume: -4 + soundDeactivate: + path: /Audio/Machines/button.ogg + params: + variation: 0.125 + volume: -4 + - type: ToggleVerb + text: fire-extinguisher-component-verb-text + - type: SpraySafety - type: MeleeWeapon wideAnimationRotation: 180 damage: @@ -46,14 +60,14 @@ - type: Tool qualities: - Rolling - speedModifier: 0.5 # its very big, akward to use + speedModifier: 0.5 # its very big, awkward to use - type: Appearance - type: GenericVisualizer visuals: - enum.FireExtinguisherVisuals.Safety: - enabled: - True: { state: fire_extinguisher_closed } - False: { state: fire_extinguisher_open } + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { state: fire_extinguisher_open } + False: { state: fire_extinguisher_closed } - type: PhysicalComposition materialComposition: Steel: 100 @@ -107,4 +121,4 @@ - type: PhysicalComposition materialComposition: Steel: 50 - Glass: 40 \ No newline at end of file + Glass: 40 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 1c8d8754884f..5dbafa6416ae 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -548,6 +548,7 @@ tags: - Write - type: CargoOrderConsole + - type: BankClient - type: ActivatableUI verbText: qm-clipboard-computer-verb-text key: enum.CargoConsoleUiKey.Orders diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index 9561fa3538f7..02feda953f8c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -108,8 +108,6 @@ - type: Transform anchored: true - type: Slippery - paralyzeTime: 2 - launchForwardsMultiplier: 1.5 - type: StepTrigger intersectRatio: 0.2 - type: Physics diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index dc24ac485a11..8182accfb6f9 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -382,8 +382,10 @@ path: /Audio/Weapons/ebladehum.ogg - type: ItemToggleSize activatedSize: Huge - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: Sprite sprite: Objects/Weapons/Melee/e_shield.rsi layers: @@ -415,7 +417,6 @@ energy: 2 color: blue - type: Reflect - enabled: false reflectProb: 0.95 reflects: - Energy @@ -492,8 +493,10 @@ path: /Audio/Weapons/telescopicoff.ogg params: volume: -5 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: ItemToggleSize activatedSize: Huge - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 5678de6bafc5..efb93a88680e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -21,8 +21,6 @@ sprite: Objects/Specific/Janitorial/soap.rsi storedRotation: -90 - type: Slippery - paralyzeTime: 2 - launchForwardsMultiplier: 1.5 - type: StepTrigger intersectRatio: 0.2 - type: CollisionWake @@ -129,8 +127,8 @@ - type: SolutionContainerVisuals fillBaseName: syndie- - type: Slippery - paralyzeTime: 5 - launchForwardsMultiplier: 2.5 + paralyzeTime: 3 + launchForwardsMultiplier: 3 - type: Item heldPrefix: syndie - type: FlavorProfile @@ -154,8 +152,8 @@ layers: - state: syndie-soaplet - type: Slippery - paralyzeTime: 5 - launchForwardsMultiplier: 2.5 + paralyzeTime: 1.5 # these things are tiny + launchForwardsMultiplier: 1.5 - type: StepTrigger intersectRatio: 0.04 - type: Item @@ -196,7 +194,6 @@ - type: SolutionContainerVisuals fillBaseName: gibs- - type: Slippery - paralyzeTime: 2 - type: StepTrigger - type: Item heldPrefix: gibs @@ -221,8 +218,8 @@ - type: SolutionContainerVisuals fillBaseName: omega- - type: Slippery - paralyzeTime: 7 - launchForwardsMultiplier: 3 + paralyzeTime: 5.0 + launchForwardsMultiplier: 3.0 - type: Item heldPrefix: omega - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml index e4befcbb6706..9972fad4146c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Librarian/books_bag.yml @@ -22,5 +22,9 @@ whitelist: tags: - Book + - Dice - Document + - Figurine + - TabletopBoard + - Write - type: Dumpable diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 4a61074a8d57..2d06ed0f1dc7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -31,6 +31,11 @@ size: Large - type: Speech speechVerb: Robotic + - type: ItemToggle + soundActivate: + path: /Audio/Items/Defib/defib_safety_on.ogg + soundDeactivate: + path: /Audio/Items/Defib/defib_safety_off.ogg - type: Defibrillator zapHeal: types: 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 19a0b36ee9f9..c9ab24274daf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -1,9 +1,7 @@ - type: entity name: handheld crew monitor suffix: DO NOT MAP - parent: - - BaseItem - - PowerCellSlotSmallItem + parent: BaseHandheldComputer # CMO-only bud, don't add more. id: HandheldCrewMonitor description: A hand-held crew monitor displaying the status of suit sensors. @@ -11,10 +9,6 @@ - type: Sprite sprite: Objects/Specific/Medical/handheldcrewmonitor.rsi state: scanner - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell - type: ActivatableUI key: enum.CrewMonitoringUIKey.Key - type: UserInterface diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index c01aaa84a9d7..d8547d92948c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -21,6 +21,8 @@ interfaces: enum.HealthAnalyzerUiKey.Key: type: HealthAnalyzerBoundUserInterface + - type: ItemToggle + onUse: false - type: HealthAnalyzer scanningEndSound: path: "/Audio/Items/Medical/healthscanner.ogg" diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml index c4f7798154e3..8b1606dc5d37 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml @@ -173,12 +173,12 @@ sprite: Objects/Specific/Medical/Surgery/saw.rsi state: saw - type: Item + size: Normal sprite: Objects/Specific/Medical/Surgery/saw.rsi storedRotation: 90 - type: Tool qualities: - Sawing - speedModifier: 1.0 # No melee for regular saw because have you ever seen someone use a band saw as a weapon? It's dumb. - type: entity @@ -190,6 +190,7 @@ - type: Sprite state: improv - type: Item + size: Small heldPrefix: improv - type: MeleeWeapon damage: @@ -198,8 +199,6 @@ soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Tool - qualities: - - Sawing speedModifier: 0.5 - type: entity @@ -212,7 +211,6 @@ state: electric - type: Item heldPrefix: electric - storedRotation: 90 - type: MeleeWeapon damage: groups: @@ -220,29 +218,19 @@ soundHit: path: /Audio/Items/drill_hit.ogg - type: Tool - qualities: - - Sawing speedModifier: 1.5 - type: entity name: advanced circular saw id: SawAdvanced - parent: Saw + parent: SawElectric description: You think you can cut anything with it. components: - type: Sprite state: advanced - type: Item heldPrefix: advanced - storedRotation: 90 - type: MeleeWeapon attackRate: 1.5 - damage: - groups: - Brute: 15 - soundHit: - path: /Audio/Items/drill_hit.ogg - type: Tool - qualities: - - Sawing speedModifier: 2.0 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index bf0a3be4e51d..99f874406b42 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -36,23 +36,22 @@ - state: screen shader: unshaded visible: false - map: ["enum.PowerDeviceVisualLayers.Powered"] + map: ["enum.ToggleVisuals.Layer"] - type: Appearance - type: GenericVisualizer visuals: - enum.ProximityBeeperVisuals.Enabled: - enum.PowerDeviceVisualLayers.Powered: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: True: { visible: true } False: { visible: false } + - type: ItemToggle - type: ProximityBeeper - type: ProximityDetector - enabled: false range: 20 criteria: components: - Anomaly - type: Beeper - enabled: false minBeepInterval: 0.15 maxBeepInterval: 1.00 beepSound: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 1566a84e52da..93b2e4157211 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -505,8 +505,8 @@ - state: icon-syndicate - type: ItemBorgModule items: - - WeaponAdvancedLaser - - Machete + - WeaponPistolEchis + - EnergyDaggerLoud - type: entity id: BorgModuleOperative diff --git a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml index 5938193181e4..78abedc28abd 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml @@ -1,6 +1,6 @@ - type: entity name: handheld mass scanner - parent: [ BaseItem, PowerCellSlotSmallItem] + parent: BaseHandheldComputer id: HandHeldMassScanner description: A hand-held mass scanner. components: @@ -27,7 +27,6 @@ - type: PowerCellDraw drawRate: 3 useRate: 100 - - type: ActivatableUIRequiresPowerCell - type: ActivatableUI key: enum.RadarConsoleUiKey.Key inHandsOnly: true diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 36e629c21c11..fba506d1f95b 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -401,20 +401,6 @@ components: - type: LimitedCharges charges: 0 - - type: RCD - availablePrototypes: - - WallSolid - - FloorSteel - - Plating - - Catwalk - - Grille - - Window - - WindowDirectional - - WindowReinforcedDirectional - - ReinforcedWindow - - Airlock - - AirlockGlass - - Firelock - type: entity id: RCDRecharging diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 9db30edb52ed..cd188969b532 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -55,8 +55,10 @@ - type: ItemToggleSize activatedSize: Large - type: ItemToggleHot - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: ToggleableLightVisuals spriteLayer: flame inhandVisuals: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 0d10411cfbbf..0ecad70a64e9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -166,6 +166,8 @@ - type: TetherGun frequency: 5 dampingRatio: 4 + - type: ItemToggle + onUse: false - type: PowerCellDraw - type: Sprite sprite: Objects/Weapons/Guns/Launchers/tether_gun.rsi @@ -211,6 +213,8 @@ path: /Audio/Weapons/soup.ogg params: volume: 2 + - type: ItemToggle + onUse: false - type: PowerCellDraw - type: Sprite sprite: Objects/Weapons/Guns/Launchers/force_gun.rsi @@ -247,6 +251,7 @@ - type: Gun soundGunshot: /Audio/Weapons/Guns/Gunshots/harpoon.ogg fireRate: 0.5 + clumsyProof: true - type: BasicEntityAmmoProvider proto: GrapplingHook capacity: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ae309661fee8..8f469f87a9bc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -102,6 +102,41 @@ gun_magazine: !type:ContainerSlot gun_chamber: !type:ContainerSlot +- type: entity + name: echis + parent: BaseItem + id: WeaponPistolEchis + description: A viper for use by cyborgs. Creates .35 ammo on the fly from an internal ammo fabricator, which slowly self-charges. + components: + - type: Gun + fireRate: 5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/pistol.ogg + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/viper.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: ProjectileBatteryAmmoProvider + proto: BulletPistol + fireCost: 100 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 25 + - type: AmmoCounter + - type: entity name: cobra parent: BaseWeaponPistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 9300367cdec3..fef793487c2d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -199,7 +199,7 @@ sprite: Objects/Weapons/Guns/Rifles/foam_rifle.rsi - type: Item sprite: Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi - - type: BallisticAmmoProvider + - type: BallisticAmmoProvider whitelist: tags: - BulletFoam @@ -216,3 +216,4 @@ soundEmpty: path: /Audio/Weapons/Guns/Empty/empty.ogg clumsyProof: true + - type: PacifismAllowedGun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 252eecbd0614..f69cb4fd2da3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -66,7 +66,7 @@ - type: entity name: musket - parent: BaseWeaponSniper + parent: [BaseWeaponSniper, BaseGunWieldable] id: Musket description: This should've been in a museum long before you were born. Uses .60 anti-materiel ammo. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index fbf8b1003c35..1e0aaf61e580 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -13,10 +13,12 @@ - type: ItemToggleActiveSound activeSound: path: /Audio/Weapons/ebladehum.ogg - - type: ItemToggleSharp + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.6 - type: ItemToggleHot - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 - type: ItemToggleSize activatedSize: Huge - type: ItemToggleMeleeWeapon @@ -74,35 +76,30 @@ right: - state: inhand-right-blade shader: unshaded - - type: DisarmMalus - malus: 0 - type: Reflect - enabled: false - type: IgnitionSource temperature: 700 - type: entity - name: pen + name: energy dagger parent: EnergySword - id: EnergyDagger - suffix: E-Dagger - description: 'A dark ink pen.' + id: EnergyDaggerLoud + description: A not as loud and dangerous dagger with a beam made of pure, concentrated plasma. This one is completely undisguised. components: - - type: EnergySword - type: ItemToggle soundActivate: path: /Audio/Weapons/ebladeon.ogg params: - volume: -6 + volume: -3 soundDeactivate: path: /Audio/Weapons/ebladeoff.ogg params: - volume: -6 + volume: -3 - type: ItemToggleMeleeWeapon activatedSoundOnSwing: path: /Audio/Weapons/eblademiss.ogg params: - volume: -6 + volume: -3 variation: 0.250 activatedDamage: types: @@ -113,11 +110,14 @@ activeSound: path: /Audio/Weapons/ebladehum.ogg params: - volume: -6 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.4 + volume: -3 + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.4 - type: Sprite - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi layers: - state: e_sword - state: e_sword_blade @@ -134,7 +134,7 @@ Blunt: 1 - type: Item size: Tiny - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi - type: UseDelay delay: 1.0 - type: PointLight @@ -153,11 +153,45 @@ right: - state: inhand-right-blade shader: unshaded + - type: DisarmMalus + malus: 0 + +- type: entity + name: pen + parent: EnergyDaggerLoud + id: EnergyDagger + suffix: E-Dagger + description: 'A dark ink pen.' + components: + - type: ItemToggle + soundActivate: + path: /Audio/Weapons/ebladeon.ogg + params: + volume: -6 + soundDeactivate: + path: /Audio/Weapons/ebladeoff.ogg + params: + volume: -6 + - type: ItemToggleActiveSound + activeSound: + path: /Audio/Weapons/ebladehum.ogg + params: + volume: -6 + - type: Sprite + sprite: Objects/Weapons/Melee/e_dagger.rsi + layers: + - state: e_sword + - state: e_sword_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: Tiny + sprite: Objects/Weapons/Melee/e_dagger.rsi - type: Tag tags: - Write - - type: DisarmMalus - malus: 0 - type: entity parent: BaseItem @@ -183,15 +217,12 @@ id: EnergyCutlass description: An exotic energy weapon. components: - - type: EnergySword - type: ItemToggleMeleeWeapon activatedDamage: types: Slash: 10 Heat: 12 deactivatedSecret: true - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 - type: Sprite sprite: Objects/Weapons/Melee/e_cutlass.rsi layers: @@ -220,8 +251,8 @@ id: EnergySwordDouble description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. This can be stored in pockets. components: - - type: EnergySword - type: ItemToggle + onUse: false # wielding events control it instead soundActivate: path: /Audio/Weapons/ebladeon.ogg params: @@ -246,9 +277,13 @@ path: /Audio/Weapons/ebladehum.ogg params: volume: 3 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.7 + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.7 - type: Wieldable + wieldSound: null # esword light sound instead - type: MeleeWeapon wideAnimationRotation: -135 attackRate: 1.5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml index 11efeba5f8c0..e472157081a8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml @@ -12,6 +12,13 @@ damage: types: Piercing: 1 + - type: DamageOtherOnHit + damage: + types: + Piercing: 1 - type: Item size: Tiny - type: BalloonPopper + - type: ThrowingAngle + angle: -135 + - type: LandAtCursor diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index ea2e73ac1517..608fb2544ae8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -5,7 +5,7 @@ description: Definition of a Classic. Keeping murder affordable since 200,000 BCE. components: - type: EmbeddableProjectile - offset: 0.15,0.15 + offset: -0.15,0.0 - type: ThrowingAngle angle: 225 - type: LandAtCursor diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml index 9e187651ec55..437cd8994ef6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -41,6 +41,7 @@ - type: StaminaDamageOnCollide damage: 35 sound: /Audio/Weapons/egloves.ogg + - type: LandAtCursor # it deals stamina damage when thrown - type: Battery maxCharge: 360 startingCharge: 360 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index d0d85beb6f59..0bab2c828dec 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -30,7 +30,6 @@ soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Reflect - enabled: true reflectProb: .1 spread: 90 - type: Item @@ -175,7 +174,6 @@ soundHit: path: /Audio/Effects/explosion_small1.ogg - type: Reflect - enabled: true reflectProb: .25 spread: 90 - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 24bc21c43679..307584e1161f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -43,6 +43,7 @@ - type: StaminaDamageOnCollide damage: 35 sound: /Audio/Weapons/egloves.ogg + - type: LandAtCursor # it deals stamina damage when thrown - type: Battery maxCharge: 1000 startingCharge: 1000 @@ -107,7 +108,7 @@ - type: Item size: Normal - type: Tag - tags: + tags: - Truncheon - type: Clothing sprite: Objects/Weapons/Melee/truncheon.rsi diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 7b5809158834..c7b54f457170 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -46,15 +46,6 @@ path: /Maps/Shuttles/cargo.yml - type: GridSpawn groups: - vgroid: !type:DungeonSpawnGroup - minimumDistance: 1000 - nameDataset: names_borer - addComponents: - - type: Gravity - enabled: true - inherent: true - protos: - - VGRoid trade: !type:GridSpawnGroup addComponents: - type: ProtectedGrid @@ -81,6 +72,16 @@ - /Maps/Ruins/syndicate_dropship.yml - /Maps/Ruins/whiteship_ancient.yml - /Maps/Ruins/whiteship_bluespacejumper.yml + vgroid: !type:DungeonSpawnGroup + minimumDistance: 1000 + nameDataset: names_borer + stationGrid: false + addComponents: + - type: Gravity + enabled: true + inherent: true + protos: + - VGRoid - type: entity id: BaseStationCentcomm diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index e92da80c4b2e..0c280f339ac3 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1160,6 +1160,10 @@ suffix: External, Escape 3x4, Glass, Docking components: - type: GridFill + addComponents: + - type: IFF + flags: + - HideLabel #HighSecDoors - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 1ec6c04ffe7d..d15294cc4678 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -172,6 +172,8 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - type: Damageable + damageModifierSet: RGlass - type: Destructible thresholds: - trigger: @@ -257,7 +259,7 @@ - type: entity id: BaseSecurePlasmaWindoor - parent: BaseWindoor + parent: BaseSecureWindoor abstract: true components: - type: Sprite @@ -367,7 +369,7 @@ - type: entity id: BaseSecureUraniumWindoor - parent: BaseWindoor + parent: BaseSecureWindoor abstract: true components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml index 09ce1a05d94d..4226c39f6b44 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml @@ -24,6 +24,7 @@ science: Structures/Doors/Airlocks/Glass/science.rsi cargo: Structures/Doors/Airlocks/Glass/cargo.rsi engineering: Structures/Doors/Airlocks/Glass/engineering.rsi + glass: Structures/Doors/Airlocks/Glass/glass.rsi maintenance: Structures/Doors/Airlocks/Glass/maint.rsi medical: Structures/Doors/Airlocks/Glass/medical.rsi security: Structures/Doors/Airlocks/Glass/security.rsi @@ -69,6 +70,7 @@ command: Command engineering: Engineering freezer: Civilian + glass: Civilian maintenance: Civilian medical: Medical science: Science diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 3f9a9bc222e8..4baf9bb5dc67 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -735,6 +735,7 @@ - map: ["computerLayerKeys"] state: tech_key - type: CargoOrderConsole + - type: BankClient - type: ActiveRadio channels: - Supply diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 4cb76ea4b921..0485b5a51783 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -85,6 +85,7 @@ whitelist: components: - FitsInDispenser + - type: ItemToggle - type: HealthAnalyzer scanDelay: 0 - type: UserInterface diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml index 8281a6548bd8..64ad3a30da05 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml @@ -56,6 +56,7 @@ SheetSteel1: min: 1 max: 2 + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 67cf6f767da4..66f4f684e9a9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -1175,6 +1175,7 @@ - IngotGold30 - IngotSilver30 - MaterialBananium10 + - MaterialDiamond - type: entity parent: OreProcessor diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 498759df3c95..81a5988c2c54 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -48,6 +48,7 @@ min: 1 max: 2 - type: Appearance + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 904bf46a0b72..24e7e478c9c3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -22,6 +22,12 @@ snapCardinals: true layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraRouterBase @@ -104,6 +110,7 @@ subnetFrequency: SurveillanceCameraGeneral - type: entity + abstract: true parent: [ BaseMachinePowered, ConstructibleMachine ] id: SurveillanceCameraWirelessRouterBase name: wireless camera router @@ -126,6 +133,12 @@ sprite: Structures/Machines/server.rsi layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraWirelessRouterBase diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 5bdefb8bfc59..4a1b5a3560ab 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -21,6 +21,12 @@ True: { visible: true } False: { visible: false } - type: Appearance + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: WiresVisuals - type: Physics bodyType: Static diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index 4eec014f11b3..eff831fa9ea1 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,3 +25,32 @@ - type: Tag tags: - SpreaderIgnore + +- type: entity + id: AtmosDeviceFanDirectional + name: directional fan + description: A thin fan, stopping the movement of gases across it. + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Sprite + sprite: Structures/Piping/Atmospherics/directionalfan.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.48,-0.48,0.48,-0.40" + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - type: Clickable + - type: Tag + tags: + - SpreaderIgnore diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index 9aac49a6bd7a..c6ecb5fd308c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -243,6 +243,15 @@ - type: Sprite state: ai +- type: entity + parent: BaseSign + id: SignAiUpload + name: ai upload sign + description: A sign, indicating an AI is present. + components: + - type: Sprite + state: ai_upload + - type: entity parent: BaseSign id: SignArcade @@ -273,11 +282,11 @@ - type: entity parent: BaseSign id: SignAnomaly - name: xenoarchaeology lab sign + name: xenoarcheology lab sign description: A sign indicating the xenoarchaeology lab. components: - type: Sprite - state: anomaly + state: xenoarch - type: entity parent: BaseSign @@ -286,7 +295,7 @@ description: A sign indicating the anomalous research lab. components: - type: Sprite - state: anomaly2 + state: anomaly - type: entity parent: BaseSign @@ -299,21 +308,38 @@ - type: entity parent: BaseSign - id: SignAtmosMinsky - name: atmospherics sign - description: A sign indicating the atmospherics area. + id: SignBar + name: bar sign + description: A sign indicating the bar. components: - type: Sprite - state: atmominsky + state: bar - type: entity parent: BaseSign - id: SignBar - name: bar sign - description: A sign indicating the bar. + id: SignKitchen + name: kitchen sign + description: The heart of the home. And disease. components: - type: Sprite - state: bar + state: kitchen + +- type: entity + parent: BaseSign + id: SignTheater + name: theater sign + description: Would it even be Space Station without drama? + components: + - type: Sprite + layers: + - state: drama1 + map: [ "base" ] + - type: RandomSprite + available: + - base: + drama1: null + drama2: null + drama3: null - type: entity parent: BaseSign @@ -396,24 +422,6 @@ - type: Sprite state: chem -- type: entity - parent: BaseSign - id: SignChemistry1 - name: chemistry sign - description: A sign indicating the chemistry lab. - components: - - type: Sprite - state: chemistry1 - -- type: entity - parent: BaseSign - id: SignChemistry2 - name: chemistry sign - description: A sign indicating the chemistry lab. - components: - - type: Sprite - state: chemistry2 - - type: entity parent: BaseSign id: SignCloning @@ -427,19 +435,20 @@ parent: BaseSign id: SignConference name: conference room sign - description: A sign indicating the conference room. + description: Where work happens. components: - type: Sprite state: conference_room - type: entity parent: BaseSign - id: SignCourt - name: court sign - description: A sign labelling the courtroom. + id: SignCryo + name: cryosleep sign + description: Just like that? You're gonna chicken out? components: - type: Sprite - state: court + state: cryo + - type: entity parent: BaseSign @@ -461,18 +470,27 @@ - type: entity parent: BaseSign - id: SignDrones - name: drones sign - description: A sign indicating drones. + id: SignRestroom + name: restroom sign + description: A sign indicating where you go to... What do you do here again? components: - type: Sprite - state: drones + state: restroom + +- type: entity + parent: BaseSign + id: SignMaterials + name: materials sign + description: An omen to the juicy vault of steel, glass, and plastic that lays before you. + components: + - type: Sprite + state: mats - type: entity parent: BaseSign id: SignEngine - name: engine sign - description: A sign indicating the engine room. + name: power sign + description: Where the powa happens. components: - type: Sprite state: engine @@ -544,7 +562,7 @@ parent: BaseSign id: SignHead name: head sign - description: A sign with a hat on it. + description: An official sign indicating the dwellings of a Nanotrasen-certified head of department. components: - type: Sprite state: commander @@ -556,25 +574,7 @@ description: A sign indicating a hydroponics area. components: - type: Sprite - state: hydro1 - -- type: entity - parent: BaseSign - id: SignHydro2 - name: hydro sign - description: A sign indicating a hydroponics area. - components: - - type: Sprite - state: hydro2 - -- type: entity - parent: BaseSign - id: SignHydro3 - name: hydro sign - description: A sign indicating a hydroponics area. - components: - - type: Sprite - state: hydro3 + state: hydro - type: entity parent: BaseSign @@ -606,8 +606,8 @@ - type: entity parent: BaseSign id: SignLawyer - name: lawyer sign - description: A sign labelling an area where the Lawyers work. + name: law sign + description: A sign indicating the presence of the (typically absent) rule of law. components: - type: Sprite state: law @@ -639,15 +639,6 @@ - type: Sprite state: medbay -- type: entity - parent: BaseSign - id: SignMinerDock - name: miner dock sign - description: A sign indicating the miner dock. - components: - - type: Sprite - state: miner_dock - - type: entity parent: BaseSign id: SignMorgue @@ -740,36 +731,27 @@ - type: entity parent: BaseSign - id: SignScience1 - name: science sign - description: A sign indicating the science area. + id: SignServer + name: server sign + description: Ever heard of Big Data? This is it, chump. The biggest. components: - type: Sprite - state: science1 + state: data - type: entity parent: BaseSign - id: SignScience2 - name: science sign - description: A sign indicating the science area. - components: - - type: Sprite - state: science2 - -- type: entity - parent: BaseSign - id: SignShield - name: shield sign - description: A sign with a shield. + id: SignCans + name: canisters sign + description: A sign indicating the auspicious presence of gas canisters. components: - type: Sprite - state: shield + state: cans - type: entity parent: BaseSign id: SignShipDock - name: docking sign - description: A sign indicating the ship docking area. + name: evac sign + description: A sign indicating the where the evac shuttle will (likely) arrive. components: - type: Sprite state: dock @@ -812,12 +794,12 @@ - type: entity parent: BaseSign - id: SignToxins2 - name: toxins sign - description: A sign indicating the toxin lab. + id: SignVault + name: vault sign + description: A sign indicating the vault. Who knows what secrets lie inside? components: - type: Sprite - state: toxins2 + state: vault - type: entity parent: BaseSign @@ -964,29 +946,11 @@ - type: Sprite state: xenobio -- type: entity - parent: BaseSign - id: SignXenobio2 - name: xenobio sign - description: A sign indicating the xenobiology lab. - components: - - type: Sprite - state: xenobio2 - -- type: entity - parent: BaseSign - id: SignXenolab - name: xenolab sign - description: A sign indicating the xenobiology lab. - components: - - type: Sprite - state: xenolab - - type: entity parent: BaseSign id: SignZomlab name: zombie lab sign - description: A sign indicating the zombie lab. + description: The final remains of a shut-down Nanotrasen research project that aimed to harness the powers of Romerol. I wonder how that went... components: - type: Sprite state: zomlab diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml new file mode 100644 index 000000000000..af68f5898d21 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml @@ -0,0 +1,475 @@ +# Parents +- type: entity + abstract: true + id: ShelfBase + parent: BaseStructure + name: shelf + description: a strange place to place, well, anything really. You feel like you shouldn't be seeing this.' + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 35 + layer: + - BulletImpassable + - type: Transform + - type: Damageable + damageModifierSet: Wood + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: WallMount + arc: 175 + - type: Storage + grid: + - 0,0,3,1 + - 0,3,3,4 + maxItemSize: Normal + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: InteractionOutline + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: Tag + tags: + - Structure + +- type: entity + abstract: true + id: ShelfBaseReinforced + parent: ShelfBase + name: reinforced shelf + description: It looks as strong as reality itself. + components: + - type: Lock + - type: LockVisuals + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + # used to keep the unlocked light visible while open. + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: open + stateDoorClosed: closed + + - type: AccessReader + +# Normal +- type: entity + id: ShelfWood + parent: ShelfBase + name: wooden shelf + description: A convenient place to place, well, anything really. + components: + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 3 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - Wooden + - type: Construction + graph: Shelf + node: ShelfWood + +- type: entity + id: ShelfMetal + parent: ShelfBase + name: metal shelf + description: A sturdy place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + - type: Damageable + damageModifierSet: Metallic + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 120 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 2 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfMetal + +- type: entity + id: ShelfGlass + parent: ShelfBase + name: glass shelf + description: A fragile place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + - type: Damageable + damageModifierSet: Glass + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfGlass + +# Reinforced +- type: entity + id: ShelfRWood + parent: ShelfBaseReinforced + name: sturdy wood shelf + description: A safe place to put your favorite bottle of whiskey + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 215 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 2 + max: 5 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRWood + +- type: entity + id: ShelfRMetal + parent: ShelfBaseReinforced + name: sturdy metal shelf + description: A strong & shiny place to keep all your vials safe + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 450 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 2 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRMetal + +- type: entity + id: ShelfRGlass + parent: ShelfBaseReinforced + name: sturdy glass shelf + description: Crystal clear reinforced glass doors to show off all your fancy bottles you definitely didn't sell a co-worker's favorite mothroach for. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 250 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + SheetPlastic1: + min: 1 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 0 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRGlass + +# Departmental +- type: entity + id: ShelfBar + parent: ShelfBase + name: bar shelf + description: Made out of the finest synthetic wood for all alcohol holding needs. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + layers: + - state: base + - state: bar-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: bar + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - DrinkBottle + - DrinkCan + - Beer + - type: Construction + graph: Shelf + node: ShelfBar + +- type: entity + id: ShelfKitchen + parent: ShelfBase + name: cooking shelf + description: Holds knifes, spice, and everything nice! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + layers: + - state: base + - state: kitchen-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: kitchen + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 4 + MaterialWoodPlank1: + min: 0 + max: 1 + PartRodMetal1: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - BoxCardboard + - MonkeyCube + - Enzyme + - Mayo + - Packet + - Cleaver + - Knife + - KitchenKnife + - RollingPin + - Ingredient + - Trash + - type: Construction + graph: Shelf + node: ShelfKitchen + +- type: entity + id: ShelfChemistry + parent: ShelfBaseReinforced + name: chemical shelf + description: Keeps all your chemicals safe and out of the clow- er, public hands! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + - state: chem-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: StorageFillVisualizer + maxFillLevels: 7 + fillBaseName: chem + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 330 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 1 + max: 2 + SheetPlastic1: + min: 1 + max: 2 + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - ChemDispensable + - GlassBeaker + - Bottle + - type: Construction + graph: Shelf + node: ShelfChemistry + + + +# Access presets +# Try to keep alphabetical sorting if adding more + +- type: entity + parent: ShelfChemistry + id: ShelfChemistryChemistrySecure + suffix: Chemistry, Secure + components: + - type: AccessReader + access: [["Chemistry"]] + diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index dd7eb5bea82a..271a9a65cdc0 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -44,6 +44,14 @@ - type: Construction graph: Timer node: signal + containers: + - board + - type: ContainerContainer + containers: + board: !type:Container + - type: ContainerFill + containers: + board: [ SignalTimerElectronics ] - type: entity id: ScreenTimer @@ -67,6 +75,11 @@ - type: Construction graph: Timer node: screen + containers: + - board + - type: ContainerFill + containers: + board: [ ScreenTimerElectronics ] - type: entity id: BrigTimer @@ -79,6 +92,11 @@ - type: Construction graph: Timer node: brig + containers: + - board + - type: ContainerFill + containers: + board: [ BrigTimerElectronics ] # Construction Frame diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index e14bf26e0dbd..4673405e03f5 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -93,6 +93,28 @@ state: rock_asteroid_west - state: rock_gold +- type: entity + id: AsteroidRockDiamond + parent: AsteroidRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_asteroid + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west + - state: rock_diamond + - type: entity id: AsteroidRockPlasma parent: AsteroidRock @@ -589,6 +611,28 @@ state: ironrock_west - state: rock_artifact_fragment +- type: entity + id: IronRockDiamond + parent: IronRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: ironrock + - map: [ "enum.EdgeLayer.South" ] + state: ironrock_south + - map: [ "enum.EdgeLayer.East" ] + state: ironrock_east + - map: [ "enum.EdgeLayer.North" ] + state: ironrock_north + - map: [ "enum.EdgeLayer.West" ] + state: ironrock_west + - state: rock_diamond + # Rocks and ore veins - type: entity id: WallRock @@ -693,6 +737,28 @@ state: rock_west - state: rock_gold +- type: entity + id: WallRockDiamond + parent: WallRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_diamond + - type: entity id: WallRockPlasma parent: WallRock @@ -993,6 +1059,28 @@ state: rock_wall_west - state: rock_gold +- type: entity + id: WallRockBasaltDiamond + parent: WallRockBasalt + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_diamond + - type: entity id: WallRockBasaltPlasma parent: WallRockBasalt @@ -1236,6 +1324,28 @@ state: rock_snow_west - state: rock_gold +- type: entity + id: WallRockSnowDiamond + parent: WallRockSnow + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_snow + - map: [ "enum.EdgeLayer.South" ] + state: rock_snow_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_snow_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_snow_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_snow_west + - state: rock_diamond + - type: entity id: WallRockSnowPlasma parent: WallRockSnow @@ -1479,6 +1589,28 @@ state: rock_sand_west - state: rock_gold +- type: entity + id: WallRockSandDiamond + parent: WallRockSand + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_sand + - map: [ "enum.EdgeLayer.South" ] + state: rock_sand_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_sand_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_sand_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_sand_west + - state: rock_diamond + - type: entity id: WallRockSandPlasma parent: WallRockSand @@ -1589,7 +1721,6 @@ state: rock_sand_west - state: rock_uranium - - type: entity id: WallRockSandBananium parent: WallRockSand @@ -1722,6 +1853,28 @@ state: rock_chromite_west - state: rock_gold +- type: entity + id: WallRockChromiteDiamond + parent: WallRockChromite + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_chromite + - map: [ "enum.EdgeLayer.South" ] + state: rock_chromite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_chromite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_chromite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_chromite_west + - state: rock_diamond + - type: entity id: WallRockChromitePlasma parent: WallRockChromite @@ -1965,6 +2118,28 @@ state: rock_andesite_west - state: rock_gold +- type: entity + id: WallRockAndesiteDiamond + parent: WallRockAndesite + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_andesite + - map: [ "enum.EdgeLayer.South" ] + state: rock_andesite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_andesite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_andesite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_andesite_west + - state: rock_diamond + - type: entity id: WallRockAndesitePlasma parent: WallRockAndesite diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 7af998125551..1ab770812a65 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1109,6 +1109,11 @@ - type: IconSmooth key: walls base: mining + - type: RandomIconSmooth + randomStates: + - mining + - miningB + - type: Appearance - type: entity parent: WallShuttleDiagonal diff --git a/Resources/Prototypes/Entities/Tiles/bananium.yml b/Resources/Prototypes/Entities/Tiles/bananium.yml index c9a6ec284410..fa8cfdd001aa 100644 --- a/Resources/Prototypes/Entities/Tiles/bananium.yml +++ b/Resources/Prototypes/Entities/Tiles/bananium.yml @@ -44,8 +44,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: Slippery - paralyzeTime: 2 - launchForwardsMultiplier: 1.5 - type: StepTrigger intersectRatio: 0.2 - type: Physics diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 2fd1c8547deb..c488df231b23 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -54,3 +54,12 @@ collection: FootstepWater params: volume: 8 + - type: StepTrigger + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk + - type: TileEntityEffect + effects: + - !type:ExtinguishReaction diff --git a/Resources/Prototypes/Entities/Virtual/virtual_item.yml b/Resources/Prototypes/Entities/Virtual/virtual_item.yml index ed7424355018..088de6a6da5d 100644 --- a/Resources/Prototypes/Entities/Virtual/virtual_item.yml +++ b/Resources/Prototypes/Entities/Virtual/virtual_item.yml @@ -5,4 +5,5 @@ noSpawn: true components: - type: Item + size: Ginormous # no storage insertion visuals - type: VirtualItem diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index 061288d010b5..2817b083bedf 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -32,6 +32,9 @@ - id: WallRockGold prob: 0.05 orGroup: rock + - id: WallRockDiamond + prob: 0.005 + orGroup: rock - id: WallRockSilver prob: 0.05 orGroup: rock diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 39e29ad1158c..7784b725564e 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -149,7 +149,47 @@ earliestStart: 30 reoccurrenceDelay: 20 minimumPlayers: 30 - - type: NinjaSpawnRule + - type: SpaceSpawnRule + - type: AntagLoadProfileRule + # Vox disabled until loadouts work on AntagSelection-based spawns + speciesOverride: Human + speciesOverrideBlacklist: + - Vox + - type: AntagObjectives + objectives: + - StealResearchObjective + - DoorjackObjective + - SpiderChargeObjective + - TerrorObjective + - MassArrestObjective + - NinjaSurviveObjective + - type: AntagSelection + agentName: ninja-round-end-agent-name + definitions: + - spawnerPrototype: SpawnPointGhostSpaceNinja + min: 1 + max: 1 + pickPlayer: false + startingGear: SpaceNinjaGear + briefing: + text: ninja-role-greeting + color: Green + sound: /Audio/Misc/ninja_greeting.ogg + components: + - type: SpaceNinja + - type: NpcFactionMember + factions: + - Syndicate + - type: AutoImplant + implants: + - DeathAcidifierImplant + - type: RandomMetadata + nameSegments: + - names_ninja_title + - names_ninja + mindComponents: + - type: NinjaRole + prototype: SpaceNinja - type: entity parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 5a38c2221545..43cdca3bc33b 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -1,21 +1,3 @@ -# doesnt spawn a ninja or anything, just stores configuration for it -# see NinjaSpawn event for spawning -- type: entity - id: Ninja - parent: BaseGameRule - components: - - type: GenericAntagRule - agentName: ninja-round-end-agent-name - objectives: - - StealResearchObjective - - DoorjackObjective - - SpiderChargeObjective - - TerrorObjective - - MassArrestObjective - - NinjaSurviveObjective - - type: NinjaRule - threats: NinjaThreats - - type: entity parent: BaseGameRule id: Thief diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index d5cd6a3f9788..3e4ea6d7b313 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -73,7 +73,7 @@ parent: BaseGameRule id: BaseNukeopsRule components: - - type: RandomMetadata #this generates the random operation name cuz it's cool. + - type: RandomMetadata #this generates the random operation name cuz it's cool. nameSegments: - operationPrefix - operationSuffix @@ -95,7 +95,7 @@ - type: GameRule minPlayers: 20 - type: LoadMapRule - gameMap: NukieOutpost + mapPath: /Maps/Nonstations/nukieplanet.yml - type: AntagSelection selectionTime: PrePlayerSpawn definitions: diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 5b9efd036614..78111d0fd1b8 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -10,6 +10,7 @@ - Moth - Reptilian - SlimePerson + - Vox - type: guideEntry id: Arachnid @@ -45,3 +46,8 @@ id: SlimePerson name: species-name-slime text: "/ServerInfo/Guidebook/Mobs/SlimePerson.xml" + +- type: guideEntry + id: Vox + name: species-name-vox + text: "/ServerInfo/Guidebook/Mobs/Vox.xml" diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 5c6b0eee0d70..245ccce4b7bb 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -15,4 +15,4 @@ - Saltern - Packed - Reach - #- Train + - Train diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index 0841a12b1d54..cce5e0022d20 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -9,7 +9,7 @@ stationProto: StandardNanotrasenStation components: - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml + emergencyShuttlePath: /Maps/Shuttles/emergency_cluster.yml - type: StationNameSetup mapNameTemplate: '{0} Cluster Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index 7197165ce1fe..5c9d25782bd2 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -17,8 +17,6 @@ nameGenerator: !type:NanotrasenNameGenerator prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml - type: StationJobs availableJobs: #service diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index f22c44cb6300..30e142e8c0d9 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -22,7 +22,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 3, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index 608d3f9464db..e0f9e791e7f1 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -20,7 +20,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 2, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index b844636bf831..fd79dfd82323 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -19,7 +19,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 2 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index e9d26ce3192c..d0a539d18213 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -20,7 +20,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 1 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/syndicate.yml b/Resources/Prototypes/Maps/syndicate.yml deleted file mode 100644 index abb63126d9e4..000000000000 --- a/Resources/Prototypes/Maps/syndicate.yml +++ /dev/null @@ -1,11 +0,0 @@ -- type: gameMap - id: NukieOutpost - mapName: Nukie Outpost - mapPath: /Maps/Nonstations/nukieplanet.yml - minPlayers: 0 - stations: - SyndicateOutpost: - stationProto: StandardNukieOutpost - components: - - type: StationNameSetup - mapNameTemplate: "Nukie Outpost" diff --git a/Resources/Prototypes/NPCs/utility_queries.yml b/Resources/Prototypes/NPCs/utility_queries.yml index 3d5385ecbcd6..06bc0a9a9ebe 100644 --- a/Resources/Prototypes/NPCs/utility_queries.yml +++ b/Resources/Prototypes/NPCs/utility_queries.yml @@ -131,6 +131,7 @@ types: Blunt: 0 - type: Item + - !type:RemoveAnchoredFilter considerations: - !type:TargetMeleeCon curve: !type:QuadraticCurve diff --git a/Resources/Prototypes/Objectives/dragon.yml b/Resources/Prototypes/Objectives/dragon.yml index 10ca942cb39a..bbdac8faa1a9 100644 --- a/Resources/Prototypes/Objectives/dragon.yml +++ b/Resources/Prototypes/Objectives/dragon.yml @@ -6,7 +6,7 @@ - type: Objective # difficulty isn't used at all since objective are fixed difficulty: 1.5 - issuer: dragon + issuer: objective-issuer-dragon - type: RoleRequirement roles: components: diff --git a/Resources/Prototypes/Objectives/ninja.yml b/Resources/Prototypes/Objectives/ninja.yml index 77628a68cf12..4d0cf6c17c83 100644 --- a/Resources/Prototypes/Objectives/ninja.yml +++ b/Resources/Prototypes/Objectives/ninja.yml @@ -6,7 +6,7 @@ - type: Objective # difficulty isn't used since all objectives are picked difficulty: 1.5 - issuer: spiderclan + issuer: objective-issuer-spiderclan - type: RoleRequirement roles: components: diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index 8b5307e9a093..cc94ab02b34f 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -4,7 +4,7 @@ id: BaseThiefObjective components: - type: Objective - issuer: thief + issuer: objective-issuer-thief - type: RoleRequirement roles: components: diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index ad5f56a443ea..edf191b420dd 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -4,7 +4,7 @@ id: BaseTraitorObjective components: - type: Objective - issuer: syndicate + issuer: objective-issuer-syndicate - type: RoleRequirement roles: components: diff --git a/Resources/Prototypes/Procedural/Magnet/asteroid.yml b/Resources/Prototypes/Procedural/Magnet/asteroid.yml index c20b80af55bf..c380dfbc7cfa 100644 --- a/Resources/Prototypes/Procedural/Magnet/asteroid.yml +++ b/Resources/Prototypes/Procedural/Magnet/asteroid.yml @@ -6,6 +6,7 @@ OreCoal: 1.0 OreSalt: 1.0 OreGold: 0.25 + OreDiamond: 0.05 OreSilver: 0.25 OrePlasma: 0.15 OreUranium: 0.15 diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index 4a60427e305e..a6e5fac2d840 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -130,6 +130,20 @@ maxGroupSize: 10 radius: 4 +- type: biomeMarkerLayer + id: OreDiamond + entityMask: + AsteroidRock: AsteroidRockDiamond + WallRock: WallRockDiamond + WallRockBasalt: WallRockBasaltDiamond + WallRockChromite: WallRockChromiteDiamond + WallRockSand: WallRockSandDiamond + WallRockSnow: WallRockSnowDiamond + maxCount: 6 + minGroupSize: 1 + maxGroupSize: 2 + radius: 4 + # Artifact Fragment - type: biomeMarkerLayer id: OreArtifactFragment diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index e8783760ddcd..da99da7c75ba 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -178,6 +178,13 @@ - !type:BiomeMarkerLoot proto: OreBananium +- type: salvageLoot + id: OreDiamond + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreDiamond + - type: salvageLoot id: OreArtifactFragment guaranteed: true diff --git a/Resources/Prototypes/Procedural/vgroid.yml b/Resources/Prototypes/Procedural/vgroid.yml index 49e956e73f5b..6e9fc6f3957e 100644 --- a/Resources/Prototypes/Procedural/vgroid.yml +++ b/Resources/Prototypes/Procedural/vgroid.yml @@ -82,6 +82,12 @@ count: 50 minGroupSize: 2 maxGroupSize: 4 + - !type:OreDunGen + replacement: IronRock + entity: IronRockDiamond + count: 15 + minGroupSize: 1 + maxGroupSize: 2 # Configs - type: dungeonConfig diff --git a/Resources/Prototypes/Reagents/Materials/ores.yml b/Resources/Prototypes/Reagents/Materials/ores.yml index 18f1d9ebb3ac..1555ab9e2345 100644 --- a/Resources/Prototypes/Reagents/Materials/ores.yml +++ b/Resources/Prototypes/Reagents/Materials/ores.yml @@ -24,6 +24,15 @@ color: "#FFD700" price: 0.2 +- type: material + id: RawDiamond + stackEntity: DiamondOre1 + name: materials-raw-diamond + unit: materials-unit-piece + icon: { sprite: Objects/Materials/ore.rsi, state: diamond } + color: "#C9D8F2" + price: 0.5 + - type: material id: RawSilver stackEntity: SilverOre1 diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index da02fc666d8a..a6b53be68836 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -77,8 +77,6 @@ meltingPoint: 18.2 tileReactions: - !type:SpillTileReaction - paralyzeTime: 3 - launchForwardsMultiplier: 2 requiredSlipSpeed: 1 superSlippery: true diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml new file mode 100644 index 000000000000..61a903f7a0a8 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml @@ -0,0 +1,268 @@ +- type: constructionGraph + id: Shelf + start: start + graph: + - node: start + actions: + - !type:DeleteEntity {} + edges: +# Normal + - to: ShelfWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 4 + doAfter: 2 + - to: ShelfMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Steel + amount: 5 + doAfter: 3 + - to: ShelfGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Glass + amount: 4 + doAfter: 2 +# Reinforced + - to: ShelfRWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 8 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 + - to: ShelfRMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 5 + doAfter: 3 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Cable + amount: 3 + doAfter: 1 + - to: ShelfRGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plastic + amount: 5 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 +# Departmental + - to: ShelfBar + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 6 + doAfter: 2 + - to: ShelfKitchen + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + - material: Steel + amount: 5 + - material: WoodPlank + amount: 3 + doAfter: 2 + - to: ShelfChemistry + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Plastic + amount: 5 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + +# Normal deconstructs + - node: ShelfWood + entity: ShelfWood + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 4 + steps: + - tool: Prying + doAfter: 2 + + - node: ShelfMetal + entity: ShelfMetal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + steps: + - tool: Screwing + doAfter: 5 + + - node: ShelfGlass + entity: ShelfGlass + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetGlass1 + amount: 4 + steps: + - tool: Screwing + doAfter: 2 +# Reinforced deconstructs + - node: ShelfRWood + entity: ShelfRWood + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 8 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Screwing + doAfter: 5 + - tool: Prying + doAfter: 2 + + - node: ShelfRMetal + entity: ShelfRMetal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 5 + + - node: ShelfRGlass + entity: ShelfRGlass + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 4 + +# Departmental deconstructs + - node: ShelfBar + entity: ShelfBar + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 6 + steps: + - tool: Prying + doAfter: 3 + + - node: ShelfKitchen + entity: ShelfKitchen + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal + amount: 2 + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 2 + - tool: Prying + doAfter: 1 + + - node: ShelfChemistry + entity: ShelfChemistry + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 2 + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + - tool: Prying + doAfter: 4 diff --git a/Resources/Prototypes/Recipes/Construction/furniture.yml b/Resources/Prototypes/Recipes/Construction/furniture.yml index ea11a09b9653..80e65fdac391 100644 --- a/Resources/Prototypes/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/Recipes/Construction/furniture.yml @@ -899,9 +899,9 @@ objectType: Structure placementMode: SnapgridCenter canRotate: true - canBuildInImpassable: false + canBuildInImpassable: true conditions: - - !type:TileNotBlocked + - !type:WallmountCondition - type: construction id: Mannequin diff --git a/Resources/Prototypes/Recipes/Construction/storage.yml b/Resources/Prototypes/Recipes/Construction/storage.yml index c8edebc5096c..7128c79eee89 100644 --- a/Resources/Prototypes/Recipes/Construction/storage.yml +++ b/Resources/Prototypes/Recipes/Construction/storage.yml @@ -67,3 +67,151 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +# Shelfs +# Normals +- type: construction + id: ShelfWood + name: wooden shelf + description: A convenient place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfMetal + name: metal shelf + description: A sturdy place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfGlass + name: glass shelf + description: Just like a normal shelf! But fragile and without the walls! + graph: Shelf + startNode: start + targetNode: ShelfGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Reinforced +- type: construction + id: ShelfRWood + name: sturdy wooden shelf + description: The perfect place to store all your vintage records. + graph: Shelf + startNode: start + targetNode: ShelfRWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRMetal + name: sturdy metal shelf + description: Nice and strong, and keeps your maints loot secure. + graph: Shelf + startNode: start + targetNode: ShelfRMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRGlass + name: sturdy glass shelf + description: See through, decent strength, shiny plastic case. Whats not to love? + graph: Shelf + startNode: start + targetNode: ShelfRGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Departmental +- type: construction + id: ShelfBar + name: bar shelf + description: A convenient place for all your extra booze, specifically designed to hold more bottles! + graph: Shelf + startNode: start + targetNode: ShelfBar + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfKitchen + name: cooking shelf + description: Holds your knifes, spice, and everything nice! + graph: Shelf + startNode: start + targetNode: ShelfKitchen + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfChemistry + name: chemical shelf + description: Perfect for keeping the most important chemicals safe, and out of the clumsy clowns hands! + graph: Shelf + startNode: start + targetNode: ShelfChemistry + icon: + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 82c16de7b6a1..930768b3ea75 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -489,12 +489,12 @@ canBuildInImpassable: false icon: sprite: Structures/Piping/Atmospherics/vent.rsi - state: vent_off + state: vent_passive layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf - sprite: Structures/Piping/Atmospherics/vent.rsi - state: vent_off + state: vent_passive conditions: - !type:NoUnstackableInTile diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/foodboxpizza.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/foodboxpizza.yml new file mode 100644 index 000000000000..b475289e11f4 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/foodboxpizza.yml @@ -0,0 +1,15 @@ +- type: constructionGraph + id: FoodBoxPizza + start: start + graph: + - node: start + edges: + - to: foodboxpizza + steps: + - material: Cardboard + amount: 1 + doAfter: 4 + + + - node: foodboxpizza + entity: FoodBoxPizza \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Crafting/crates.yml b/Resources/Prototypes/Recipes/Crafting/crates.yml index 4177b3fa2a6a..72fabc2221b6 100644 --- a/Resources/Prototypes/Recipes/Crafting/crates.yml +++ b/Resources/Prototypes/Recipes/Crafting/crates.yml @@ -64,6 +64,19 @@ icon: { sprite: Objects/Storage/boxes.rsi, state: box } objectType: Item +- type: construction + name: pizza box + id: FoodBoxPizza + graph: FoodBoxPizza + startNode: start + targetNode: foodboxpizza + category: construction-category-storage + description: A box for pizza. + icon: + sprite: Objects/Consumable/Food/Baked/pizza.rsi + state: box + objectType: Item + - type: construction name: coffin id: CrateCoffin diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index 053715a18117..3efaac95a729 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -127,6 +127,13 @@ materials: RawBananium: 3000 +- type: latheRecipe + id: MaterialDiamond + result: MaterialDiamond1 + completetime: 3 + materials: + RawDiamond: 1000 + - type: latheRecipe id: SheetUranium1 result: SheetUranium1 diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 205f04b05ea5..feb810973905 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -36,6 +36,56 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter +- type: startingGear + id: SyndicateOperativeClothing + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + back: ClothingBackpackSyndicate + shoes: ClothingShoesBootsCombatFilled + gloves: ClothingHandsGlovesColorBlack + +- type: startingGear + id: SyndicateReinforcementMedic + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - MedkitCombatFilled + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementSpy + parent: SyndicateOperativeClothing + equipment: + id: AgentIDCard + mask: ClothingMaskGasVoiceChameleon + pocket1: WeaponPistolViper + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementThief + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - ToolboxSyndicateFilled + storage: + back: + - BoxSurvivalSyndicate + - SyndicateJawsOfLife + +# Syndicate Reinforcement NukeOps +- type: startingGear + id: SyndicateOperativeGearReinforcementNukeOps + parent: SyndicateOperativeGearExtremelyBasic + equipment: + id: SyndiPDA #Do not give a PDA to the normal Reinforcement - it will spawn with a 20TC uplink + + #Syndicate Operative Outfit - Basic - type: startingGear id: SyndicateOperativeGearBasic diff --git a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml index 24c0d8b3e3be..8e1827e81bf1 100644 --- a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml +++ b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml @@ -24,4 +24,28 @@ name: ghost-role-information-syndicate-monkey-reinforcement-name description: ghost-role-information-syndicate-monkey-reinforcement-description rules: ghost-role-information-syndicate-monkey-reinforcement-name - entityPrototype: MobMonkeySyndicateAgentNukeops \ No newline at end of file + entityPrototype: MobMonkeySyndicateAgentNukeops + +- type: ghostRole + id: SyndicateAgentMedic + name: ghost-role-information-syndicate-reinforcement-medic-name + description: ghost-role-information-syndicate-reinforcement-medic-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentMedic + iconPrototype: MedkitCombat + +- type: ghostRole + id: SyndicateAgentSpy + name: ghost-role-information-syndicate-reinforcement-spy-name + description: ghost-role-information-syndicate-reinforcement-spy-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentSpy + iconPrototype: ClothingMaskGasVoiceChameleon + +- type: ghostRole + id: SyndicateAgentThief + name: ghost-role-information-syndicate-reinforcement-thief-name + description: ghost-role-information-syndicate-reinforcement-thief-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentThief + iconPrototype: SyndicateJawsOfLife diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml index 51254b5a7a68..3aaa04601aa3 100644 --- a/Resources/Prototypes/Stacks/Materials/ore.yml +++ b/Resources/Prototypes/Stacks/Materials/ore.yml @@ -4,6 +4,13 @@ icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: gold } spawn: GoldOre1 maxCount: 30 + +- type: stack + id: DiamondOre + name: rough diamond + icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: diamond } + spawn: DiamondOre1 + maxCount: 30 - type: stack id: SteelOre diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index 84d1c6673694..146f04b49c5c 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -58,6 +58,12 @@ minOreYield: 1 maxOreYield: 3 +- type: ore + id: OreDiamond + oreEntity: DiamondOre1 + minOreYield: 1 + maxOreYield: 2 + - type: ore id: OreQuartzCrab oreEntity: MobSpawnCrabQuartz diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index bc12ea0af215..197966b49179 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -542,6 +542,9 @@ - type: Tag id: DrinkCan +- type: Tag + id: DrinkGlass + - type: Tag id: DrinkSpaceGlue @@ -764,6 +767,9 @@ - type: Tag id: Igniter +- type: Tag + id: Ingredient + - type: Tag #Drop this innate tool instead of deleting it. id: InnateDontDelete @@ -1105,6 +1111,9 @@ - type: Tag id: SalvageExperiment +- type: Tag + id: Scarf + - type: Tag id: Screwdriver diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml index 63a62fecf80d..786990c92f89 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -70,7 +70,7 @@ - The Space Vent - The Scrubber Array - Here is one layer of an example setup: (pipes can and do need to be layered under the scrubbers below to connect them!) + Here is one layer of an example setup: @@ -81,15 +81,15 @@ - - + + - - + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml index 0374d4cb958c..976ab472a9cb 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml @@ -10,16 +10,8 @@ They exhale nitrous oxide and are unaffected by it. Their body can process 6 reagents at the same time instead of just 2. - Slimepeople can morph into a [bold]"geras"[/bold] (an archaic slimefolk term), which is a smaller slime form that can [bold]pass through grilles[/bold], - but forces them to drop their inventory and held items. It's handy for a quick getaway. A geras is small enough to pick up (with two hands) - and fits in a duffelbag. - - - - - - Slimepeople have an [bold]internal 2x2 storage inventory[/bold] inside of their slime membrane. Anyone can see what's inside and take it out of you without asking, - so be careful. They [bold]don't drop their internal storage when they morph into a geras, however![/bold] + Slimepeople have an [bold]internal 2x3 storage inventory[/bold] inside of their slime membrane. Anyone can see what's inside and take it out of you without asking, + so be careful. Slimepeople have slight accelerated regeneration compared to other humanoids. They're also capable of hardening their fists, and as such have stronger punches, although they punch a little slower. diff --git a/Resources/ServerInfo/Guidebook/Mobs/Species.xml b/Resources/ServerInfo/Guidebook/Mobs/Species.xml index 5fb4ca741e09..f1b36f9d732d 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Species.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Species.xml @@ -13,6 +13,7 @@ + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Vox.xml b/Resources/ServerInfo/Guidebook/Mobs/Vox.xml new file mode 100644 index 000000000000..173ba89b411e --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Vox.xml @@ -0,0 +1,16 @@ + + # Vox + + + + + + [color=#ffa500]Caution! This species has a severely limiting game mechanic and is not recommended for new players. [/color] + + They breathe nitrogen, and [color=#ffa500] oxygen is very toxic to them.[/color] + They need to be on internals at all times to avoid being poisoned by the station's oxygen. + Eating or drinking will require you to remove your breath mask, although injecting liquid food is an option. + + Their unarmed claw attacks deal Slash damage instead of Blunt. + + diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml index f51558f1a2d8..bb63d45487c0 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml @@ -5,7 +5,7 @@ - \[Security\] Security clothing - \[Security\] Less than lethal and non-lethal weapons, excluding disablers and beanbag shotguns - \[Security/Command\] Disablers - - \[Security/Bartender\] Beanbag shotguns + - \[Security/Bartender/Zookeeper\] Nonlethal shotguns - \[Security\] Flash technology, excluding handheld flashes - \[Security/Science/Command\] Handheld flashes - \[Security\] Helmets and shields diff --git a/Resources/ServerInfo/Guidebook/Service/Chef.xml b/Resources/ServerInfo/Guidebook/Service/Chef.xml index e0692b889b42..79eb81468cde 100644 --- a/Resources/ServerInfo/Guidebook/Service/Chef.xml +++ b/Resources/ServerInfo/Guidebook/Service/Chef.xml @@ -54,7 +54,6 @@ Ask Botany for what you need, without a botanist, you may need to grow more plan - ## Gathering Milk: Alt-Click on a Cow with a container in your hand. (Beakers, Buckets, Milk Jugs, ect.) diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png deleted file mode 100644 index b7f2122c19f5..000000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json index ccb1c5dcaf3a..88e3ebd509d6 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json @@ -1 +1,26 @@ -{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": {"x": 32, "y": 32}, "states": [{"name": "icon"}, {"name": "equipped-HAND", "directions": 4}, {"name": "inhand-left", "directions": 4}, {"name": "inhand-right", "directions": 4}, {"name": "equipped-HAND-vox", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png index 7adc2b138591..fc2328e7d149 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/light-icon.png index 3a850ef0d899..a0bef065159d 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png index fee14e7a8cd5..f3d81549e3d9 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png index 3a850ef0d899..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png index 3d3aa75958dc..2728bf501bdd 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png index 3a850ef0d899..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png index ba88c23f723c..b4bbfa0e09e9 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png index 316cf7a9bccd..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png index 011962037d6b..5a8fb92ef916 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png index 3a850ef0d899..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png index 2a5093d619ea..06af0dcd0aec 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png index 316cf7a9bccd..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png index 1a3f49cc1b30..0978e7886c60 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png index 3a850ef0d899..f385d0187d34 100644 Binary files a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png and b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png new file mode 100644 index 000000000000..c7ab17e261db Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png new file mode 100644 index 000000000000..d13b5d9acb27 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png new file mode 100644 index 000000000000..7baca16fb42a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png new file mode 100644 index 000000000000..e8db961b7709 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png new file mode 100644 index 000000000000..1580937e762c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json new file mode 100644 index 000000000000..2faf18830d9b --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png new file mode 100644 index 000000000000..6833f2502754 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png new file mode 100644 index 000000000000..58ba92e53fc2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 000000000000..1ab6e6cfefe5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..e6a0733e3e7a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png new file mode 100644 index 000000000000..54665d7a0e57 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png new file mode 100644 index 000000000000..64d25308ab68 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png new file mode 100644 index 000000000000..fd3c44d4ad09 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png new file mode 100644 index 000000000000..c98170b7e1de Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json new file mode 100644 index 000000000000..ff590848daa7 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png index fa32996aa89b..a6546c465579 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png index ce7c029026c8..2ecf1e68e01f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png index 6d96d0a03793..7d73e554619e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png index f83538ee6011..bcf14c7791d1 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png index 58b84263ac0a..eaef9455081c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png index 547839061b69..b9da47830b39 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png index fa9a53d3735e..03a4e52f7b9f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png index 9cba3e8ef3ff..1824ac30a7f6 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/equipped-OUTERCLOTHING-vox.png index 89369f8794c1..f99be74a5a95 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-equipped-OUTERCLOTHING-vox.png index 973451e5f5bb..d4813efe64e4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_sci.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png index e432bb2d017b..38b48d0a2d48 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png index 2363b4118d00..ca6d049a1fdc 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-vox.png new file mode 100644 index 000000000000..77af7765e57a Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json index 8eb6b8a626a6..b0c4419ddaea 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. Vox state modified from jackboots.rsi by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-vox.png new file mode 100644 index 000000000000..dc22be4ac27c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json index 2880b8eec402..6b1053d8ea22 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Ubaser.", + "copyright": "Drawn by Ubaser. Vox states made by Flareguy, modified from magboots.rsi", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-vox.png new file mode 100644 index 000000000000..04605be1065f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-vox.png new file mode 100644 index 000000000000..ff5c3a05894c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json index 3aa61e31c5aa..7c3599192c9f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404", + "copyright": "Created by EmoGarbage404. Vox states made by Flareguy, modified from magboots.rsi", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-vox.png new file mode 100644 index 000000000000..66ae1ee7e843 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png index 50627ac5220b..9072c9f4fc31 100644 Binary files a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/back.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/back.png new file mode 100644 index 000000000000..c300bba8a5ba Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/back.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/eyes.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/eyes.png new file mode 100644 index 000000000000..f705c337de1c Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/hand.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/hand.png new file mode 100644 index 000000000000..4a0266dfd373 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json index 6ea6c552b970..81bdd40e0cb0 100644 --- a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PJB3005", + "copyright": "jumpsuit state made by PJB3005. back, hand, and eyes states made by Flareguy", "size": { "x": 32, "y": 32 @@ -13,6 +13,18 @@ { "name": "jumpsuit", "directions": 4 + }, + { + "name": "back", + "directions": 4 + }, + { + "name": "hand", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png index 841d40973517..3910fb39a676 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png new file mode 100644 index 000000000000..59522f6c12e8 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/goldwatch.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/goldwatch.png new file mode 100644 index 000000000000..60e16eb84593 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/goldwatch.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_0.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_0.png new file mode 100644 index 000000000000..f1064c1a2741 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_0.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_1.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_1.png new file mode 100644 index 000000000000..c553b1c913bb Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_1.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_10.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_10.png new file mode 100644 index 000000000000..0bbe9d8ba247 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_10.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png new file mode 100644 index 000000000000..e364438e4ecd Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png new file mode 100644 index 000000000000..87c642239fe1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png new file mode 100644 index 000000000000..107b210ff4f3 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png new file mode 100644 index 000000000000..c03f799fcce9 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png new file mode 100644 index 000000000000..2835fadd249d Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png new file mode 100644 index 000000000000..55df41a9ce9f Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png new file mode 100644 index 000000000000..890650474dfc Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_8.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_8.png new file mode 100644 index 000000000000..a9a27f92dfdc Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_8.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_9.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_9.png new file mode 100644 index 000000000000..262901db8f46 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_9.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png new file mode 100644 index 000000000000..ec40991d4ecf Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png new file mode 100644 index 000000000000..aac69417e32f Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/meta.json b/Resources/Textures/Objects/Devices/goldwatch.rsi/meta.json new file mode 100644 index 000000000000..6466438b53b3 --- /dev/null +++ b/Resources/Textures/Objects/Devices/goldwatch.rsi/meta.json @@ -0,0 +1,98 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/obj/watches/goldwatch.dmi, https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/mob/in-hand/right/clothing_accessories.dmi, https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/mob/in-hand/left/clothing_accessories.dmi, https://github.com/vgstation-coders/vgstation13/blob/30f9caeb59b0dd9da1dbcd4c69307ae182033a74/icons/mob/clothing_accessories.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goldwatch" + }, + { + "name": "hours_1" + }, + { + "name": "hours_2" + }, + { + "name": "hours_3" + }, + { + "name": "hours_4" + }, + { + "name": "hours_5" + }, + { + "name": "hours_6" + }, + { + "name": "hours_7" + }, + { + "name": "hours_8" + }, + { + "name": "hours_9" + }, + { + "name": "hours_10" + }, + { + "name": "hours_11" + }, + { + "name": "hours_0" + }, + { + "name": "minutes_1" + }, + { + "name": "minutes_2" + }, + { + "name": "minutes_3" + }, + { + "name": "minutes_4" + }, + { + "name": "minutes_5" + }, + { + "name": "minutes_6" + }, + { + "name": "minutes_7" + }, + { + "name": "minutes_8" + }, + { + "name": "minutes_9" + }, + { + "name": "minutes_10" + }, + { + "name": "minutes_11" + }, + { + "name": "minutes_0" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_0.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_0.png new file mode 100644 index 000000000000..be687566cba3 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_0.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png new file mode 100644 index 000000000000..0ef2c831f4d7 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png new file mode 100644 index 000000000000..3019a20a9ba4 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png new file mode 100644 index 000000000000..fcbf039b6ffd Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png new file mode 100644 index 000000000000..1304f56e7573 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png new file mode 100644 index 000000000000..8f58881dbda9 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_4.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_4.png new file mode 100644 index 000000000000..a0c007b6eaca Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_4.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png new file mode 100644 index 000000000000..1d71f45c4791 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png new file mode 100644 index 000000000000..5e1070e3a804 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png new file mode 100644 index 000000000000..4af1070d216a Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png new file mode 100644 index 000000000000..39b252688a78 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png differ diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png new file mode 100644 index 000000000000..b9614ed80f52 Binary files /dev/null and b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png new file mode 100644 index 000000000000..b12afe6d4eec Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png new file mode 100644 index 000000000000..3af9ca46343c Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_1.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_1.png new file mode 100644 index 000000000000..4791cee3e4a8 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_1.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png new file mode 100644 index 000000000000..aeac86265673 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_11.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_11.png new file mode 100644 index 000000000000..5f2daf512a4f Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_11.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png new file mode 100644 index 000000000000..386166cabdd3 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png new file mode 100644 index 000000000000..2f5300928f2e Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png new file mode 100644 index 000000000000..c994c0568591 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_5.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_5.png new file mode 100644 index 000000000000..c344b0307b4c Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_5.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_6.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_6.png new file mode 100644 index 000000000000..892194a6f0a6 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_6.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png new file mode 100644 index 000000000000..fa7af8e5cca4 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png new file mode 100644 index 000000000000..83caf8c8e170 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png new file mode 100644 index 000000000000..6334bb72fdc1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png new file mode 100644 index 000000000000..76ca3c491159 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png new file mode 100644 index 000000000000..f9ab9c67d492 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/meta.json b/Resources/Textures/Objects/Devices/wristwatch.rsi/meta.json new file mode 100644 index 000000000000..fbf18c1a8daf --- /dev/null +++ b/Resources/Textures/Objects/Devices/wristwatch.rsi/meta.json @@ -0,0 +1,98 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/obj/watches/wristwatch.dmi, https://github.com/vgstation-coders/vgstation13/blob/30f9caeb59b0dd9da1dbcd4c69307ae182033a74/icons/obj/clothing/accessory_overlays.dmi, https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/mob/in-hand/right/clothing_accessories.dmi, https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/mob/in-hand/right/clothing_accessories.dmi, https://github.com/vgstation-coders/vgstation13/blob/223bf37a7386249ecf1fe425ca8cef25821ca9d7/icons/mob/in-hand/left/clothing_accessories.dmi, https://github.com/vgstation-coders/vgstation13/blob/30f9caeb59b0dd9da1dbcd4c69307ae182033a74/icons/mob/clothing_accessories.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "wristwatch" + }, + { + "name": "hours_1" + }, + { + "name": "hours_2" + }, + { + "name": "hours_3" + }, + { + "name": "hours_4" + }, + { + "name": "hours_5" + }, + { + "name": "hours_6" + }, + { + "name": "hours_7" + }, + { + "name": "hours_8" + }, + { + "name": "hours_9" + }, + { + "name": "hours_10" + }, + { + "name": "hours_11" + }, + { + "name": "hours_0" + }, + { + "name": "minutes_1" + }, + { + "name": "minutes_2" + }, + { + "name": "minutes_3" + }, + { + "name": "minutes_4" + }, + { + "name": "minutes_5" + }, + { + "name": "minutes_6" + }, + { + "name": "minutes_7" + }, + { + "name": "minutes_8" + }, + { + "name": "minutes_9" + }, + { + "name": "minutes_10" + }, + { + "name": "minutes_11" + }, + { + "name": "minutes_0" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-HAND", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_0.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_0.png new file mode 100644 index 000000000000..5285c6b70913 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_0.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_1.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_1.png new file mode 100644 index 000000000000..336bb51039d1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_1.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png new file mode 100644 index 000000000000..9dad0d83cbe8 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_11.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_11.png new file mode 100644 index 000000000000..0c789112c328 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_11.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png new file mode 100644 index 000000000000..a4c3bbe7179b Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png new file mode 100644 index 000000000000..6bfdc405c790 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png new file mode 100644 index 000000000000..89c08f3396f0 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png new file mode 100644 index 000000000000..4cbaa00d14b3 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png new file mode 100644 index 000000000000..e834c52d8cd5 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_7.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_7.png new file mode 100644 index 000000000000..8c8927f03ab2 Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_7.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_8.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_8.png new file mode 100644 index 000000000000..e0bba2ecf9ad Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_8.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_9.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_9.png new file mode 100644 index 000000000000..db0f5a1c71ec Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_9.png differ diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/wristwatch.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/wristwatch.png new file mode 100644 index 000000000000..aea09a7f89cc Binary files /dev/null and b/Resources/Textures/Objects/Devices/wristwatch.rsi/wristwatch.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 000000000000..72146d40e5a2 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/meta.json index 831493169f73..3fd240a93b9e 100644 --- a/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/bassguitar.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-BACKPACK", "directions": 4 }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 000000000000..ba9d4876a2bf Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/meta.json index 0891477f1b59..8723daef066c 100644 --- a/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/eguitar.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-BACKPACK", "directions": 4 }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 000000000000..71667f4e21ce Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json index 681328237274..bcd517578fc7 100644 --- a/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/guitar.rsi/meta.json @@ -29,6 +29,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 000000000000..36cb11d801bf Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/meta.json index 7fb73d450dc3..96bd8a37e53d 100644 --- a/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Instruments/rockguitar.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-BACKPACK", "directions": 4 }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index fc92a479367f..fa118695c207 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -53,6 +53,14 @@ { "name": "rainbowcarpplush" }, + { + "name": "rainbowcarpplush-inhand-left", + "directions": 4 + }, + { + "name": "rainbowcarpplush-inhand-right", + "directions": 4 + }, { "name": "narplush" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-left.png b/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-left.png new file mode 100644 index 000000000000..8f28f41fd851 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-right.png b/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-right.png new file mode 100644 index 000000000000..f12cf346ba2d Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png index c9b55e9daa52..9eae45d039ab 100644 Binary files a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png and b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png index 295c2c4eca1d..3353eb6f7cae 100644 Binary files a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png and b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond.png index 5eb8aabf8796..8b39437d0ac3 100644 Binary files a/Resources/Textures/Objects/Materials/materials.rsi/diamond.png and b/Resources/Textures/Objects/Materials/materials.rsi/diamond.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png new file mode 100644 index 000000000000..410d83f1c29f Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond_3.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond_3.png new file mode 100644 index 000000000000..152da2befe87 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/diamond_3.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/meta.json b/Resources/Textures/Objects/Materials/materials.rsi/meta.json index 78f497c0cda6..3ae12dc14c02 100644 --- a/Resources/Textures/Objects/Materials/materials.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/materials.rsi/meta.json @@ -78,6 +78,12 @@ { "name": "diamond" }, + { + "name": "diamond_2" + }, + { + "name": "diamond_3" + }, { "name": "diamond-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/diamond.png b/Resources/Textures/Objects/Materials/ore.rsi/diamond.png new file mode 100644 index 000000000000..b2a3c788d34c Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/diamond.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/meta.json b/Resources/Textures/Objects/Materials/ore.rsi/meta.json index 98a10750bf72..8f1b4533f2a5 100644 --- a/Resources/Textures/Objects/Materials/ore.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/ore.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh", + "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh, diamond at commit https://github.com/tgstation/tgstation/pull/78524, edited by TheShuEd", "size": { "x": 32, "y": 32 @@ -33,6 +33,9 @@ }, { "name": "salt" + }, + { + "name": "diamond" } ] } diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png new file mode 100644 index 000000000000..decabebccb6e Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png new file mode 100644 index 000000000000..e512dcf2975e Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png new file mode 100644 index 000000000000..680158cc9182 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png new file mode 100644 index 000000000000..a1fc9ee7b69d Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png new file mode 100644 index 000000000000..0f6b7bf2c9ea Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png new file mode 100644 index 000000000000..616a46f4e536 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png new file mode 100644 index 000000000000..e3fe0fc3cb05 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json new file mode 100644 index 000000000000..321991846018 --- /dev/null +++ b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json @@ -0,0 +1,117 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by IProduceWidgets, flame sprite by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lamp", + "directions": 4 + }, + { + "name": "lamptop", + "directions": 4 + }, + { + "name": "flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/meta.json index 7609e516b3a9..b0f1b27c24c9 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Pato Grone for SS14", + "copyright": "Made by Pato Grone for SS14, Wielded states by Jonathan Argo", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "base" } diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-left.png new file mode 100644 index 000000000000..bf76836959c0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-right.png new file mode 100644 index 000000000000..a8a6bbe8b4d7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/musket.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png new file mode 100644 index 000000000000..109a3230b984 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png new file mode 100644 index 000000000000..8b8c9f45a743 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png new file mode 100644 index 000000000000..4111eebaab4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png new file mode 100644 index 000000000000..03d50f98ef41 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png new file mode 100644 index 000000000000..639da1c18431 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png new file mode 100644 index 000000000000..ae7c25221e3d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png new file mode 100644 index 000000000000..00d8e890aaac Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json new file mode 100644 index 000000000000..3b12fda33eef --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json @@ -0,0 +1,78 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "e_sword_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png new file mode 100644 index 000000000000..577175edcd28 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json new file mode 100644 index 000000000000..217a9f3d782a --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Made by SlamBamActionman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 4, + "delays":[ + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png index 45134518715d..a83b3f9e095d 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png index 21f121314de1..8902a5389537 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png index 4002ea9fb60d..f579920985fd 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png index 63d8adc2c79d..129f9388f7db 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png new file mode 100644 index 000000000000..2d67101d2fc3 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png new file mode 100644 index 000000000000..199a65fb9599 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png new file mode 100644 index 000000000000..47ee108f18c6 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png new file mode 100644 index 000000000000..77a54a15cef7 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png new file mode 100644 index 000000000000..ddd26ba62701 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png new file mode 100644 index 000000000000..942f3df3ad2d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png new file mode 100644 index 000000000000..1b7430d80959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png new file mode 100644 index 000000000000..e415ee1a7e88 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png new file mode 100644 index 000000000000..c79f80c0c231 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png new file mode 100644 index 000000000000..3156cb9fa1ed Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json new file mode 100644 index 000000000000..a3fb20976ef2 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "chem-0" + }, + { + "name": "chem-1" + }, + { + "name": "chem-2" + }, + { + "name": "chem-3" + }, + { + "name": "chem-4" + }, + { + "name": "chem-5" + }, + { + "name": "chem-6" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png new file mode 100644 index 000000000000..ce50773db874 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png new file mode 100644 index 000000000000..39d2fb77884f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png new file mode 100644 index 000000000000..c090326148dd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png new file mode 100644 index 000000000000..7d698e0020f0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png new file mode 100644 index 000000000000..5acb43b17992 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png new file mode 100644 index 000000000000..328ca05ab739 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png new file mode 100644 index 000000000000..77469720a635 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png new file mode 100644 index 000000000000..5eab596dd464 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png new file mode 100644 index 000000000000..116080939b62 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png new file mode 100644 index 000000000000..15c03124e69b Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png new file mode 100644 index 000000000000..ece06f2d7866 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png new file mode 100644 index 000000000000..8ec7b1f61231 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png new file mode 100644 index 000000000000..e9468e2cdfe0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png new file mode 100644 index 000000000000..d01b2a6bc877 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png new file mode 100644 index 000000000000..b5b86d3e4cd0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png new file mode 100644 index 000000000000..ff9dd093b6b8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json new file mode 100644 index 000000000000..79e0904dd926 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "bar-0" + }, + { + "name": "bar-1" + }, + { + "name": "bar-2" + }, + { + "name": "bar-3" + }, + { + "name": "bar-4" + }, + { + "name": "bar-5" + }, + { + "name": "bar-6" + }, + { + "name": "bar-7" + }, + { + "name": "bar-8" + }, + { + "name": "bar-9" + }, + { + "name": "bar-10" + }, + { + "name": "bar-11" + }, + { + "name": "bar-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png new file mode 100644 index 000000000000..b302518d3dea Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png new file mode 100644 index 000000000000..199a65fb9599 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png new file mode 100644 index 000000000000..ded931cadfcd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png new file mode 100644 index 000000000000..8d71c464f6e1 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png new file mode 100644 index 000000000000..5885ae1c6e3c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png new file mode 100644 index 000000000000..5afb489f6433 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png new file mode 100644 index 000000000000..03799bb6889c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png new file mode 100644 index 000000000000..5daaf7dda897 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png new file mode 100644 index 000000000000..fc7be0c7da2a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png new file mode 100644 index 000000000000..150e8f3ec78c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png new file mode 100644 index 000000000000..653ca142c23f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png new file mode 100644 index 000000000000..8fb7d79932d6 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png new file mode 100644 index 000000000000..ca197f5ba5f6 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png new file mode 100644 index 000000000000..9f61aeeb4801 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json new file mode 100644 index 000000000000..2daba51b6c98 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "kitchen-0" + }, + { + "name": "kitchen-1" + }, + { + "name": "kitchen-2" + }, + { + "name": "kitchen-3" + }, + { + "name": "kitchen-4" + }, + { + "name": "kitchen-5" + }, + { + "name": "kitchen-6" + }, + { + "name": "kitchen-7" + }, + { + "name": "kitchen-8" + }, + { + "name": "kitchen-9" + }, + { + "name": "kitchen-10" + }, + { + "name": "kitchen-11" + }, + { + "name": "kitchen-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png new file mode 100644 index 000000000000..ccaf278a5436 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png new file mode 100644 index 000000000000..c79f80c0c231 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png new file mode 100644 index 000000000000..3156cb9fa1ed Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json new file mode 100644 index 000000000000..544b43a1e80e --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png new file mode 100644 index 000000000000..ce50773db874 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png new file mode 100644 index 000000000000..584a185caabd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png new file mode 100644 index 000000000000..39d2fb77884f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png new file mode 100644 index 000000000000..430b603aa3af Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png new file mode 100644 index 000000000000..c79f80c0c231 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png new file mode 100644 index 000000000000..3156cb9fa1ed Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json new file mode 100644 index 000000000000..544b43a1e80e --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png new file mode 100644 index 000000000000..ce50773db874 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png new file mode 100644 index 000000000000..430b603aa3af Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png new file mode 100644 index 000000000000..39d2fb77884f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png new file mode 100644 index 000000000000..a1054e575dd9 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png new file mode 100644 index 000000000000..df740ed7b0f0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png new file mode 100644 index 000000000000..421688fcda8a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json new file mode 100644 index 000000000000..544b43a1e80e --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png new file mode 100644 index 000000000000..c0e25c446bdc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png new file mode 100644 index 000000000000..a1054e575dd9 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png new file mode 100644 index 000000000000..3a00217edae1 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png index 6cee540a6b2b..e532ec039e84 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png new file mode 100644 index 000000000000..91256aa1df71 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png index e5b69da718ec..6b7361f21c23 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png deleted file mode 100644 index 73d94ac95e45..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png index 9f36d43776ff..7cb18443529f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png index 671e57aa5cf2..3f237ec04663 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png index 0dfa8a04f5cd..9d57ebe7e9a4 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/atmominsky.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/atmominsky.png deleted file mode 100644 index 3bd5488a62c6..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/atmominsky.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png index 9441b3282789..ae31db348b28 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png index e5fb2ab766ec..8fdc8016af35 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png index d196072a32b0..b01a82717f78 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png index ae86efe4965f..9c2f15e04835 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png index e34d8cf8f252..838ffa7b24b6 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png new file mode 100644 index 000000000000..53cdbbb5c90e Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png index bf0176ea97ec..0366a82ffa65 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png index df7ee4cf112d..4b07e410e29e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png index 635f00ec536f..a862131d76c7 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png index 71739f2d4a8b..f8b42e9e6a32 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry1.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry1.png deleted file mode 100644 index d1c1ac91845d..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry2.png deleted file mode 100644 index f9864f7d44c4..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chemistry2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png index ecbc9370c183..da9434fcfbbf 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png index d66b76011f21..f98c0a440b20 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png index c3d20f31b876..0823ef39432a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png deleted file mode 100644 index fbb8c50593e4..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png new file mode 100644 index 000000000000..3a0fc6d71683 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png new file mode 100644 index 000000000000..03a801e48380 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png index 28975a1b12b7..1fa88f63afa4 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png index 1716f825bbdf..8d59357a358a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png index 46f7585812b8..107ea06c99cf 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png new file mode 100644 index 000000000000..af0d276d5c0d Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png new file mode 100644 index 000000000000..538374ce404d Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png new file mode 100644 index 000000000000..cba0ec5955a6 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png deleted file mode 100644 index 3d7e65f7a57f..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png index 2d12b080fc7c..5a70940bd908 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png index 2c4f14d70771..629680bfea85 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png index 2db7d4264564..3e5d2db3c327 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png index afe1ce598652..05f0b7c0f5e6 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png index 21eb2e861365..811d40aa8984 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png new file mode 100644 index 000000000000..f23fa7960de1 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro1.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro1.png deleted file mode 100644 index b20654fcd64d..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro2.png deleted file mode 100644 index 40d3e546ec4d..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro3.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro3.png deleted file mode 100644 index ccb0e83784e7..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro3.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png index 653caf39075a..e5c0b186b4ca 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png index 789a53802c71..350f40dabd4c 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png new file mode 100644 index 000000000000..322d62d8d2e6 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png index 251e0ebd7b77..400e73df422d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png index de6e16d4a60c..0a239af288a5 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png index f397ffe996eb..ffb43a9ae5fe 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png new file mode 100644 index 000000000000..af933d5b9e3c Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png index c9c6e1362a7f..e57571f6821a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index 97be2aaa0d07..a13df6f7d666 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,1490 +5,490 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, except numerical signs which were created by discord: brainfood#7460, states: 'survival' and 'ntmining' from https://github.com/tgstation/tgstation/commit/f743754ec3ef446c8172388431effa73aeddb7ff#diff-b429dd7fccbca60d740d4887c1077a178abf1efffe57e7ae2a0b607c8a9e2202, 'janitor' edited by forgotmyotheraccount on github, 'arcade', 'barbershop', 'direction_exam', 'direction_icu', 'laundromat', 'news', 'reception', and 'salvage' made by rosieposieeee (github)", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github)", "states": [ { - "name": "ai", - "delays": [ - [ - 1 - ] - ] + "name": "ai" }, { - "name": "anomaly", - "delays": [ - [ - 1 - ] - ] + "name": "ai_upload" }, { - "name": "anomaly2" + "name": "vault" }, { - "name": "arcade", - "delays": [ - [ - 1 - ] - ] + "name": "xenoarch" }, { - "name": "armory", - "delays": [ - [ - 1 - ] - ] + "name": "anomaly" }, { - "name": "barbershop", - "delays": [ - [ - 1 - ] - ] + "name": "arcade" }, { - "name": "ass", - "delays": [ - [ - 1 - ] - ] + "name": "armory" }, { - "name": "atmos", - "delays": [ - [ - 1 - ] - ] + "name": "barbershop" }, { - "name": "atmos_air", - "delays": [ - [ - 1 - ] - ] + "name": "ass" }, { - "name": "atmos_co2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos" }, { - "name": "atmos_n2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_air" }, { - "name": "atmos_n2o", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_co2" }, { - "name": "atmos_o2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_n2" }, { - "name": "atmos_plasma", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_n2o" }, { - "name": "atmos_tritium", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_o2" }, { - "name": "atmos_waste", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_plasma" }, { - "name": "atmosplaque", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_tritium" }, { - "name": "zumosplaque", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_waste" }, { - "name": "bar", - "delays": [ - [ - 1 - ] - ] + "name": "atmosplaque" }, { - "name": "biblio", - "delays": [ - [ - 1 - ] - ] + "name": "zumosplaque" }, { - "name": "bio", - "delays": [ - [ - 1 - ] - ] + "name": "bar" }, { - "name": "biohazard", - "delays": [ - [ - 1 - ] - ] + "name": "biblio" }, { - "name": "bridge", - "delays": [ - [ - 1 - ] - ] + "name": "bio" }, { - "name": "canisters", - "delays": [ - [ - 1 - ] - ] + "name": "biohazard" }, { - "name": "cargo", - "delays": [ - [ - 1 - ] - ] + "name": "bridge" }, { - "name": "cargo_dock", - "delays": [ - [ - 1 - ] - ] + "name": "canisters" }, { - "name": "chapel", - "delays": [ - [ - 1 - ] - ] + "name": "cargo" }, { - "name": "chem", - "delays": [ - [ - 1 - ] - ] + "name": "cargo_dock" }, { - "name": "chemistry1", - "delays": [ - [ - 1 - ] - ] + "name": "chapel" }, { - "name": "chemistry2", - "delays": [ - [ - 1 - ] - ] + "name": "chem" }, { - "name": "commander", - "delays": [ - [ - 1 - ] - ] + "name": "commander" }, { - "name": "conference_room", - "delays": [ - [ - 1 - ] - ] + "name": "conference_room" }, { - "name": "corrosives", - "delays": [ - [ - 1 - ] - ] + "name": "corrosives" }, { - "name": "court", - "delays": [ - [ - 1 - ] - ] + "name": "cryogenics" }, { - "name": "cryogenics", - "delays": [ - [ - 1 - ] - ] + "name": "danger" }, { - "name": "danger", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "deathsposal", - "delays": [ - [ - 1 - ] - ] + "name": "deathsposal" }, { "name": "direction_bar", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_exam", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_icu", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_janitor", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_food", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_hop", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_library", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_chemistry", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_eng", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_evac", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_supply", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_bridge", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_med", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_sci", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_sec", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_brig", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_chapel", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_hydro", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_dorms", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_cryo", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_gravity", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_salvage", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_solar", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_wash", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "dock", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "doors", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "drones", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "electrical", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "eng", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "engine", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "eva", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "examroom", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "explosives", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "fire", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "flammable", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "cloning", - "delays": [ - [ - 1 - ] - ] + "directions": 4 + }, + { + "name": "dock" + }, + { + "name": "doors" + }, + { + "name": "mats" + }, + { + "name": "electrical" + }, + { + "name": "eng" + }, + { + "name": "engine" + }, + { + "name": "eva" + }, + { + "name": "examroom" }, { - "name": "gravi", - "delays": [ - [ - 1 - ] - ] + "name": "explosives" }, { - "name": "hydro1", - "delays": [ - [ - 1 - ] - ] + "name": "fire" }, { - "name": "hydro2", - "delays": [ - [ - 1 - ] - ] + "name": "flammable" }, { - "name": "hydro3", - "delays": [ - [ - 1 - ] - ] + "name": "cloning" }, { - "name": "interrogation", - "delays": [ - [ - 1 - ] - ] + "name": "gravi" }, { - "name": "janitor", - "delays": [ - [ - 1 - ] - ] + "name": "hydro" }, { - "name": "laser", - "delays": [ - [ - 1 - ] - ] + "name": "interrogation" }, { - "name": "laundromat", - "delays": [ - [ - 1 - ] - ] + "name": "janitor" }, { - "name": "law", - "delays": [ - [ - 1 - ] - ] + "name": "laser" }, { - "name": "magnetics", - "delays": [ - [ - 1 - ] - ] + "name": "laundromat" }, { - "name": "mail", - "delays": [ - [ - 1 - ] - ] + "name": "law" }, { - "name": "medbay", - "delays": [ - [ - 1 - ] - ] + "name": "magnetics" }, { - "name": "memetic", - "delays": [ - [ - 1 - ] - ] + "name": "mail" }, { - "name": "miner_dock", - "delays": [ - [ - 1 - ] - ] + "name": "medbay" }, { - "name": "monkey_painting", - "delays": [ - [ - 1 - ] - ] + "name": "memetic" }, { - "name": "morgue", - "delays": [ - [ - 1 - ] - ] + "name": "monkey_painting" }, { - "name": "news", - "delays": [ - [ - 1 - ] - ] + "name": "morgue" }, { - "name": "nosmoking", - "delays": [ - [ - 1 - ] - ] + "name": "news" }, { - "name": "nosmoking2", - "delays": [ - [ - 1 - ] - ] + "name": "kitchen" }, { - "name": "surgery", - "delays": [ - [ - 1 - ] - ] + "name": "drama1" }, { - "name": "optical", - "delays": [ - [ - 1 - ] - ] + "name": "drama2" }, { - "name": "oxidants", - "delays": [ - [ - 1 - ] - ] + "name": "drama3" }, { - "name": "pods", - "delays": [ - [ - 1 - ] - ] + "name": "restroom" }, { - "name": "prison", - "delays": [ - [ - 1 - ] - ] + "name": "nosmoking" }, { - "name": "psychology", - "delays": [ - [ - 1 - ] - ] + "name": "nosmoking2" }, { - "name": "radiation", - "delays": [ - [ - 1 - ] - ] + "name": "surgery" }, { - "name": "reception", - "delays": [ - [ - 1 - ] - ] + "name": "optical" }, { - "name": "rnd", - "delays": [ - [ - 1 - ] - ] + "name": "oxidants" }, { - "name": "robo", - "delays": [ - [ - 1 - ] - ] + "name": "pods" }, { - "name": "salvage", - "delays": [ - [ - 1 - ] - ] + "name": "prison" }, { - "name": "sci", - "delays": [ - [ - 1 - ] - ] + "name": "psychology" }, { - "name": "science1", - "delays": [ - [ - 1 - ] - ] + "name": "radiation" }, { - "name": "science2", - "delays": [ - [ - 1 - ] - ] + "name": "reception" }, { - "name": "secure", - "delays": [ - [ - 1 - ] - ] + "name": "rnd" }, { - "name": "securearea", - "delays": [ - [ - 1 - ] - ] + "name": "robo" }, { - "name": "shield", - "delays": [ - [ - 1 - ] - ] + "name": "salvage" }, { - "name": "shock", - "delays": [ - [ - 1 - ] - ] + "name": "sci" }, { - "name": "something-old1", - "delays": [ - [ - 1 - ] - ] + "name": "secure" }, { - "name": "something-old2", - "delays": [ - [ - 1 - ] - ] + "name": "securearea" }, { - "name": "space", - "delays": [ - [ - 1 - ] - ] + "name": "cans" }, { - "name": "telecoms", - "delays": [ - [ - 1 - ] - ] + "name": "shock" }, { - "name": "toxins2", - "delays": [ - [ - 1 - ] - ] + "name": "something-old1" }, { - "name": "toxins", - "delays": [ - [ - 1 - ] - ] + "name": "something-old2" }, { - "name": "virology", - "delays": [ - [ - 1 - ] - ] + "name": "space" }, { - "name": "xenobio", - "delays": [ - [ - 1 - ] - ] + "name": "telecoms" }, { - "name": "xenobio2", - "delays": [ - [ - 1 - ] - ] + "name": "toxins" }, { - "name": "xenolab", - "delays": [ - [ - 1 - ] - ] + "name": "virology" }, { - "name": "zomlab", - "delays": [ - [ - 1 - ] - ] + "name": "xenobio" }, { - "name": "small_secure_red", - "delays": [ - [ - 1 - ] - ] + "name": "zomlab" }, { - "name": "small_secure", - "delays": [ - [ - 1 - ] - ] + "name": "small_secure_red" }, { - "name": "medium_secure_red", - "delays": [ - [ - 1 - ] - ] + "name": "small_secure" }, { - "name": "medium_blank", - "delays": [ - [ - 1 - ] - ] + "name": "medium_secure_red" }, { - "name": "medium_magnetics", - "delays": [ - [ - 1 - ] - ] + "name": "medium_blank" }, { - "name": "medium_danger", - "delays": [ - [ - 1 - ] - ] + "name": "medium_magnetics" }, { - "name": "medium_explosives", - "delays": [ - [ - 1 - ] - ] + "name": "medium_danger" }, { - "name": "medium_cryogenics", - "delays": [ - [ - 1 - ] - ] + "name": "medium_explosives" }, { - "name": "medium_electrical", - "delays": [ - [ - 1 - ] - ] + "name": "medium_cryogenics" }, { - "name": "medium_biohazard", - "delays": [ - [ - 1 - ] - ] + "name": "medium_electrical" }, { - "name": "medium_radiation", - "delays": [ - [ - 1 - ] - ] + "name": "medium_biohazard" }, { - "name": "medium_flammable", - "delays": [ - [ - 1 - ] - ] + "name": "medium_radiation" }, { - "name": "medium_laser", - "delays": [ - [ - 1 - ] - ] + "name": "medium_flammable" }, { - "name": "medium_secure", - "delays": [ - [ - 1 - ] - ] + "name": "medium_laser" }, { - "name": "goldenplaque", - "delays": [ - [ - 1 - ] - ] + "name": "medium_secure" }, { - "name": "kiddieplaque", - "delays": [ - [ - 1 - ] - ] + "name": "goldenplaque" }, { - "name": "security", - "delays": [ - [ - 1 - ] - ] + "name": "kiddieplaque" }, { - "name": "nanotrasen_sign1", - "delays": [ - [ - 1 - ] - ] + "name": "security" }, { - "name": "nanotrasen_sign2", - "delays": [ - [ - 1 - ] - ] + "name": "data" }, { - "name": "nanotrasen_sign3", - "delays": [ - [ - 1 - ] - ] + "name": "cryo" }, { - "name": "nanotrasen_sign4", - "delays": [ - [ - 1 - ] - ] + "name": "nanotrasen_sign1" }, { - "name": "nanotrasen_sign5", - "delays": [ - [ - 1 - ] - ] + "name": "nanotrasen_sign2" }, { - "name": "atmominsky", - "delays": [ - [ - 1 - ] - ] - }, + "name": "nanotrasen_sign3" + }, { - "name": "one", - "delays": [ - [ - 1 - ] - ] - }, + "name": "nanotrasen_sign4" + }, { - "name": "two", - "delays": [ - [ - 1 - ] - ] - }, + "name": "nanotrasen_sign5" + }, { - "name": "three", - "delays": [ - [ - 1 - ] - ] - }, + "name": "one" + }, { - "name": "four", - "delays": [ - [ - 1 - ] - ] - }, + "name": "two" + }, { - "name": "five", - "delays": [ - [ - 1 - ] - ] - }, + "name": "three" + }, { - "name": "six", - "delays": [ - [ - 1 - ] - ] - }, + "name": "four" + }, { - "name": "seven", - "delays": [ - [ - 1 - ] - ] - }, + "name": "five" + }, { - "name": "eight", - "delays": [ - [ - 1 - ] - ] - }, + "name": "six" + }, + { + "name": "seven" + }, + { + "name": "eight" + }, { - "name": "nine", - "delays": [ - [ - 1 - ] - ] - }, + "name": "nine" + }, { - "name": "zero", - "delays": [ - [ - 1 - ] - ] - }, + "name": "zero" + }, { - "name": "survival", - "delays": [ - [ - 1 - ] - ] - }, + "name": "survival" + }, { - "name": "ntmining", - "delays": [ - [ - 1 - ] - ] + "name": "ntmining" } ] } diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png deleted file mode 100644 index a9444f1ed6c0..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png index 1dc0e7d1a960..957299380712 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png index 575d943c7694..40b73c7c2d27 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png index a6fe5ca1f399..cea5bba81a91 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png index 9b0761c1bb42..1d89a1ec590e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png index b16670d5b5f6..3f3e6dfa4901 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png new file mode 100644 index 000000000000..f5903a7d1559 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png index 875b57204b37..3dc284f4794a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png index 5b3bb6e83dbb..82519ba966bf 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png index 8c51238f897b..20b0eb577de5 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png index eb3afab2f8f7..599207f48ae2 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/science1.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/science1.png deleted file mode 100644 index 7c67901ec43a..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/science1.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/science2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/science2.png deleted file mode 100644 index 7722ef830310..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/science2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png index 7e27efa2b322..2de5d34a5ee4 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png deleted file mode 100644 index bb88d2a770e7..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png index 214650d6db43..b9286eb06dbe 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png index 254ada76fd4d..f24ba5c1b331 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png index e1e721de4aa9..5896206cafef 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png index 6c28bfde0033..cf11ed6155f2 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png deleted file mode 100644 index c2c35212d0b5..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png new file mode 100644 index 000000000000..33572ca25b57 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png index b83297d037c3..232d9a74b553 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png new file mode 100644 index 000000000000..a4b26daa9931 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png index 0d9336c01a19..4f99ab19c3da 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio2.png deleted file mode 100644 index 3e8515dda03e..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio2.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png deleted file mode 100644 index 21eb486835b9..000000000000 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png index 09d54e603dc3..a81784d30b5f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/meta.json b/Resources/Textures/Structures/Walls/mining.rsi/meta.json index 4ce4691c5164..77f43229984b 100644 --- a/Resources/Textures/Structures/Walls/mining.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/mining.rsi/meta.json @@ -7,40 +7,72 @@ "y": 32 }, "states": [ - { + { "name": "full" }, - { + { "name": "mining0", - "directions": 4 + "directions": 4 }, - { + { "name": "mining1", - "directions": 4 + "directions": 4 }, - { + { "name": "mining2", - "directions": 4 + "directions": 4 }, - { + { "name": "mining3", - "directions": 4 + "directions": 4 }, - { + { "name": "mining4", - "directions": 4 + "directions": 4 }, - { + { "name": "mining5", - "directions": 4 + "directions": 4 }, - { + { "name": "mining6", - "directions": 4 + "directions": 4 }, - { + { "name": "mining7", - "directions": 4 + "directions": 4 + }, + { + "name": "miningB0", + "directions": 4 + }, + { + "name": "miningB1", + "directions": 4 + }, + { + "name": "miningB2", + "directions": 4 + }, + { + "name": "miningB3", + "directions": 4 + }, + { + "name": "miningB4", + "directions": 4 + }, + { + "name": "miningB5", + "directions": 4 + }, + { + "name": "miningB6", + "directions": 4 + }, + { + "name": "miningB7", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png new file mode 100644 index 000000000000..f65f066b65aa Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png new file mode 100644 index 000000000000..24c81aa87799 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png new file mode 100644 index 000000000000..f65f066b65aa Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png new file mode 100644 index 000000000000..24c81aa87799 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png new file mode 100644 index 000000000000..1412f0026964 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png new file mode 100644 index 000000000000..8bbef8ca9717 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png new file mode 100644 index 000000000000..1412f0026964 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png new file mode 100644 index 000000000000..add9cddf83f6 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png differ diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json index aa46326a4b58..a29513356c58 100644 --- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json @@ -104,7 +104,23 @@ "name": "rock_copper" }, { - "name": "rock_diamond" + "name": "rock_diamond", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] }, { "name": "rock_gold" diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_diamond.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_diamond.png index eb05ebd3d11d..cc54b642f454 100644 Binary files a/Resources/Textures/Structures/Walls/rock.rsi/rock_diamond.png and b/Resources/Textures/Structures/Walls/rock.rsi/rock_diamond.png differ diff --git a/Resources/Textures/Template/signs.png b/Resources/Textures/Template/signs.png new file mode 100644 index 000000000000..4dc483183b2d Binary files /dev/null and b/Resources/Textures/Template/signs.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index bd42de8f2c5a..23e7e8e23022 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -361,3 +361,19 @@ BookChefGaming: BookHowToCookForFortySpaceman #2024-06-29 IntercomAssesmbly: IntercomAssembly + +# 2024-07-7 +SignScience1: SignScience +SignScience2: SignScience +SignXenobio2: SignXenobio +SignXenolab: SignXenobio +SignToxins2: SignToxins +SignMinerDock: SignShipDock +SignChemistry1: SignChem +SignChemistry2: SignChem +SignCourt: SignLawyer +SignAtmosMinsky: SignAtmos +SignDrones: SignMaterials +SignShield: null # what was this even for? +SignHydro2: SignHydro1 +SignHydro3: SignHydro1 diff --git a/RobustToolbox b/RobustToolbox index a9aea7027f18..2e4275a7f3b2 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit a9aea7027f1840c83bcaf1c973caf099745f9eed +Subproject commit 2e4275a7f3b2800e7fbe1da1e1909e8e349033bf diff --git a/SpaceStation14.sln b/SpaceStation14.sln index e0cb455a6db2..bcd013b5981f 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -62,7 +62,6 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A-411B-4B3B-BEB6-DEC6DCA4C205}" ProjectSection(SolutionItems) = preProject Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 - Tools\gen_build_info.py = Tools\gen_build_info.py EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/Tools/actions_changelog_rss.py b/Tools/actions_changelog_rss.py index 5e42a030bde4..5c696f5b01ad 100755 --- a/Tools/actions_changelog_rss.py +++ b/Tools/actions_changelog_rss.py @@ -29,13 +29,13 @@ # Change these to suit your server settings # https://docs.fabfile.org/en/stable/getting-started.html#run-commands-via-connections-and-run -SSH_HOST = "centcomm.spacestation14.io" +SSH_HOST = "moon.spacestation14.com" SSH_USER = "changelog-rss" SSH_PORT = 22 RSS_FILE = "changelog.xml" XSL_FILE = "stylesheet.xsl" HOST_KEYS = [ - "AAAAC3NzaC1lZDI1NTE5AAAAIEE8EhnPjb3nIaAPTXAJHbjrwdGGxHoM0f1imCK0SygD" + "AAAAC3NzaC1lZDI1NTE5AAAAIOBpGO/Qc6X0YWuw7z+/WS/65+aewWI29oAyx+jJpCmh" ] # RSS feed parameters, change these diff --git a/Tools/gen_build_info.py b/Tools/gen_build_info.py deleted file mode 100755 index 0207f568dd72..000000000000 --- a/Tools/gen_build_info.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python3 - -# Generates build info and injects it into the server zip files. - -import codecs -import hashlib -import io -import json -import os -import subprocess -from zipfile import ZipFile, ZIP_DEFLATED - -FILE = "SS14.Client.zip" - -SERVER_FILES = [ - "SS14.Server_linux-x64.zip", - "SS14.Server_linux-arm64.zip", - "SS14.Server_win-x64.zip", - "SS14.Server_osx-x64.zip" -] - -VERSION = os.environ['GITHUB_SHA'] -FORK_ID = "wizards" -BUILD_URL = f"https://cdn.centcomm.spacestation14.com/builds/wizards/builds/{{FORK_VERSION}}/{FILE}" -MANIFEST_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/manifest" -MANIFEST_DOWNLOAD_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/download" - -def main() -> None: - client_file = os.path.join("release", FILE) - manifest = generate_build_json(client_file) - - for server in SERVER_FILES: - inject_manifest(os.path.join("release", server), manifest) - - -def inject_manifest(zip_path: str, manifest: str) -> None: - with ZipFile(zip_path, "a", compression=ZIP_DEFLATED) as z: - z.writestr("build.json", manifest) - - -def generate_build_json(file: str) -> str: - # Env variables set by Jenkins. - - hash = sha256_file(file) - engine_version = get_engine_version() - manifest_hash = generate_manifest_hash(file) - - return json.dumps({ - "download": BUILD_URL, - "hash": hash, - "version": VERSION, - "fork_id": FORK_ID, - "engine_version": engine_version, - "manifest_url": MANIFEST_URL, - "manifest_download_url": MANIFEST_DOWNLOAD_URL, - "manifest_hash": manifest_hash - }) - -def generate_manifest_hash(file: str) -> str: - zip = ZipFile(file) - infos = zip.infolist() - infos.sort(key=lambda i: i.filename) - - bytesIO = io.BytesIO() - writer = codecs.getwriter("UTF-8")(bytesIO) - writer.write("Robust Content Manifest 1\n") - - for info in infos: - if info.filename[-1] == "/": - continue - - bytes = zip.read(info) - hash = hashlib.blake2b(bytes, digest_size=32).hexdigest().upper() - writer.write(f"{hash} {info.filename}\n") - - manifestHash = hashlib.blake2b(bytesIO.getbuffer(), digest_size=32) - - return manifestHash.hexdigest().upper() - -def get_engine_version() -> str: - proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") - tag = proc.stdout.strip() - assert tag.startswith("v") - return tag[1:] # Cut off v prefix. - - -def sha256_file(path: str) -> str: - with open(path, "rb") as f: - h = hashlib.sha256() - for b in iter(lambda: f.read(4096), b""): - h.update(b) - - return h.hexdigest() - -if __name__ == '__main__': - main() diff --git a/Tools/publish_github_artifact.py b/Tools/publish_github_artifact.py new file mode 100755 index 000000000000..b488ccdf2ecd --- /dev/null +++ b/Tools/publish_github_artifact.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess + +GITHUB_TOKEN = os.environ["GITHUB_TOKEN"] +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +ARTIFACT_ID = os.environ["ARTIFACT_ID"] +GITHUB_REPOSITORY = os.environ["GITHUB_REPOSITORY"] +VERSION = os.environ['GITHUB_SHA'] + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" +FORK_ID = "wizards" + +def main(): + print("Fetching artifact URL from API...") + artifact_url = get_artifact_url() + print(f"Artifact URL is {artifact_url}, publishing to Robust.Cdn") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + "archive": artifact_url + } + headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + "Content-Type": "application/json" + } + resp = requests.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish", json=data, headers=headers) + resp.raise_for_status() + print("Publish succeeded!") + +def get_artifact_url() -> str: + headers = { + "Authorization": f"Bearer {GITHUB_TOKEN}", + "X-GitHub-Api-Version": "2022-11-28" + } + resp = requests.get(f"https://api.github.com/repos/{GITHUB_REPOSITORY}/actions/artifacts/{ARTIFACT_ID}/zip", allow_redirects=False, headers=headers) + resp.raise_for_status() + + return resp.headers["Location"] + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main()